commit
ac6012db66
8 changed files with 150 additions and 3 deletions
49
APEX/apex.json
Normal file
49
APEX/apex.json
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"legends": [
|
||||||
|
"Bangalore",
|
||||||
|
"Bloodhound",
|
||||||
|
"Caustic",
|
||||||
|
"Crypto",
|
||||||
|
"Fuse",
|
||||||
|
"Gibraltar",
|
||||||
|
"Horizon",
|
||||||
|
"LIfeline",
|
||||||
|
"Loba",
|
||||||
|
"Mirage",
|
||||||
|
"Octane",
|
||||||
|
"Pathfinder",
|
||||||
|
"Rampart",
|
||||||
|
"Revenant",
|
||||||
|
"Valkyrie",
|
||||||
|
"Watton",
|
||||||
|
"Wraith"
|
||||||
|
],
|
||||||
|
"guns": [
|
||||||
|
"Bocek Bow",
|
||||||
|
"EVA-8",
|
||||||
|
"Kraber",
|
||||||
|
"Peacekeeper",
|
||||||
|
"Prowler",
|
||||||
|
"R-301 Carbine",
|
||||||
|
"R-99",
|
||||||
|
"Spitfire",
|
||||||
|
"Charge Rifle",
|
||||||
|
"Flatline",
|
||||||
|
"G7 Scout",
|
||||||
|
"Havoc",
|
||||||
|
"Mastiff",
|
||||||
|
"Sentinel",
|
||||||
|
"Triple Take",
|
||||||
|
"Volt",
|
||||||
|
"Wingman",
|
||||||
|
"Alternator",
|
||||||
|
"Devotion",
|
||||||
|
"Hemlok",
|
||||||
|
"Longbow",
|
||||||
|
"L-Star",
|
||||||
|
"RE-45",
|
||||||
|
"30-30 Repeater",
|
||||||
|
"Mozambique",
|
||||||
|
"P2020"
|
||||||
|
]
|
||||||
|
}
|
|
@ -326,6 +326,10 @@ module.exports = {
|
||||||
name: "R9-0",
|
name: "R9-0",
|
||||||
value: "E07",
|
value: "E07",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "JAK-12",
|
||||||
|
value: "E08",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -483,6 +483,10 @@ module.exports = {
|
||||||
name: "R9-0",
|
name: "R9-0",
|
||||||
value: "E07",
|
value: "E07",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "JAK-12",
|
||||||
|
value: "E08",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Do we still need this ?
|
||||||
|
|
||||||
const mongoose = require("mongoose");
|
const mongoose = require("mongoose");
|
||||||
module.exports = mongoose.model(
|
module.exports = mongoose.model(
|
||||||
"weapons",
|
"weapons",
|
||||||
|
|
|
@ -27,7 +27,9 @@
|
||||||
"Shorty",
|
"Shorty",
|
||||||
"Crossbow",
|
"Crossbow",
|
||||||
"R9-0",
|
"R9-0",
|
||||||
"PPSh-41"
|
"PPSh-41",
|
||||||
|
"CBR4",
|
||||||
|
"SVD"
|
||||||
],
|
],
|
||||||
"weaponAlliasName": [
|
"weaponAlliasName": [
|
||||||
["MoW"],
|
["MoW"],
|
||||||
|
@ -57,7 +59,9 @@
|
||||||
["725"],
|
["725"],
|
||||||
["cb", "bow"],
|
["cb", "bow"],
|
||||||
["r9", "R9-O"],
|
["r9", "R9-O"],
|
||||||
["ppsh", "pp41"]
|
["ppsh", "pp41"],
|
||||||
|
["p90"],
|
||||||
|
["Dragonov"]
|
||||||
],
|
],
|
||||||
"attachmentActualName": [
|
"attachmentActualName": [
|
||||||
["akimbo", "Stopping Power"],
|
["akimbo", "Stopping Power"],
|
||||||
|
|
|
@ -607,7 +607,8 @@
|
||||||
"YKM Light Stock",
|
"YKM Light Stock",
|
||||||
"RTC Steady Stock",
|
"RTC Steady Stock",
|
||||||
"OWC Skeleton Stock",
|
"OWC Skeleton Stock",
|
||||||
"No Stock"
|
"No Stock",
|
||||||
|
"Thunderbolt Sling"
|
||||||
],
|
],
|
||||||
"perk": [
|
"perk": [
|
||||||
"Tough",
|
"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": [
|
"Kilo_Bolt_Action": [
|
||||||
{
|
{
|
||||||
"muzzle": [
|
"muzzle": [
|
||||||
|
|
|
@ -61,6 +61,7 @@
|
||||||
"E05": "KRM 262",
|
"E05": "KRM 262",
|
||||||
"E06": "Echo",
|
"E06": "Echo",
|
||||||
"E07": "R9-0",
|
"E07": "R9-0",
|
||||||
|
"E08": "JAK-12",
|
||||||
"F01": "Kilo Bolt-Action",
|
"F01": "Kilo Bolt-Action",
|
||||||
"F02": "SKS",
|
"F02": "SKS",
|
||||||
"F03": "SP-R 208",
|
"F03": "SP-R 208",
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{
|
{
|
||||||
"secondary": [
|
"secondary": [
|
||||||
|
// Doesn't have Pistols becuase it will require Gunsmith Build
|
||||||
|
"None",
|
||||||
"Knife / Base Melee",
|
"Knife / Base Melee",
|
||||||
"Axe",
|
"Axe",
|
||||||
"Shovel",
|
"Shovel",
|
||||||
|
@ -16,6 +18,7 @@
|
||||||
"Thumper"
|
"Thumper"
|
||||||
],
|
],
|
||||||
"perk_1": [
|
"perk_1": [
|
||||||
|
"None",
|
||||||
"Fast Recover",
|
"Fast Recover",
|
||||||
"Persistence",
|
"Persistence",
|
||||||
"Flak Jacket",
|
"Flak Jacket",
|
||||||
|
@ -29,6 +32,7 @@
|
||||||
"Iron Lungs"
|
"Iron Lungs"
|
||||||
],
|
],
|
||||||
"perk_2": [
|
"perk_2": [
|
||||||
|
"None",
|
||||||
"Vulture",
|
"Vulture",
|
||||||
"Toughness",
|
"Toughness",
|
||||||
"Tracker",
|
"Tracker",
|
||||||
|
@ -41,6 +45,7 @@
|
||||||
"Gung-Ho"
|
"Gung-Ho"
|
||||||
],
|
],
|
||||||
"perk_3": [
|
"perk_3": [
|
||||||
|
"None",
|
||||||
"Hard Line",
|
"Hard Line",
|
||||||
"Demo Expert",
|
"Demo Expert",
|
||||||
"Tactical Mask",
|
"Tactical Mask",
|
||||||
|
@ -52,6 +57,7 @@
|
||||||
"Launcher Plus"
|
"Launcher Plus"
|
||||||
],
|
],
|
||||||
"scorestreek": [
|
"scorestreek": [
|
||||||
|
"None",
|
||||||
"Shield Turret",
|
"Shield Turret",
|
||||||
"UAV",
|
"UAV",
|
||||||
"Shock RC",
|
"Shock RC",
|
||||||
|
@ -76,6 +82,7 @@
|
||||||
"VTOL"
|
"VTOL"
|
||||||
],
|
],
|
||||||
"operator_skill": [
|
"operator_skill": [
|
||||||
|
"None",
|
||||||
"Purifier",
|
"Purifier",
|
||||||
"War Machine",
|
"War Machine",
|
||||||
"Death Machine",
|
"Death Machine",
|
||||||
|
@ -94,5 +101,28 @@
|
||||||
"Kinetic Armor",
|
"Kinetic Armor",
|
||||||
"TAK-5",
|
"TAK-5",
|
||||||
"Munitions Box"
|
"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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue