nyx

The first CODM discrod bot -- cath.exe Template
git clone https://codeberg.org/night0721/nyx
Log | Files | Refs | LICENSE

commit a6a13af8af4f68ae39909325628888dc544c2b73
parent 324d307a801cb267d14f0fb85c3e2ae39eef2454
Author: ThunderE75 <[email protected]>
Date:   Wed,  2 Mar 2022 14:24:39 +0530

Added New Weapons & Attchments
Diffstat:
MCODM/new-stats.js | 4++++
Mcommand/CODM/build.js | 4++++
Mmodels/weapons.js | 2++
Mutil/Data/aliases.json | 8++++++--
Mutil/Data/attachments.json | 55++++++++++++++++++++++++++++++++++++++++++++++++++++++-
Mutil/Data/cwts.json | 1+
Mutil/Data/loadout.json | 30++++++++++++++++++++++++++++++
7 files changed, 101 insertions(+), 3 deletions(-)

diff --git a/CODM/new-stats.js b/CODM/new-stats.js @@ -326,6 +326,10 @@ module.exports = { name: "R9-0", value: "E07", }, + { + name: "JAK-12", + value: "E08", + }, ], }, ], diff --git a/command/CODM/build.js b/command/CODM/build.js @@ -483,6 +483,10 @@ module.exports = { name: "R9-0", value: "E07", }, + { + name: "JAK-12", + value: "E08", + }, ], }, { diff --git a/models/weapons.js b/models/weapons.js @@ -1,3 +1,5 @@ +// Do we still need this ? + const mongoose = require("mongoose"); module.exports = mongoose.model( "weapons", diff --git a/util/Data/aliases.json b/util/Data/aliases.json @@ -27,7 +27,9 @@ "Shorty", "Crossbow", "R9-0", - "PPSh-41" + "PPSh-41", + "CBR4", + "SVD" ], "weaponAlliasName": [ ["MoW"], @@ -57,7 +59,9 @@ ["725"], ["cb", "bow"], ["r9", "R9-O"], - ["ppsh", "pp41"] + ["ppsh", "pp41"], + ["p90"], + ["Dragonov"] ], "attachmentActualName": [ ["akimbo", "Stopping Power"], diff --git a/util/Data/attachments.json b/util/Data/attachments.json @@ -607,7 +607,8 @@ "YKM Light Stock", "RTC Steady Stock", "OWC Skeleton Stock", - "No Stock" + "No Stock", + "Thunderbolt Sling" ], "perk": [ "Tough", @@ -3010,6 +3011,58 @@ ] } ], + "JAK_12": [ + { + "muzzle": [ + "Tactical Suppressor", + "Monolithic Suppressor", + "OWC Light Compensator", + "Choke", + "RTC Light Muzzle Brake", + "Flash Guard", + "Marauder Suppressor" + ], + "barrel": ["MIP Extended Light Barrel", "MIP Light Barrel (Short)", "OWC Marksman"], + "optic": [ + "Red Dot Sight", + "Holographic Sight", + "Tactical Scope", + "3x Tactical Scope" + ], + "stock": [ + "YKM Light Stock", + "YKM Combat Stock", + "MIP Stalker Stock" + ], + "ammo": [ + "FRAG-12 Explosive Mag", + "Extended Mag C", + "Large Extended Mag D", + "Slug Reload" + ], + "perk": [ + "Sleight of Hand", + "Speed Up Kill", + "Slide Flak Jacket", + "Wounding", + "Full Ammo", + "Disable" + ], + "laser": ["RTC Laser 1mW", "OWC Laser - Tactical", "MIP Laser 5mW"], + "underbarrel": [ + "Ranger Foregrip", + "Operator Foregrip", + "Merc Foregrip", + "Strike Foregrip", + "Tactical Foregrip A" + ], + "rear_grip": [ + "Stippled Grip Tape", + "Granulated Grip Tape", + "Ruberized Grip Tape" + ] + } + ], "Kilo_Bolt_Action": [ { "muzzle": [ diff --git a/util/Data/cwts.json b/util/Data/cwts.json @@ -61,6 +61,7 @@ "E05": "KRM 262", "E06": "Echo", "E07": "R9-0", + "E08": "JAK-12", "F01": "Kilo Bolt-Action", "F02": "SKS", "F03": "SP-R 208", diff --git a/util/Data/loadout.json b/util/Data/loadout.json @@ -1,5 +1,7 @@ { "secondary": [ + // Doesn't have Pistols becuase it will require Gunsmith Build + "None", "Knife / Base Melee", "Axe", "Shovel", @@ -16,6 +18,7 @@ "Thumper" ], "perk_1": [ + "None", "Fast Recover", "Persistence", "Flak Jacket", @@ -29,6 +32,7 @@ "Iron Lungs" ], "perk_2": [ + "None", "Vulture", "Toughness", "Tracker", @@ -41,6 +45,7 @@ "Gung-Ho" ], "perk_3": [ + "None", "Hard Line", "Demo Expert", "Tactical Mask", @@ -52,6 +57,7 @@ "Launcher Plus" ], "scorestreek": [ + "None", "Shield Turret", "UAV", "Shock RC", @@ -76,6 +82,7 @@ "VTOL" ], "operator_skill": [ + "None", "Purifier", "War Machine", "Death Machine", @@ -94,5 +101,28 @@ "Kinetic Armor", "TAK-5", "Munitions Box" + ], + "lethal":[ + "None", + "Frag Grenade", + "Sticky Grenade", + "Tripmine", + "Combat Axe", + "Thermite", + "Molotov Cocktail" + ], + "tactical":[ + "None", + "Flashbang Grenade", + "Smoke Grenade", + "Concussion Grenade", + "EMP", + "Trophy System", + "Cryo Bomb", + "Heartbeat Sensor", + "Gas Grenade", + "Storm Ball", + "Flash Drone", + "Decoy Grenade" ] }