yolkbot 1.4.4 → 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/build/global.js +1 -1
- package/browser/build/module.js +1 -1
- package/dist/api.js +200 -1
- package/dist/bot/GamePlayer.js +74 -1
- package/dist/bot.js +1679 -1
- package/dist/comm/CommIn.js +79 -1
- package/dist/comm/CommOut.js +60 -1
- package/dist/comm/index.js +11 -1
- package/dist/constants/CloseCode.js +27 -1
- package/dist/constants/CommCode.js +53 -1
- package/dist/constants/challenges.js +1821 -1
- package/dist/constants/findItemById.js +2 -3
- package/dist/constants/guns.js +277 -1
- package/dist/constants/index.js +139 -1
- package/dist/constants/items.js +45042 -1
- package/dist/constants/maps.js +1263 -1
- package/dist/constants/regions.js +30 -1
- package/dist/dispatches/BanPlayerDispatch.js +32 -1
- package/dist/dispatches/BootPlayerDispatch.js +21 -1
- package/dist/dispatches/ChatDispatch.js +32 -1
- package/dist/dispatches/FireDispatch.js +15 -1
- package/dist/dispatches/GameOptionsDispatch.js +66 -1
- package/dist/dispatches/GoToAmmoDispatch.js +38 -1
- package/dist/dispatches/GoToCoopDispatch.js +38 -1
- package/dist/dispatches/GoToGrenadeDispatch.js +38 -1
- package/dist/dispatches/GoToPlayerDispatch.js +39 -1
- package/dist/dispatches/GoToSpatulaDispatch.js +26 -1
- package/dist/dispatches/LookAtDispatch.js +35 -1
- package/dist/dispatches/LookAtPosDispatch.js +29 -1
- package/dist/dispatches/MeleeDispatch.js +26 -1
- package/dist/dispatches/MovementDispatch.js +26 -1
- package/dist/dispatches/PauseDispatch.js +18 -1
- package/dist/dispatches/ReloadDispatch.js +28 -1
- package/dist/dispatches/ReportPlayerDispatch.js +42 -1
- package/dist/dispatches/ResetGameDispatch.js +19 -1
- package/dist/dispatches/SaveLoadoutDispatch.js +105 -1
- package/dist/dispatches/SpawnDispatch.js +22 -1
- package/dist/dispatches/SwapWeaponDispatch.js +25 -1
- package/dist/dispatches/SwitchTeamDispatch.js +33 -1
- package/dist/dispatches/ThrowGrenadeDispatch.js +21 -1
- package/dist/dispatches/index.js +74 -1
- package/dist/env/fetch.js +97 -10
- package/dist/env/globals.js +15 -1
- package/dist/index.js +14 -2
- package/dist/matchmaker.js +141 -1
- package/dist/pathing/astar.js +55 -1
- package/dist/pathing/binaryheap.js +79 -1
- package/dist/pathing/mapnode.js +179 -1
- package/dist/socket.js +97 -1
- package/dist/util.js +68 -1
- package/dist/wasm/bytes.js +8 -1
- package/dist/wasm/direct.js +84 -1
- package/dist/wasm/legacy.js +170 -1
- package/dist/wasm/util.js +19 -1
- package/package.json +38 -39
- /package/dist/{types/api.d.ts → api.d.ts} +0 -0
- /package/dist/{types/bot → bot}/GamePlayer.d.ts +0 -0
- /package/dist/{types/bot.d.ts → bot.d.ts} +0 -0
- /package/dist/{types/comm → comm}/CommIn.d.ts +0 -0
- /package/dist/{types/comm → comm}/CommOut.d.ts +0 -0
- /package/dist/{types/comm → comm}/index.d.ts +0 -0
- /package/dist/{types/constants → constants}/CloseCode.d.ts +0 -0
- /package/dist/{types/constants → constants}/CommCode.d.ts +0 -0
- /package/dist/{types/constants → constants}/challenges.d.ts +0 -0
- /package/dist/{types/constants → constants}/changelog.d.ts +0 -0
- /package/dist/{types/constants → constants}/findItemById.d.ts +0 -0
- /package/dist/{types/constants → constants}/guns.d.ts +0 -0
- /package/dist/{types/constants → constants}/housePromo.d.ts +0 -0
- /package/dist/{types/constants → constants}/index.d.ts +0 -0
- /package/dist/{types/constants → constants}/items.d.ts +0 -0
- /package/dist/{types/constants → constants}/language.d.ts +0 -0
- /package/dist/{types/constants → constants}/maps.d.ts +0 -0
- /package/dist/{types/constants → constants}/notices.d.ts +0 -0
- /package/dist/{types/constants → constants}/regions.d.ts +0 -0
- /package/dist/{types/constants → constants}/shellNews.d.ts +0 -0
- /package/dist/{types/constants → constants}/shellYoutube.d.ts +0 -0
- /package/dist/{types/constants → constants}/shopItems.d.ts +0 -0
- /package/dist/{types/constants → constants}/sounds.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/BanPlayerDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/BootPlayerDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/ChatDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/FireDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GameOptionsDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GoToAmmoDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GoToCoopDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GoToGrenadeDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GoToPlayerDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/GoToSpatulaDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/LookAtDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/LookAtPosDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/MeleeDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/MovementDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/PauseDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/ReloadDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/ReportPlayerDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/ResetGameDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/SaveLoadoutDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/SpawnDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/SwapWeaponDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/SwitchTeamDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/ThrowGrenadeDispatch.d.ts +0 -0
- /package/dist/{types/dispatches → dispatches}/index.d.ts +0 -0
- /package/dist/{types/matchmaker.d.ts → matchmaker.d.ts} +0 -0
- /package/dist/{types/pathing → pathing}/astar.d.ts +0 -0
- /package/dist/{types/pathing → pathing}/binaryheap.d.ts +0 -0
- /package/dist/{types/pathing → pathing}/mapnode.d.ts +0 -0
- /package/dist/{types/socket.d.ts → socket.d.ts} +0 -0
- /package/dist/{types/util.d.ts → util.d.ts} +0 -0
- /package/dist/{types/wasm → wasm}/bytes.d.ts +0 -0
- /package/dist/{types/wasm → wasm}/direct.d.ts +0 -0
- /package/dist/{types/wasm → wasm}/legacy.d.ts +0 -0
- /package/dist/{types/wasm → wasm}/util.d.ts +0 -0
|
@@ -1 +1,1821 @@
|
|
|
1
|
-
export const Challenges=[{id:1,loc_ref:"chlg_kill_streak_five",type:0,subType:0,period:0,goal:1,reward:100,conditional:0,value:"5",valueTwo:null,tier:2,loc:{title:"Master Chef",desc:"Get a 5 killstreak"}},{id:2,loc_ref:"chlg_kill_streak_ten",type:0,subType:0,period:0,goal:1,reward:200,conditional:0,value:"10",valueTwo:null,tier:2,loc:{title:"Butcher",desc:"Get a 10 killstreak"}},{id:3,loc_ref:"chlg_kill_streak_fifteen",type:0,subType:0,period:0,goal:1,reward:500,conditional:0,value:"15",valueTwo:null,tier:3,loc:{title:"Eggsassin",desc:"Get a 15 killstreak"}},{id:4,loc_ref:"chlg_kill_streak_twenty",type:0,subType:0,period:0,goal:1,reward:1000,conditional:0,value:"20",valueTwo:null,tier:3,loc:{title:"Eggsecutioner",desc:"Get a 20 killstreak"}},{id:5,loc_ref:"chlg_kill_streak_fifty",type:0,subType:0,period:0,goal:1,reward:5000,conditional:0,value:"50",valueTwo:null,tier:3,loc:{title:"Shell Smasher",desc:"Get a 50 killstreak"}},{id:6,loc_ref:"chlg_kill_kills_ten",type:0,subType:10,period:0,goal:10,reward:100,conditional:null,value:null,valueTwo:null,tier:0,loc:{title:"Shell Shocker",desc:"Get 10 total kills"}},{id:7,loc_ref:"chlg_kill_kills_twenty",type:0,subType:10,period:0,goal:20,reward:200,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Yolk Drinker",desc:"Get 20 total kills"}},{id:8,loc_ref:"chlg_kill_kills_fifty",type:0,subType:10,period:0,goal:50,reward:500,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Clutch Master",desc:"Get 50 total kills"}},{id:9,loc_ref:"chlg_kill_kills_hundred",type:0,subType:10,period:0,goal:100,reward:1000,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Eggsterminator",desc:"Get 100 total kills"}},{id:10,loc_ref:"chlg_kill_kills_two_fifty",type:0,subType:10,period:0,goal:250,reward:2500,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Ovum Overlord",desc:"Get 250 total kills"}},{id:11,loc_ref:"chlg_kill_timePlayed_two",type:0,subType:6,period:0,goal:1,reward:100,conditional:null,value:"2",valueTwo:"60",tier:0,loc:{title:"Back to Back",desc:"Spawn and get 2 kills in 1 min"}},{id:12,loc_ref:"chlg_kill_timePlayed_four",type:0,subType:6,period:0,goal:1,reward:500,conditional:null,value:"4",valueTwo:"60",tier:2,loc:{title:"C-C-C-COMBO",desc:"Spawn and get 4 kills in 1 min"}},{id:13,loc_ref:"chlg_kill_timePlayed_seven",type:0,subType:6,period:0,goal:1,reward:1000,conditional:null,value:"7",valueTwo:"60",tier:3,loc:{title:"Eggcellerator",desc:"Spawn and get 7 kills in 1 min"}},{id:14,loc_ref:"chlg_kill_timePlayed_ten",type:0,subType:6,period:0,goal:1,reward:2500,conditional:null,value:"10",valueTwo:"60",tier:3,loc:{title:"Need for Speed",desc:"Spawn and get 10 kills in 1 min"}},{id:15,loc_ref:"chlg_kill_con_kill_one_shot",type:0,subType:8,period:0,goal:1,reward:100,conditional:11,value:"1",valueTwo:"1",tier:1,loc:{title:"Bullseye",desc:"Kill an egg with 1 shot"}},{id:16,loc_ref:"chlg_kill_con_kill_hp_ten",type:0,subType:8,period:0,goal:1,reward:500,conditional:12,value:"1",valueTwo:"10",tier:1,loc:{title:"Cutting it Close",desc:"Get a kill with less than 10 HP"}},{id:17,loc_ref:"chlg_kill_con_kill_five_streak",type:0,subType:8,period:0,goal:1,reward:1000,conditional:0,value:"0",valueTwo:"5",tier:2,loc:{title:"Soft Boiled",desc:"Kill an egg on a 5+ streak"}},{id:18,loc_ref:"chlg_kill_con_kill_ten_streak",type:0,subType:8,period:0,goal:1,reward:2500,conditional:0,value:"0",valueTwo:"10",tier:3,loc:{title:"Breaker-breaker",desc:"Kill an egg on a 10+ streak"}},{id:19,loc_ref:"chlg_kill_con_kill_scoped",type:0,subType:8,period:0,goal:1,reward:200,conditional:13,value:null,valueTwo:null,tier:2,loc:{title:"Eye 2 Eye",desc:"Snipe a zoomed-in sniper"}},{id:20,loc_ref:"chlg_kill_con_two_kills_one_shot",type:0,subType:8,period:0,goal:1,reward:200,conditional:16,value:"2",valueTwo:null,tier:2,loc:{title:"Collateral Damage",desc:"Kill two eggs at once"}},{id:21,loc_ref:"chlg_kill_con_reloading",type:0,subType:8,period:0,goal:1,reward:100,conditional:17,value:null,valueTwo:null,tier:1,loc:{title:"Owned",desc:"Kill an egg while they reload"}},{id:22,loc_ref:"chlg_kill_con_kill_scoped_melee",type:0,subType:8,period:0,goal:1,reward:200,conditional:13,value:null,valueTwo:"9",tier:2,loc:{title:"Behind You!",desc:"Melee kill a zoomed-in egg"}},{id:23,loc_ref:"chlg_kill_con_kill_two_grenade",type:0,subType:8,period:0,goal:1,reward:200,conditional:16,value:"2",valueTwo:"8",tier:2,loc:{title:"2 Birds 1 Stone",desc:"Kill 2 eggs with 1 Grenade"}},{id:24,loc_ref:"chlg_kill_con_kill_three_grenade",type:0,subType:8,period:0,goal:1,reward:1000,conditional:16,value:"3",valueTwo:"8",tier:3,loc:{title:"M-M-M-Multikill",desc:"Kill 3 eggs with 1 Grenade"}},{id:25,loc_ref:"chlg_kill_con_kill_two_rpegg",type:0,subType:8,period:0,goal:1,reward:200,conditional:16,value:"2",valueTwo:"4",tier:2,loc:{title:"Splash Damage",desc:"Kill 2 eggs with 1 RPEGG shot"}},{id:26,loc_ref:"chlg_kill_con_kill_three_rpegg",type:0,subType:8,period:0,goal:1,reward:1000,conditional:16,value:"3",valueTwo:"4",tier:3,loc:{title:"Big Boomer",desc:"Kill 3 eggs with 1 RPEGG shot"}},{id:27,loc_ref:"chlg_kill_weaponType_Cluck9mm_five",type:0,subType:1,period:0,goal:5,reward:200,conditional:null,value:null,valueTwo:"3",tier:1,loc:{title:"Pew Pew",desc:"Get 5 Cluck 9mm kills"}},{id:28,loc_ref:"chlg_kill_weaponType_Cluck9mm_ten",type:0,subType:1,period:0,goal:10,reward:500,conditional:null,value:null,valueTwo:"3",tier:1,loc:{title:"Trigger Happy",desc:"Get 10 Cluck 9mm kills"}},{id:29,loc_ref:"chlg_kill_weaponType_Cluck9mm_twenty",type:0,subType:1,period:0,goal:20,reward:1000,conditional:null,value:null,valueTwo:"3",tier:2,loc:{title:"Sidearm Specialist",desc:"Get 20 Cluck 9mm kills"}},{id:30,loc_ref:"chlg_kill_weaponType_Cluck9mm_fifty",type:0,subType:1,period:0,goal:50,reward:2500,conditional:null,value:null,valueTwo:"3",tier:3,loc:{title:"9mm Master",desc:"Get 50 Cluck 9mm kills"}},{id:31,loc_ref:"chlg_kill_weaponType_Scrambler_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"1",tier:1,loc:{title:"Scrambled Eggs",desc:"Get 5 Scrambler kills"}},{id:32,loc_ref:"chlg_kill_weaponType_Scrambler_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"1",tier:1,loc:{title:"Hunting Wabbits",desc:"Get 10 Scrambler kills"}},{id:33,loc_ref:"chlg_kill_weaponType_Scrambler_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"1",tier:2,loc:{title:"Boomstick",desc:"Get 20 Scrambler kills"}},{id:34,loc_ref:"chlg_kill_weaponType_Scrambler_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"1",tier:3,loc:{title:"Splat-o-matic",desc:"Get 50 Scrambler kills"}},{id:35,loc_ref:"chlg_kill_weaponType_Rpegg_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"4",tier:2,loc:{title:"Eggsploder",desc:"Get 5 RPEGG kills"}},{id:36,loc_ref:"chlg_kill_weaponType_Rpegg_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"4",tier:2,loc:{title:"Arm Cannons",desc:"Get 10 RPEGG kills"}},{id:37,loc_ref:"chlg_kill_weaponType_Rpegg_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"4",tier:2,loc:{title:"Bazooka Joe",desc:"Get 20 RPEGG kills"}},{id:38,loc_ref:"chlg_kill_weaponType_Rpegg_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"4",tier:3,loc:{title:"Master Eggsploder",desc:"Get 50 RPEGG kills"}},{id:39,loc_ref:"chlg_kill_weaponType_Whipper_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"5",tier:1,loc:{title:"Whip it Good",desc:"Get 5 Whipper kills"}},{id:40,loc_ref:"chlg_kill_weaponType_Whipper_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"5",tier:1,loc:{title:"Cool Whip",desc:"Get 10 Whipper kills"}},{id:41,loc_ref:"chlg_kill_weaponType_Whipper_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"5",tier:2,loc:{title:"Whip it REAL Good",desc:"Get 20 Whipper kills"}},{id:42,loc_ref:"chlg_kill_weaponType_Whipper_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"5",tier:3,loc:{title:"Whip up a Storm",desc:"Get 50 Whipper kills"}},{id:43,loc_ref:"chlg_kill_weaponType_Eggk47_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"0",tier:0,loc:{title:"Lock & Load",desc:"Get 5 EggK-47 kills"}},{id:44,loc_ref:"chlg_kill_weaponType_Eggk47_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"0",tier:1,loc:{title:"Almost a Dozen",desc:"Get 10 EggK-47 kills"}},{id:45,loc_ref:"chlg_kill_weaponType_Eggk47_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"0",tier:2,loc:{title:"Spray Down",desc:"Get 20 EggK-47 kills"}},{id:46,loc_ref:"chlg_kill_weaponType_Eggk47_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"0",tier:3,loc:{title:"Eggk-47 Eggspert",desc:"Get 50 EggK-47 kills"}},{id:47,loc_ref:"chlg_kill_weaponType_FreeRanger_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"2",tier:1,loc:{title:"Poacher",desc:"Get 5 Free Ranger kills"}},{id:48,loc_ref:"chlg_kill_weaponType_FreeRanger_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"2",tier:1,loc:{title:"Bounty Hunter",desc:"Get 10 Free Ranger kills"}},{id:49,loc_ref:"chlg_kill_weaponType_FreeRanger_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"2",tier:2,loc:{title:"Hired Gun",desc:"Get 20 Free Ranger kills"}},{id:50,loc_ref:"chlg_kill_weaponType_FreeRanger_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"2",tier:3,loc:{title:"Big-Game Hunter",desc:"Get 50 Free Ranger kills"}},{id:51,loc_ref:"chlg_kill_weaponType_Crackshot_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"6",tier:1,loc:{title:"Sniper",desc:"Get 5 Crackshot kills"}},{id:52,loc_ref:"chlg_kill_weaponType_Crackshot_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"6",tier:1,loc:{title:"Sharpshooter",desc:"Get 10 Crackshot kills"}},{id:53,loc_ref:"chlg_kill_weaponType_Crackshot_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"6",tier:2,loc:{title:"Marksman",desc:"Get 20 Crackshot kills"}},{id:54,loc_ref:"chlg_kill_weaponType_Crackshot_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"6",tier:3,loc:{title:"Cracked",desc:"Get 50 Crackshot kills"}},{id:55,loc_ref:"chlg_kill_weaponType_TriHard_five",type:0,subType:1,period:0,goal:5,reward:100,conditional:null,value:null,valueTwo:"7",tier:1,loc:{title:"Tri-Hard",desc:"Get 5 Tri-Hard kills"}},{id:56,loc_ref:"chlg_kill_weaponType_TriHard_ten",type:0,subType:1,period:0,goal:10,reward:200,conditional:null,value:null,valueTwo:"7",tier:1,loc:{title:"Tri-Harder",desc:"Get 10 Tri-Hard kills"}},{id:57,loc_ref:"chlg_kill_weaponType_TriHard_twenty",type:0,subType:1,period:0,goal:20,reward:500,conditional:null,value:null,valueTwo:"7",tier:2,loc:{title:"Tri-Even-Harder",desc:"Get 20 Tri-Hard kills"}},{id:58,loc_ref:"chlg_kill_weaponType_TriHard_fifty",type:0,subType:1,period:0,goal:50,reward:1000,conditional:null,value:null,valueTwo:"7",tier:3,loc:{title:"Tri-Hardest",desc:"Get 50 Tri-Hard kills"}},{id:59,loc_ref:"chlg_kill_weaponType_Melee_five",type:0,subType:1,period:0,goal:5,reward:200,conditional:null,value:null,valueTwo:"9",tier:2,loc:{title:"Whisky Business",desc:"Get 5 Melee kills"}},{id:60,loc_ref:"chlg_kill_weaponType_Melee_ten",type:0,subType:1,period:0,goal:10,reward:500,conditional:null,value:null,valueTwo:"9",tier:2,loc:{title:"Slap the Bass",desc:"Get 10 Melee kills"}},{id:61,loc_ref:"chlg_kill_weaponType_Melee_twenty",type:0,subType:1,period:0,goal:20,reward:1000,conditional:null,value:null,valueTwo:"9",tier:3,loc:{title:"Whack & Slash",desc:"Get 20 Melee kills"}},{id:62,loc_ref:"chlg_kill_weaponType_Melee_fifty",type:0,subType:1,period:0,goal:50,reward:2500,conditional:null,value:null,valueTwo:"9",tier:3,loc:{title:"Melee Master",desc:"Get 50 Melee kills"}},{id:63,loc_ref:"chlg_damage_five_hundred",type:1,subType:null,period:0,goal:500,reward:100,conditional:null,value:null,valueTwo:null,tier:0,loc:{title:"Shattered Shells",desc:"Deal 500 damage"}},{id:64,loc_ref:"chlg_damage_one_thousand",type:1,subType:null,period:0,goal:1000,reward:100,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Decimator",desc:"Deal 1000 damage"}},{id:65,loc_ref:"chlg_damage_twenty_five_hundred",type:1,subType:null,period:0,goal:2500,reward:200,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Tormentor",desc:"Deal 2500 damage"}},{id:66,loc_ref:"chlg_damage_five_thousand",type:1,subType:null,period:0,goal:5000,reward:500,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Devastator",desc:"Deal 5000 damage"}},{id:67,loc_ref:"chlg_damage_ten_thousand",type:1,subType:null,period:0,goal:1e4,reward:1000,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Boomsauce",desc:"Deal 10000 damage"}},{id:68,loc_ref:"chlg_damage_twenty_five_thousand",type:1,subType:null,period:0,goal:25000,reward:2500,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Maximum Damage",desc:"Deal 25000 damage"}},{id:69,loc_ref:"chlg_deaths_ten",type:2,subType:null,period:0,goal:10,reward:100,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Cracked",desc:"Die 10 times"}},{id:70,loc_ref:"chlg_deaths_twenty",type:2,subType:null,period:0,goal:20,reward:200,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Fried",desc:"Die 20 times"}},{id:71,loc_ref:"chlg_deaths_fifty",type:2,subType:null,period:0,goal:50,reward:500,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Death Wish",desc:"Die 50 times"}},{id:72,loc_ref:"chlg_movement_distance_five_hunderd",type:3,subType:3,period:0,goal:500,reward:100,conditional:null,value:null,valueTwo:null,tier:0,loc:{title:"Runny Egg",desc:"Travel 500m"}},{id:73,loc_ref:"chlg_movement_distance_one_thousand",type:3,subType:3,period:0,goal:1000,reward:500,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Poultry in Motion",desc:"Travel 1000m"}},{id:74,loc_ref:"chlg_movement_distance_five_thousand",type:3,subType:3,period:0,goal:5000,reward:2500,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Gaming Marathon",desc:"Travel 5000m"}},{id:75,loc_ref:"chlg_movement_jump_one_hundred",type:3,subType:4,period:0,goal:100,reward:100,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Jumpman",desc:"Jump 100 times"}},{id:76,loc_ref:"chlg_movement_jump_five_hundred",type:3,subType:4,period:0,goal:500,reward:500,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Bouncing Bomb",desc:"Jump 500 times"}},{id:77,loc_ref:"chlg_kill_jump_one",type:0,subType:4,period:0,goal:1,reward:200,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Aerial Assault",desc:"Get a kill while jumping"}},{id:78,loc_ref:"chlg_kill_jump_five",type:0,subType:4,period:0,goal:5,reward:1000,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Do a Barrel Roll",desc:"Get 5 kills while airborne"}},{id:79,loc_ref:"chlg_kill_jump_victim_jump",type:0,subType:4,period:0,goal:1,reward:2500,conditional:4,value:null,valueTwo:null,tier:3,loc:{title:"Aerial Acrobatics",desc:"Kill an egg while both airborne"}},{id:80,loc_ref:"chlg_movement_collect_ammo_ten",type:4,subType:18,period:0,goal:10,reward:100,conditional:16,value:"0",valueTwo:null,tier:1,loc:{title:"We Need Supplies!",desc:"Collect 10 ammo boxes"}},{id:81,loc_ref:"chlg_movement_collect_ammo_twenty_five",type:4,subType:18,period:0,goal:25,reward:500,conditional:16,value:"0",valueTwo:null,tier:2,loc:{title:"Quartermaster",desc:"Collect 25 ammo boxes"}},{id:82,loc_ref:"chlg_movement_collect_ammo_fifty",type:4,subType:18,period:0,goal:50,reward:1000,conditional:16,value:"0",valueTwo:null,tier:3,loc:{title:"Locked & Loaded",desc:"Collect 50 ammo boxes"}},{id:83,loc_ref:"chlg_movement_collect_grenade_ten",type:4,subType:18,period:0,goal:10,reward:100,conditional:17,value:"1",valueTwo:null,tier:1,loc:{title:"Explosives expert",desc:"Collect 10 grenades"}},{id:84,loc_ref:"chlg_movement_collect_grenade_twenty_five",type:4,subType:18,period:0,goal:25,reward:500,conditional:17,value:"1",valueTwo:null,tier:2,loc:{title:"Bombardier",desc:"Collect 25 grenades"}},{id:85,loc_ref:"chlg_movement_collect_grenade_fifty",type:4,subType:18,period:0,goal:50,reward:1000,conditional:17,value:"1",valueTwo:null,tier:3,loc:{title:"Explosive Temper",desc:"Collect 50 grenades"}},{id:86,loc_ref:"chlg_timed_timeAlive_thirty",type:5,subType:7,period:0,goal:1,reward:100,conditional:7,value:"30",valueTwo:null,tier:1,loc:{title:"Running Scared",desc:"Stay alive for 30 sec"}},{id:87,loc_ref:"chlg_timed_timeAlive_sixty",type:5,subType:7,period:0,goal:1,reward:200,conditional:7,value:"60",valueTwo:null,tier:2,loc:{title:"Hard to Beat",desc:"Stay alive for 1 min"}},{id:88,loc_ref:"chlg_timed_timeAlive_three_hundred",type:5,subType:7,period:0,goal:1,reward:2500,conditional:7,value:"300",valueTwo:null,tier:3,loc:{title:"Happily Ever After",desc:"Stay alive for 5 min"}},{id:90,loc_ref:"chlg_timed_timePlayed_three_hundred",type:5,subType:6,period:0,goal:300,reward:200,conditional:6,value:"300",valueTwo:null,tier:0,loc:{title:"Shell Shocked!",desc:"Play for 5 min"}},{id:91,loc_ref:"chlg_timed_timePlayed_nine_hundred",type:5,subType:6,period:0,goal:900,reward:500,conditional:6,value:"900",valueTwo:null,tier:1,loc:{title:"Not so Noob",desc:"Play for 15 min"}},{id:92,loc_ref:"chlg_timed_timePlayed_eighteen_hundred",type:5,subType:6,period:0,goal:1800,reward:1000,conditional:6,value:"1800",valueTwo:null,tier:2,loc:{title:"Oval Office",desc:"Play for 30 min"}},{id:93,loc_ref:"chlg_timed_timePlayed_thirty_six_hundred",type:5,subType:6,period:0,goal:3600,reward:2500,conditional:6,value:"3600",valueTwo:null,tier:3,loc:{title:"On That Grind",desc:"Play for 60 min"}},{id:94,loc_ref:"chlg_kotc_capturing_timeAlive_twenty",type:6,subType:20,period:0,goal:1,reward:100,conditional:7,value:"10",valueTwo:null,tier:1,loc:{title:"Hold the Fort",desc:"Stand on Coop for 10 sec"}},{id:95,loc_ref:"chlg_kotc_capture",type:6,subType:21,period:0,goal:1,reward:100,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Coop King",desc:"Capture a Coop"}},{id:96,loc_ref:"chlg_kotc_win_one",type:6,subType:23,period:0,goal:1,reward:200,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"King of the Coop",desc:"Win a KotC match"}},{id:97,loc_ref:"chlg_kotc_win_three",type:6,subType:23,period:0,goal:3,reward:500,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Team Sports",desc:"Win 3 KotC matches"}},{id:98,loc_ref:"chlg_kotc_win_five",type:6,subType:23,period:0,goal:5,reward:1000,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Rule the Roost",desc:"Win 5 KotC matches"}},{id:99,loc_ref:"chlg_kotc_win_ten",type:6,subType:23,period:0,goal:10,reward:2500,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Coop Commander",desc:"Win 10 KotC matches"}},{id:100,loc_ref:"chlg_kotc_coop_kill",type:6,subType:20,period:0,goal:1,reward:200,conditional:10,value:null,valueTwo:null,tier:1,loc:{title:"Defender",desc:"Kill an egg from the Coop"}},{id:101,loc_ref:"chlg_kotc_coop_kill_victim_capturing",type:6,subType:20,period:0,goal:1,reward:200,conditional:10,value:"18",valueTwo:null,tier:1,loc:{title:"Offender",desc:"Kill an egg on a Coop"}},{id:102,loc_ref:"chlg_cts_pick_up",type:7,subType:21,period:0,goal:1,reward:200,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Fry Cook",desc:"CTS: Pick up the Spatula"}},{id:103,loc_ref:"chlg_cts_capture_timeAlive_thirty",type:7,subType:21,period:0,goal:1,reward:500,conditional:7,value:"30",valueTwo:null,tier:2,loc:{title:"Keepaway",desc:"CTS: Hold the Spatula for 30s"}},{id:104,loc_ref:"chlg_cts_win_ten",type:7,subType:23,period:0,goal:20,reward:1000,conditional:null,value:null,valueTwo:null,tier:1,loc:{title:"Sunny Side Up!",desc:"CTS: Gain 20+ kills holding the spatula"}},{id:105,loc_ref:"chlg_cts_win_twenty_five",type:7,subType:23,period:0,goal:50,reward:4000,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Flippin 'em",desc:"CTS: Gain 50+ kills holding the spatula"}},{id:106,loc_ref:"chlg_cts_win_fifty",type:7,subType:23,period:0,goal:100,reward:1e4,conditional:null,value:null,valueTwo:null,tier:3,loc:{title:"Makin' Bacon",desc:"CTS: Gain 100+ kills holding the spatula"}},{id:107,loc_ref:"chlg_cts_kills_victim_spatula",type:7,subType:10,period:0,goal:1,reward:200,conditional:null,value:null,valueTwo:null,tier:2,loc:{title:"Kill the Cook",desc:"CTS: Kill the Spatula holder"}},{id:108,loc_ref:"chlg_cts_kills_killstreak_five",type:7,subType:10,period:0,goal:1,reward:500,conditional:0,value:"5",valueTwo:null,tier:3,loc:{title:"Flippin' Dangerous",desc:"CTS: Get a 5 KS with the spatula"}}];
|
|
1
|
+
export const Challenges = [
|
|
2
|
+
{
|
|
3
|
+
id: 1,
|
|
4
|
+
loc_ref: "chlg_kill_streak_five",
|
|
5
|
+
type: 0,
|
|
6
|
+
subType: 0,
|
|
7
|
+
period: 0,
|
|
8
|
+
goal: 1,
|
|
9
|
+
reward: 100,
|
|
10
|
+
conditional: 0,
|
|
11
|
+
value: "5",
|
|
12
|
+
valueTwo: null,
|
|
13
|
+
tier: 2,
|
|
14
|
+
loc: {
|
|
15
|
+
title: "Master Chef",
|
|
16
|
+
desc: "Get a 5 killstreak"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
id: 2,
|
|
21
|
+
loc_ref: "chlg_kill_streak_ten",
|
|
22
|
+
type: 0,
|
|
23
|
+
subType: 0,
|
|
24
|
+
period: 0,
|
|
25
|
+
goal: 1,
|
|
26
|
+
reward: 200,
|
|
27
|
+
conditional: 0,
|
|
28
|
+
value: "10",
|
|
29
|
+
valueTwo: null,
|
|
30
|
+
tier: 2,
|
|
31
|
+
loc: {
|
|
32
|
+
title: "Butcher",
|
|
33
|
+
desc: "Get a 10 killstreak"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
id: 3,
|
|
38
|
+
loc_ref: "chlg_kill_streak_fifteen",
|
|
39
|
+
type: 0,
|
|
40
|
+
subType: 0,
|
|
41
|
+
period: 0,
|
|
42
|
+
goal: 1,
|
|
43
|
+
reward: 500,
|
|
44
|
+
conditional: 0,
|
|
45
|
+
value: "15",
|
|
46
|
+
valueTwo: null,
|
|
47
|
+
tier: 3,
|
|
48
|
+
loc: {
|
|
49
|
+
title: "Eggsassin",
|
|
50
|
+
desc: "Get a 15 killstreak"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
id: 4,
|
|
55
|
+
loc_ref: "chlg_kill_streak_twenty",
|
|
56
|
+
type: 0,
|
|
57
|
+
subType: 0,
|
|
58
|
+
period: 0,
|
|
59
|
+
goal: 1,
|
|
60
|
+
reward: 1000,
|
|
61
|
+
conditional: 0,
|
|
62
|
+
value: "20",
|
|
63
|
+
valueTwo: null,
|
|
64
|
+
tier: 3,
|
|
65
|
+
loc: {
|
|
66
|
+
title: "Eggsecutioner",
|
|
67
|
+
desc: "Get a 20 killstreak"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: 5,
|
|
72
|
+
loc_ref: "chlg_kill_streak_fifty",
|
|
73
|
+
type: 0,
|
|
74
|
+
subType: 0,
|
|
75
|
+
period: 0,
|
|
76
|
+
goal: 1,
|
|
77
|
+
reward: 5000,
|
|
78
|
+
conditional: 0,
|
|
79
|
+
value: "50",
|
|
80
|
+
valueTwo: null,
|
|
81
|
+
tier: 3,
|
|
82
|
+
loc: {
|
|
83
|
+
title: "Shell Smasher",
|
|
84
|
+
desc: "Get a 50 killstreak"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
id: 6,
|
|
89
|
+
loc_ref: "chlg_kill_kills_ten",
|
|
90
|
+
type: 0,
|
|
91
|
+
subType: 10,
|
|
92
|
+
period: 0,
|
|
93
|
+
goal: 10,
|
|
94
|
+
reward: 100,
|
|
95
|
+
conditional: null,
|
|
96
|
+
value: null,
|
|
97
|
+
valueTwo: null,
|
|
98
|
+
tier: 0,
|
|
99
|
+
loc: {
|
|
100
|
+
title: "Shell Shocker",
|
|
101
|
+
desc: "Get 10 total kills"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
id: 7,
|
|
106
|
+
loc_ref: "chlg_kill_kills_twenty",
|
|
107
|
+
type: 0,
|
|
108
|
+
subType: 10,
|
|
109
|
+
period: 0,
|
|
110
|
+
goal: 20,
|
|
111
|
+
reward: 200,
|
|
112
|
+
conditional: null,
|
|
113
|
+
value: null,
|
|
114
|
+
valueTwo: null,
|
|
115
|
+
tier: 1,
|
|
116
|
+
loc: {
|
|
117
|
+
title: "Yolk Drinker",
|
|
118
|
+
desc: "Get 20 total kills"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
id: 8,
|
|
123
|
+
loc_ref: "chlg_kill_kills_fifty",
|
|
124
|
+
type: 0,
|
|
125
|
+
subType: 10,
|
|
126
|
+
period: 0,
|
|
127
|
+
goal: 50,
|
|
128
|
+
reward: 500,
|
|
129
|
+
conditional: null,
|
|
130
|
+
value: null,
|
|
131
|
+
valueTwo: null,
|
|
132
|
+
tier: 2,
|
|
133
|
+
loc: {
|
|
134
|
+
title: "Clutch Master",
|
|
135
|
+
desc: "Get 50 total kills"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
id: 9,
|
|
140
|
+
loc_ref: "chlg_kill_kills_hundred",
|
|
141
|
+
type: 0,
|
|
142
|
+
subType: 10,
|
|
143
|
+
period: 0,
|
|
144
|
+
goal: 100,
|
|
145
|
+
reward: 1000,
|
|
146
|
+
conditional: null,
|
|
147
|
+
value: null,
|
|
148
|
+
valueTwo: null,
|
|
149
|
+
tier: 3,
|
|
150
|
+
loc: {
|
|
151
|
+
title: "Eggsterminator",
|
|
152
|
+
desc: "Get 100 total kills"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
id: 10,
|
|
157
|
+
loc_ref: "chlg_kill_kills_two_fifty",
|
|
158
|
+
type: 0,
|
|
159
|
+
subType: 10,
|
|
160
|
+
period: 0,
|
|
161
|
+
goal: 250,
|
|
162
|
+
reward: 2500,
|
|
163
|
+
conditional: null,
|
|
164
|
+
value: null,
|
|
165
|
+
valueTwo: null,
|
|
166
|
+
tier: 3,
|
|
167
|
+
loc: {
|
|
168
|
+
title: "Ovum Overlord",
|
|
169
|
+
desc: "Get 250 total kills"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
id: 11,
|
|
174
|
+
loc_ref: "chlg_kill_timePlayed_two",
|
|
175
|
+
type: 0,
|
|
176
|
+
subType: 6,
|
|
177
|
+
period: 0,
|
|
178
|
+
goal: 1,
|
|
179
|
+
reward: 100,
|
|
180
|
+
conditional: null,
|
|
181
|
+
value: "2",
|
|
182
|
+
valueTwo: "60",
|
|
183
|
+
tier: 0,
|
|
184
|
+
loc: {
|
|
185
|
+
title: "Back to Back",
|
|
186
|
+
desc: "Spawn and get 2 kills in 1 min"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
id: 12,
|
|
191
|
+
loc_ref: "chlg_kill_timePlayed_four",
|
|
192
|
+
type: 0,
|
|
193
|
+
subType: 6,
|
|
194
|
+
period: 0,
|
|
195
|
+
goal: 1,
|
|
196
|
+
reward: 500,
|
|
197
|
+
conditional: null,
|
|
198
|
+
value: "4",
|
|
199
|
+
valueTwo: "60",
|
|
200
|
+
tier: 2,
|
|
201
|
+
loc: {
|
|
202
|
+
title: "C-C-C-COMBO",
|
|
203
|
+
desc: "Spawn and get 4 kills in 1 min"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
id: 13,
|
|
208
|
+
loc_ref: "chlg_kill_timePlayed_seven",
|
|
209
|
+
type: 0,
|
|
210
|
+
subType: 6,
|
|
211
|
+
period: 0,
|
|
212
|
+
goal: 1,
|
|
213
|
+
reward: 1000,
|
|
214
|
+
conditional: null,
|
|
215
|
+
value: "7",
|
|
216
|
+
valueTwo: "60",
|
|
217
|
+
tier: 3,
|
|
218
|
+
loc: {
|
|
219
|
+
title: "Eggcellerator",
|
|
220
|
+
desc: "Spawn and get 7 kills in 1 min"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
id: 14,
|
|
225
|
+
loc_ref: "chlg_kill_timePlayed_ten",
|
|
226
|
+
type: 0,
|
|
227
|
+
subType: 6,
|
|
228
|
+
period: 0,
|
|
229
|
+
goal: 1,
|
|
230
|
+
reward: 2500,
|
|
231
|
+
conditional: null,
|
|
232
|
+
value: "10",
|
|
233
|
+
valueTwo: "60",
|
|
234
|
+
tier: 3,
|
|
235
|
+
loc: {
|
|
236
|
+
title: "Need for Speed",
|
|
237
|
+
desc: "Spawn and get 10 kills in 1 min"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
id: 15,
|
|
242
|
+
loc_ref: "chlg_kill_con_kill_one_shot",
|
|
243
|
+
type: 0,
|
|
244
|
+
subType: 8,
|
|
245
|
+
period: 0,
|
|
246
|
+
goal: 1,
|
|
247
|
+
reward: 100,
|
|
248
|
+
conditional: 11,
|
|
249
|
+
value: "1",
|
|
250
|
+
valueTwo: "1",
|
|
251
|
+
tier: 1,
|
|
252
|
+
loc: {
|
|
253
|
+
title: "Bullseye",
|
|
254
|
+
desc: "Kill an egg with 1 shot"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
id: 16,
|
|
259
|
+
loc_ref: "chlg_kill_con_kill_hp_ten",
|
|
260
|
+
type: 0,
|
|
261
|
+
subType: 8,
|
|
262
|
+
period: 0,
|
|
263
|
+
goal: 1,
|
|
264
|
+
reward: 500,
|
|
265
|
+
conditional: 12,
|
|
266
|
+
value: "1",
|
|
267
|
+
valueTwo: "10",
|
|
268
|
+
tier: 1,
|
|
269
|
+
loc: {
|
|
270
|
+
title: "Cutting it Close",
|
|
271
|
+
desc: "Get a kill with less than 10 HP"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
id: 17,
|
|
276
|
+
loc_ref: "chlg_kill_con_kill_five_streak",
|
|
277
|
+
type: 0,
|
|
278
|
+
subType: 8,
|
|
279
|
+
period: 0,
|
|
280
|
+
goal: 1,
|
|
281
|
+
reward: 1000,
|
|
282
|
+
conditional: 0,
|
|
283
|
+
value: "0",
|
|
284
|
+
valueTwo: "5",
|
|
285
|
+
tier: 2,
|
|
286
|
+
loc: {
|
|
287
|
+
title: "Soft Boiled",
|
|
288
|
+
desc: "Kill an egg on a 5+ streak"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
id: 18,
|
|
293
|
+
loc_ref: "chlg_kill_con_kill_ten_streak",
|
|
294
|
+
type: 0,
|
|
295
|
+
subType: 8,
|
|
296
|
+
period: 0,
|
|
297
|
+
goal: 1,
|
|
298
|
+
reward: 2500,
|
|
299
|
+
conditional: 0,
|
|
300
|
+
value: "0",
|
|
301
|
+
valueTwo: "10",
|
|
302
|
+
tier: 3,
|
|
303
|
+
loc: {
|
|
304
|
+
title: "Breaker-breaker",
|
|
305
|
+
desc: "Kill an egg on a 10+ streak"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
id: 19,
|
|
310
|
+
loc_ref: "chlg_kill_con_kill_scoped",
|
|
311
|
+
type: 0,
|
|
312
|
+
subType: 8,
|
|
313
|
+
period: 0,
|
|
314
|
+
goal: 1,
|
|
315
|
+
reward: 200,
|
|
316
|
+
conditional: 13,
|
|
317
|
+
value: null,
|
|
318
|
+
valueTwo: null,
|
|
319
|
+
tier: 2,
|
|
320
|
+
loc: {
|
|
321
|
+
title: "Eye 2 Eye",
|
|
322
|
+
desc: "Snipe a zoomed-in sniper"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
id: 20,
|
|
327
|
+
loc_ref: "chlg_kill_con_two_kills_one_shot",
|
|
328
|
+
type: 0,
|
|
329
|
+
subType: 8,
|
|
330
|
+
period: 0,
|
|
331
|
+
goal: 1,
|
|
332
|
+
reward: 200,
|
|
333
|
+
conditional: 16,
|
|
334
|
+
value: "2",
|
|
335
|
+
valueTwo: null,
|
|
336
|
+
tier: 2,
|
|
337
|
+
loc: {
|
|
338
|
+
title: "Collateral Damage",
|
|
339
|
+
desc: "Kill two eggs at once"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
id: 21,
|
|
344
|
+
loc_ref: "chlg_kill_con_reloading",
|
|
345
|
+
type: 0,
|
|
346
|
+
subType: 8,
|
|
347
|
+
period: 0,
|
|
348
|
+
goal: 1,
|
|
349
|
+
reward: 100,
|
|
350
|
+
conditional: 17,
|
|
351
|
+
value: null,
|
|
352
|
+
valueTwo: null,
|
|
353
|
+
tier: 1,
|
|
354
|
+
loc: {
|
|
355
|
+
title: "Owned",
|
|
356
|
+
desc: "Kill an egg while they reload"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
id: 22,
|
|
361
|
+
loc_ref: "chlg_kill_con_kill_scoped_melee",
|
|
362
|
+
type: 0,
|
|
363
|
+
subType: 8,
|
|
364
|
+
period: 0,
|
|
365
|
+
goal: 1,
|
|
366
|
+
reward: 200,
|
|
367
|
+
conditional: 13,
|
|
368
|
+
value: null,
|
|
369
|
+
valueTwo: "9",
|
|
370
|
+
tier: 2,
|
|
371
|
+
loc: {
|
|
372
|
+
title: "Behind You!",
|
|
373
|
+
desc: "Melee kill a zoomed-in egg"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
id: 23,
|
|
378
|
+
loc_ref: "chlg_kill_con_kill_two_grenade",
|
|
379
|
+
type: 0,
|
|
380
|
+
subType: 8,
|
|
381
|
+
period: 0,
|
|
382
|
+
goal: 1,
|
|
383
|
+
reward: 200,
|
|
384
|
+
conditional: 16,
|
|
385
|
+
value: "2",
|
|
386
|
+
valueTwo: "8",
|
|
387
|
+
tier: 2,
|
|
388
|
+
loc: {
|
|
389
|
+
title: "2 Birds 1 Stone",
|
|
390
|
+
desc: "Kill 2 eggs with 1 Grenade"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
id: 24,
|
|
395
|
+
loc_ref: "chlg_kill_con_kill_three_grenade",
|
|
396
|
+
type: 0,
|
|
397
|
+
subType: 8,
|
|
398
|
+
period: 0,
|
|
399
|
+
goal: 1,
|
|
400
|
+
reward: 1000,
|
|
401
|
+
conditional: 16,
|
|
402
|
+
value: "3",
|
|
403
|
+
valueTwo: "8",
|
|
404
|
+
tier: 3,
|
|
405
|
+
loc: {
|
|
406
|
+
title: "M-M-M-Multikill",
|
|
407
|
+
desc: "Kill 3 eggs with 1 Grenade"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
id: 25,
|
|
412
|
+
loc_ref: "chlg_kill_con_kill_two_rpegg",
|
|
413
|
+
type: 0,
|
|
414
|
+
subType: 8,
|
|
415
|
+
period: 0,
|
|
416
|
+
goal: 1,
|
|
417
|
+
reward: 200,
|
|
418
|
+
conditional: 16,
|
|
419
|
+
value: "2",
|
|
420
|
+
valueTwo: "4",
|
|
421
|
+
tier: 2,
|
|
422
|
+
loc: {
|
|
423
|
+
title: "Splash Damage",
|
|
424
|
+
desc: "Kill 2 eggs with 1 RPEGG shot"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
id: 26,
|
|
429
|
+
loc_ref: "chlg_kill_con_kill_three_rpegg",
|
|
430
|
+
type: 0,
|
|
431
|
+
subType: 8,
|
|
432
|
+
period: 0,
|
|
433
|
+
goal: 1,
|
|
434
|
+
reward: 1000,
|
|
435
|
+
conditional: 16,
|
|
436
|
+
value: "3",
|
|
437
|
+
valueTwo: "4",
|
|
438
|
+
tier: 3,
|
|
439
|
+
loc: {
|
|
440
|
+
title: "Big Boomer",
|
|
441
|
+
desc: "Kill 3 eggs with 1 RPEGG shot"
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
id: 27,
|
|
446
|
+
loc_ref: "chlg_kill_weaponType_Cluck9mm_five",
|
|
447
|
+
type: 0,
|
|
448
|
+
subType: 1,
|
|
449
|
+
period: 0,
|
|
450
|
+
goal: 5,
|
|
451
|
+
reward: 200,
|
|
452
|
+
conditional: null,
|
|
453
|
+
value: null,
|
|
454
|
+
valueTwo: "3",
|
|
455
|
+
tier: 1,
|
|
456
|
+
loc: {
|
|
457
|
+
title: "Pew Pew",
|
|
458
|
+
desc: "Get 5 Cluck 9mm kills"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
id: 28,
|
|
463
|
+
loc_ref: "chlg_kill_weaponType_Cluck9mm_ten",
|
|
464
|
+
type: 0,
|
|
465
|
+
subType: 1,
|
|
466
|
+
period: 0,
|
|
467
|
+
goal: 10,
|
|
468
|
+
reward: 500,
|
|
469
|
+
conditional: null,
|
|
470
|
+
value: null,
|
|
471
|
+
valueTwo: "3",
|
|
472
|
+
tier: 1,
|
|
473
|
+
loc: {
|
|
474
|
+
title: "Trigger Happy",
|
|
475
|
+
desc: "Get 10 Cluck 9mm kills"
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
id: 29,
|
|
480
|
+
loc_ref: "chlg_kill_weaponType_Cluck9mm_twenty",
|
|
481
|
+
type: 0,
|
|
482
|
+
subType: 1,
|
|
483
|
+
period: 0,
|
|
484
|
+
goal: 20,
|
|
485
|
+
reward: 1000,
|
|
486
|
+
conditional: null,
|
|
487
|
+
value: null,
|
|
488
|
+
valueTwo: "3",
|
|
489
|
+
tier: 2,
|
|
490
|
+
loc: {
|
|
491
|
+
title: "Sidearm Specialist",
|
|
492
|
+
desc: "Get 20 Cluck 9mm kills"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
id: 30,
|
|
497
|
+
loc_ref: "chlg_kill_weaponType_Cluck9mm_fifty",
|
|
498
|
+
type: 0,
|
|
499
|
+
subType: 1,
|
|
500
|
+
period: 0,
|
|
501
|
+
goal: 50,
|
|
502
|
+
reward: 2500,
|
|
503
|
+
conditional: null,
|
|
504
|
+
value: null,
|
|
505
|
+
valueTwo: "3",
|
|
506
|
+
tier: 3,
|
|
507
|
+
loc: {
|
|
508
|
+
title: "9mm Master",
|
|
509
|
+
desc: "Get 50 Cluck 9mm kills"
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
id: 31,
|
|
514
|
+
loc_ref: "chlg_kill_weaponType_Scrambler_five",
|
|
515
|
+
type: 0,
|
|
516
|
+
subType: 1,
|
|
517
|
+
period: 0,
|
|
518
|
+
goal: 5,
|
|
519
|
+
reward: 100,
|
|
520
|
+
conditional: null,
|
|
521
|
+
value: null,
|
|
522
|
+
valueTwo: "1",
|
|
523
|
+
tier: 1,
|
|
524
|
+
loc: {
|
|
525
|
+
title: "Scrambled Eggs",
|
|
526
|
+
desc: "Get 5 Scrambler kills"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
id: 32,
|
|
531
|
+
loc_ref: "chlg_kill_weaponType_Scrambler_ten",
|
|
532
|
+
type: 0,
|
|
533
|
+
subType: 1,
|
|
534
|
+
period: 0,
|
|
535
|
+
goal: 10,
|
|
536
|
+
reward: 200,
|
|
537
|
+
conditional: null,
|
|
538
|
+
value: null,
|
|
539
|
+
valueTwo: "1",
|
|
540
|
+
tier: 1,
|
|
541
|
+
loc: {
|
|
542
|
+
title: "Hunting Wabbits",
|
|
543
|
+
desc: "Get 10 Scrambler kills"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
id: 33,
|
|
548
|
+
loc_ref: "chlg_kill_weaponType_Scrambler_twenty",
|
|
549
|
+
type: 0,
|
|
550
|
+
subType: 1,
|
|
551
|
+
period: 0,
|
|
552
|
+
goal: 20,
|
|
553
|
+
reward: 500,
|
|
554
|
+
conditional: null,
|
|
555
|
+
value: null,
|
|
556
|
+
valueTwo: "1",
|
|
557
|
+
tier: 2,
|
|
558
|
+
loc: {
|
|
559
|
+
title: "Boomstick",
|
|
560
|
+
desc: "Get 20 Scrambler kills"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
id: 34,
|
|
565
|
+
loc_ref: "chlg_kill_weaponType_Scrambler_fifty",
|
|
566
|
+
type: 0,
|
|
567
|
+
subType: 1,
|
|
568
|
+
period: 0,
|
|
569
|
+
goal: 50,
|
|
570
|
+
reward: 1000,
|
|
571
|
+
conditional: null,
|
|
572
|
+
value: null,
|
|
573
|
+
valueTwo: "1",
|
|
574
|
+
tier: 3,
|
|
575
|
+
loc: {
|
|
576
|
+
title: "Splat-o-matic",
|
|
577
|
+
desc: "Get 50 Scrambler kills"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
id: 35,
|
|
582
|
+
loc_ref: "chlg_kill_weaponType_Rpegg_five",
|
|
583
|
+
type: 0,
|
|
584
|
+
subType: 1,
|
|
585
|
+
period: 0,
|
|
586
|
+
goal: 5,
|
|
587
|
+
reward: 100,
|
|
588
|
+
conditional: null,
|
|
589
|
+
value: null,
|
|
590
|
+
valueTwo: "4",
|
|
591
|
+
tier: 2,
|
|
592
|
+
loc: {
|
|
593
|
+
title: "Eggsploder",
|
|
594
|
+
desc: "Get 5 RPEGG kills"
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
id: 36,
|
|
599
|
+
loc_ref: "chlg_kill_weaponType_Rpegg_ten",
|
|
600
|
+
type: 0,
|
|
601
|
+
subType: 1,
|
|
602
|
+
period: 0,
|
|
603
|
+
goal: 10,
|
|
604
|
+
reward: 200,
|
|
605
|
+
conditional: null,
|
|
606
|
+
value: null,
|
|
607
|
+
valueTwo: "4",
|
|
608
|
+
tier: 2,
|
|
609
|
+
loc: {
|
|
610
|
+
title: "Arm Cannons",
|
|
611
|
+
desc: "Get 10 RPEGG kills"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
id: 37,
|
|
616
|
+
loc_ref: "chlg_kill_weaponType_Rpegg_twenty",
|
|
617
|
+
type: 0,
|
|
618
|
+
subType: 1,
|
|
619
|
+
period: 0,
|
|
620
|
+
goal: 20,
|
|
621
|
+
reward: 500,
|
|
622
|
+
conditional: null,
|
|
623
|
+
value: null,
|
|
624
|
+
valueTwo: "4",
|
|
625
|
+
tier: 2,
|
|
626
|
+
loc: {
|
|
627
|
+
title: "Bazooka Joe",
|
|
628
|
+
desc: "Get 20 RPEGG kills"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
id: 38,
|
|
633
|
+
loc_ref: "chlg_kill_weaponType_Rpegg_fifty",
|
|
634
|
+
type: 0,
|
|
635
|
+
subType: 1,
|
|
636
|
+
period: 0,
|
|
637
|
+
goal: 50,
|
|
638
|
+
reward: 1000,
|
|
639
|
+
conditional: null,
|
|
640
|
+
value: null,
|
|
641
|
+
valueTwo: "4",
|
|
642
|
+
tier: 3,
|
|
643
|
+
loc: {
|
|
644
|
+
title: "Master Eggsploder",
|
|
645
|
+
desc: "Get 50 RPEGG kills"
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
id: 39,
|
|
650
|
+
loc_ref: "chlg_kill_weaponType_Whipper_five",
|
|
651
|
+
type: 0,
|
|
652
|
+
subType: 1,
|
|
653
|
+
period: 0,
|
|
654
|
+
goal: 5,
|
|
655
|
+
reward: 100,
|
|
656
|
+
conditional: null,
|
|
657
|
+
value: null,
|
|
658
|
+
valueTwo: "5",
|
|
659
|
+
tier: 1,
|
|
660
|
+
loc: {
|
|
661
|
+
title: "Whip it Good",
|
|
662
|
+
desc: "Get 5 Whipper kills"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
id: 40,
|
|
667
|
+
loc_ref: "chlg_kill_weaponType_Whipper_ten",
|
|
668
|
+
type: 0,
|
|
669
|
+
subType: 1,
|
|
670
|
+
period: 0,
|
|
671
|
+
goal: 10,
|
|
672
|
+
reward: 200,
|
|
673
|
+
conditional: null,
|
|
674
|
+
value: null,
|
|
675
|
+
valueTwo: "5",
|
|
676
|
+
tier: 1,
|
|
677
|
+
loc: {
|
|
678
|
+
title: "Cool Whip",
|
|
679
|
+
desc: "Get 10 Whipper kills"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
id: 41,
|
|
684
|
+
loc_ref: "chlg_kill_weaponType_Whipper_twenty",
|
|
685
|
+
type: 0,
|
|
686
|
+
subType: 1,
|
|
687
|
+
period: 0,
|
|
688
|
+
goal: 20,
|
|
689
|
+
reward: 500,
|
|
690
|
+
conditional: null,
|
|
691
|
+
value: null,
|
|
692
|
+
valueTwo: "5",
|
|
693
|
+
tier: 2,
|
|
694
|
+
loc: {
|
|
695
|
+
title: "Whip it REAL Good",
|
|
696
|
+
desc: "Get 20 Whipper kills"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
id: 42,
|
|
701
|
+
loc_ref: "chlg_kill_weaponType_Whipper_fifty",
|
|
702
|
+
type: 0,
|
|
703
|
+
subType: 1,
|
|
704
|
+
period: 0,
|
|
705
|
+
goal: 50,
|
|
706
|
+
reward: 1000,
|
|
707
|
+
conditional: null,
|
|
708
|
+
value: null,
|
|
709
|
+
valueTwo: "5",
|
|
710
|
+
tier: 3,
|
|
711
|
+
loc: {
|
|
712
|
+
title: "Whip up a Storm",
|
|
713
|
+
desc: "Get 50 Whipper kills"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
id: 43,
|
|
718
|
+
loc_ref: "chlg_kill_weaponType_Eggk47_five",
|
|
719
|
+
type: 0,
|
|
720
|
+
subType: 1,
|
|
721
|
+
period: 0,
|
|
722
|
+
goal: 5,
|
|
723
|
+
reward: 100,
|
|
724
|
+
conditional: null,
|
|
725
|
+
value: null,
|
|
726
|
+
valueTwo: "0",
|
|
727
|
+
tier: 0,
|
|
728
|
+
loc: {
|
|
729
|
+
title: "Lock & Load",
|
|
730
|
+
desc: "Get 5 EggK-47 kills"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
id: 44,
|
|
735
|
+
loc_ref: "chlg_kill_weaponType_Eggk47_ten",
|
|
736
|
+
type: 0,
|
|
737
|
+
subType: 1,
|
|
738
|
+
period: 0,
|
|
739
|
+
goal: 10,
|
|
740
|
+
reward: 200,
|
|
741
|
+
conditional: null,
|
|
742
|
+
value: null,
|
|
743
|
+
valueTwo: "0",
|
|
744
|
+
tier: 1,
|
|
745
|
+
loc: {
|
|
746
|
+
title: "Almost a Dozen",
|
|
747
|
+
desc: "Get 10 EggK-47 kills"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
id: 45,
|
|
752
|
+
loc_ref: "chlg_kill_weaponType_Eggk47_twenty",
|
|
753
|
+
type: 0,
|
|
754
|
+
subType: 1,
|
|
755
|
+
period: 0,
|
|
756
|
+
goal: 20,
|
|
757
|
+
reward: 500,
|
|
758
|
+
conditional: null,
|
|
759
|
+
value: null,
|
|
760
|
+
valueTwo: "0",
|
|
761
|
+
tier: 2,
|
|
762
|
+
loc: {
|
|
763
|
+
title: "Spray Down",
|
|
764
|
+
desc: "Get 20 EggK-47 kills"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
id: 46,
|
|
769
|
+
loc_ref: "chlg_kill_weaponType_Eggk47_fifty",
|
|
770
|
+
type: 0,
|
|
771
|
+
subType: 1,
|
|
772
|
+
period: 0,
|
|
773
|
+
goal: 50,
|
|
774
|
+
reward: 1000,
|
|
775
|
+
conditional: null,
|
|
776
|
+
value: null,
|
|
777
|
+
valueTwo: "0",
|
|
778
|
+
tier: 3,
|
|
779
|
+
loc: {
|
|
780
|
+
title: "Eggk-47 Eggspert",
|
|
781
|
+
desc: "Get 50 EggK-47 kills"
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
id: 47,
|
|
786
|
+
loc_ref: "chlg_kill_weaponType_FreeRanger_five",
|
|
787
|
+
type: 0,
|
|
788
|
+
subType: 1,
|
|
789
|
+
period: 0,
|
|
790
|
+
goal: 5,
|
|
791
|
+
reward: 100,
|
|
792
|
+
conditional: null,
|
|
793
|
+
value: null,
|
|
794
|
+
valueTwo: "2",
|
|
795
|
+
tier: 1,
|
|
796
|
+
loc: {
|
|
797
|
+
title: "Poacher",
|
|
798
|
+
desc: "Get 5 Free Ranger kills"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
id: 48,
|
|
803
|
+
loc_ref: "chlg_kill_weaponType_FreeRanger_ten",
|
|
804
|
+
type: 0,
|
|
805
|
+
subType: 1,
|
|
806
|
+
period: 0,
|
|
807
|
+
goal: 10,
|
|
808
|
+
reward: 200,
|
|
809
|
+
conditional: null,
|
|
810
|
+
value: null,
|
|
811
|
+
valueTwo: "2",
|
|
812
|
+
tier: 1,
|
|
813
|
+
loc: {
|
|
814
|
+
title: "Bounty Hunter",
|
|
815
|
+
desc: "Get 10 Free Ranger kills"
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
id: 49,
|
|
820
|
+
loc_ref: "chlg_kill_weaponType_FreeRanger_twenty",
|
|
821
|
+
type: 0,
|
|
822
|
+
subType: 1,
|
|
823
|
+
period: 0,
|
|
824
|
+
goal: 20,
|
|
825
|
+
reward: 500,
|
|
826
|
+
conditional: null,
|
|
827
|
+
value: null,
|
|
828
|
+
valueTwo: "2",
|
|
829
|
+
tier: 2,
|
|
830
|
+
loc: {
|
|
831
|
+
title: "Hired Gun",
|
|
832
|
+
desc: "Get 20 Free Ranger kills"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
id: 50,
|
|
837
|
+
loc_ref: "chlg_kill_weaponType_FreeRanger_fifty",
|
|
838
|
+
type: 0,
|
|
839
|
+
subType: 1,
|
|
840
|
+
period: 0,
|
|
841
|
+
goal: 50,
|
|
842
|
+
reward: 1000,
|
|
843
|
+
conditional: null,
|
|
844
|
+
value: null,
|
|
845
|
+
valueTwo: "2",
|
|
846
|
+
tier: 3,
|
|
847
|
+
loc: {
|
|
848
|
+
title: "Big-Game Hunter",
|
|
849
|
+
desc: "Get 50 Free Ranger kills"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
id: 51,
|
|
854
|
+
loc_ref: "chlg_kill_weaponType_Crackshot_five",
|
|
855
|
+
type: 0,
|
|
856
|
+
subType: 1,
|
|
857
|
+
period: 0,
|
|
858
|
+
goal: 5,
|
|
859
|
+
reward: 100,
|
|
860
|
+
conditional: null,
|
|
861
|
+
value: null,
|
|
862
|
+
valueTwo: "6",
|
|
863
|
+
tier: 1,
|
|
864
|
+
loc: {
|
|
865
|
+
title: "Sniper",
|
|
866
|
+
desc: "Get 5 Crackshot kills"
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
id: 52,
|
|
871
|
+
loc_ref: "chlg_kill_weaponType_Crackshot_ten",
|
|
872
|
+
type: 0,
|
|
873
|
+
subType: 1,
|
|
874
|
+
period: 0,
|
|
875
|
+
goal: 10,
|
|
876
|
+
reward: 200,
|
|
877
|
+
conditional: null,
|
|
878
|
+
value: null,
|
|
879
|
+
valueTwo: "6",
|
|
880
|
+
tier: 1,
|
|
881
|
+
loc: {
|
|
882
|
+
title: "Sharpshooter",
|
|
883
|
+
desc: "Get 10 Crackshot kills"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
id: 53,
|
|
888
|
+
loc_ref: "chlg_kill_weaponType_Crackshot_twenty",
|
|
889
|
+
type: 0,
|
|
890
|
+
subType: 1,
|
|
891
|
+
period: 0,
|
|
892
|
+
goal: 20,
|
|
893
|
+
reward: 500,
|
|
894
|
+
conditional: null,
|
|
895
|
+
value: null,
|
|
896
|
+
valueTwo: "6",
|
|
897
|
+
tier: 2,
|
|
898
|
+
loc: {
|
|
899
|
+
title: "Marksman",
|
|
900
|
+
desc: "Get 20 Crackshot kills"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
id: 54,
|
|
905
|
+
loc_ref: "chlg_kill_weaponType_Crackshot_fifty",
|
|
906
|
+
type: 0,
|
|
907
|
+
subType: 1,
|
|
908
|
+
period: 0,
|
|
909
|
+
goal: 50,
|
|
910
|
+
reward: 1000,
|
|
911
|
+
conditional: null,
|
|
912
|
+
value: null,
|
|
913
|
+
valueTwo: "6",
|
|
914
|
+
tier: 3,
|
|
915
|
+
loc: {
|
|
916
|
+
title: "Cracked",
|
|
917
|
+
desc: "Get 50 Crackshot kills"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
id: 55,
|
|
922
|
+
loc_ref: "chlg_kill_weaponType_TriHard_five",
|
|
923
|
+
type: 0,
|
|
924
|
+
subType: 1,
|
|
925
|
+
period: 0,
|
|
926
|
+
goal: 5,
|
|
927
|
+
reward: 100,
|
|
928
|
+
conditional: null,
|
|
929
|
+
value: null,
|
|
930
|
+
valueTwo: "7",
|
|
931
|
+
tier: 1,
|
|
932
|
+
loc: {
|
|
933
|
+
title: "Tri-Hard",
|
|
934
|
+
desc: "Get 5 Tri-Hard kills"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
id: 56,
|
|
939
|
+
loc_ref: "chlg_kill_weaponType_TriHard_ten",
|
|
940
|
+
type: 0,
|
|
941
|
+
subType: 1,
|
|
942
|
+
period: 0,
|
|
943
|
+
goal: 10,
|
|
944
|
+
reward: 200,
|
|
945
|
+
conditional: null,
|
|
946
|
+
value: null,
|
|
947
|
+
valueTwo: "7",
|
|
948
|
+
tier: 1,
|
|
949
|
+
loc: {
|
|
950
|
+
title: "Tri-Harder",
|
|
951
|
+
desc: "Get 10 Tri-Hard kills"
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
id: 57,
|
|
956
|
+
loc_ref: "chlg_kill_weaponType_TriHard_twenty",
|
|
957
|
+
type: 0,
|
|
958
|
+
subType: 1,
|
|
959
|
+
period: 0,
|
|
960
|
+
goal: 20,
|
|
961
|
+
reward: 500,
|
|
962
|
+
conditional: null,
|
|
963
|
+
value: null,
|
|
964
|
+
valueTwo: "7",
|
|
965
|
+
tier: 2,
|
|
966
|
+
loc: {
|
|
967
|
+
title: "Tri-Even-Harder",
|
|
968
|
+
desc: "Get 20 Tri-Hard kills"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
id: 58,
|
|
973
|
+
loc_ref: "chlg_kill_weaponType_TriHard_fifty",
|
|
974
|
+
type: 0,
|
|
975
|
+
subType: 1,
|
|
976
|
+
period: 0,
|
|
977
|
+
goal: 50,
|
|
978
|
+
reward: 1000,
|
|
979
|
+
conditional: null,
|
|
980
|
+
value: null,
|
|
981
|
+
valueTwo: "7",
|
|
982
|
+
tier: 3,
|
|
983
|
+
loc: {
|
|
984
|
+
title: "Tri-Hardest",
|
|
985
|
+
desc: "Get 50 Tri-Hard kills"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
id: 59,
|
|
990
|
+
loc_ref: "chlg_kill_weaponType_Melee_five",
|
|
991
|
+
type: 0,
|
|
992
|
+
subType: 1,
|
|
993
|
+
period: 0,
|
|
994
|
+
goal: 5,
|
|
995
|
+
reward: 200,
|
|
996
|
+
conditional: null,
|
|
997
|
+
value: null,
|
|
998
|
+
valueTwo: "9",
|
|
999
|
+
tier: 2,
|
|
1000
|
+
loc: {
|
|
1001
|
+
title: "Whisky Business",
|
|
1002
|
+
desc: "Get 5 Melee kills"
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
id: 60,
|
|
1007
|
+
loc_ref: "chlg_kill_weaponType_Melee_ten",
|
|
1008
|
+
type: 0,
|
|
1009
|
+
subType: 1,
|
|
1010
|
+
period: 0,
|
|
1011
|
+
goal: 10,
|
|
1012
|
+
reward: 500,
|
|
1013
|
+
conditional: null,
|
|
1014
|
+
value: null,
|
|
1015
|
+
valueTwo: "9",
|
|
1016
|
+
tier: 2,
|
|
1017
|
+
loc: {
|
|
1018
|
+
title: "Slap the Bass",
|
|
1019
|
+
desc: "Get 10 Melee kills"
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
id: 61,
|
|
1024
|
+
loc_ref: "chlg_kill_weaponType_Melee_twenty",
|
|
1025
|
+
type: 0,
|
|
1026
|
+
subType: 1,
|
|
1027
|
+
period: 0,
|
|
1028
|
+
goal: 20,
|
|
1029
|
+
reward: 1000,
|
|
1030
|
+
conditional: null,
|
|
1031
|
+
value: null,
|
|
1032
|
+
valueTwo: "9",
|
|
1033
|
+
tier: 3,
|
|
1034
|
+
loc: {
|
|
1035
|
+
title: "Whack & Slash",
|
|
1036
|
+
desc: "Get 20 Melee kills"
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
id: 62,
|
|
1041
|
+
loc_ref: "chlg_kill_weaponType_Melee_fifty",
|
|
1042
|
+
type: 0,
|
|
1043
|
+
subType: 1,
|
|
1044
|
+
period: 0,
|
|
1045
|
+
goal: 50,
|
|
1046
|
+
reward: 2500,
|
|
1047
|
+
conditional: null,
|
|
1048
|
+
value: null,
|
|
1049
|
+
valueTwo: "9",
|
|
1050
|
+
tier: 3,
|
|
1051
|
+
loc: {
|
|
1052
|
+
title: "Melee Master",
|
|
1053
|
+
desc: "Get 50 Melee kills"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
id: 63,
|
|
1058
|
+
loc_ref: "chlg_damage_five_hundred",
|
|
1059
|
+
type: 1,
|
|
1060
|
+
subType: null,
|
|
1061
|
+
period: 0,
|
|
1062
|
+
goal: 500,
|
|
1063
|
+
reward: 100,
|
|
1064
|
+
conditional: null,
|
|
1065
|
+
value: null,
|
|
1066
|
+
valueTwo: null,
|
|
1067
|
+
tier: 0,
|
|
1068
|
+
loc: {
|
|
1069
|
+
title: "Shattered Shells",
|
|
1070
|
+
desc: "Deal 500 damage"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
id: 64,
|
|
1075
|
+
loc_ref: "chlg_damage_one_thousand",
|
|
1076
|
+
type: 1,
|
|
1077
|
+
subType: null,
|
|
1078
|
+
period: 0,
|
|
1079
|
+
goal: 1000,
|
|
1080
|
+
reward: 100,
|
|
1081
|
+
conditional: null,
|
|
1082
|
+
value: null,
|
|
1083
|
+
valueTwo: null,
|
|
1084
|
+
tier: 1,
|
|
1085
|
+
loc: {
|
|
1086
|
+
title: "Decimator",
|
|
1087
|
+
desc: "Deal 1000 damage"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
id: 65,
|
|
1092
|
+
loc_ref: "chlg_damage_twenty_five_hundred",
|
|
1093
|
+
type: 1,
|
|
1094
|
+
subType: null,
|
|
1095
|
+
period: 0,
|
|
1096
|
+
goal: 2500,
|
|
1097
|
+
reward: 200,
|
|
1098
|
+
conditional: null,
|
|
1099
|
+
value: null,
|
|
1100
|
+
valueTwo: null,
|
|
1101
|
+
tier: 1,
|
|
1102
|
+
loc: {
|
|
1103
|
+
title: "Tormentor",
|
|
1104
|
+
desc: "Deal 2500 damage"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
id: 66,
|
|
1109
|
+
loc_ref: "chlg_damage_five_thousand",
|
|
1110
|
+
type: 1,
|
|
1111
|
+
subType: null,
|
|
1112
|
+
period: 0,
|
|
1113
|
+
goal: 5000,
|
|
1114
|
+
reward: 500,
|
|
1115
|
+
conditional: null,
|
|
1116
|
+
value: null,
|
|
1117
|
+
valueTwo: null,
|
|
1118
|
+
tier: 2,
|
|
1119
|
+
loc: {
|
|
1120
|
+
title: "Devastator",
|
|
1121
|
+
desc: "Deal 5000 damage"
|
|
1122
|
+
}
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
id: 67,
|
|
1126
|
+
loc_ref: "chlg_damage_ten_thousand",
|
|
1127
|
+
type: 1,
|
|
1128
|
+
subType: null,
|
|
1129
|
+
period: 0,
|
|
1130
|
+
goal: 1e4,
|
|
1131
|
+
reward: 1000,
|
|
1132
|
+
conditional: null,
|
|
1133
|
+
value: null,
|
|
1134
|
+
valueTwo: null,
|
|
1135
|
+
tier: 3,
|
|
1136
|
+
loc: {
|
|
1137
|
+
title: "Boomsauce",
|
|
1138
|
+
desc: "Deal 10000 damage"
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
id: 68,
|
|
1143
|
+
loc_ref: "chlg_damage_twenty_five_thousand",
|
|
1144
|
+
type: 1,
|
|
1145
|
+
subType: null,
|
|
1146
|
+
period: 0,
|
|
1147
|
+
goal: 25000,
|
|
1148
|
+
reward: 2500,
|
|
1149
|
+
conditional: null,
|
|
1150
|
+
value: null,
|
|
1151
|
+
valueTwo: null,
|
|
1152
|
+
tier: 3,
|
|
1153
|
+
loc: {
|
|
1154
|
+
title: "Maximum Damage",
|
|
1155
|
+
desc: "Deal 25000 damage"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
id: 69,
|
|
1160
|
+
loc_ref: "chlg_deaths_ten",
|
|
1161
|
+
type: 2,
|
|
1162
|
+
subType: null,
|
|
1163
|
+
period: 0,
|
|
1164
|
+
goal: 10,
|
|
1165
|
+
reward: 100,
|
|
1166
|
+
conditional: null,
|
|
1167
|
+
value: null,
|
|
1168
|
+
valueTwo: null,
|
|
1169
|
+
tier: 1,
|
|
1170
|
+
loc: {
|
|
1171
|
+
title: "Cracked",
|
|
1172
|
+
desc: "Die 10 times"
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
id: 70,
|
|
1177
|
+
loc_ref: "chlg_deaths_twenty",
|
|
1178
|
+
type: 2,
|
|
1179
|
+
subType: null,
|
|
1180
|
+
period: 0,
|
|
1181
|
+
goal: 20,
|
|
1182
|
+
reward: 200,
|
|
1183
|
+
conditional: null,
|
|
1184
|
+
value: null,
|
|
1185
|
+
valueTwo: null,
|
|
1186
|
+
tier: 1,
|
|
1187
|
+
loc: {
|
|
1188
|
+
title: "Fried",
|
|
1189
|
+
desc: "Die 20 times"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
id: 71,
|
|
1194
|
+
loc_ref: "chlg_deaths_fifty",
|
|
1195
|
+
type: 2,
|
|
1196
|
+
subType: null,
|
|
1197
|
+
period: 0,
|
|
1198
|
+
goal: 50,
|
|
1199
|
+
reward: 500,
|
|
1200
|
+
conditional: null,
|
|
1201
|
+
value: null,
|
|
1202
|
+
valueTwo: null,
|
|
1203
|
+
tier: 2,
|
|
1204
|
+
loc: {
|
|
1205
|
+
title: "Death Wish",
|
|
1206
|
+
desc: "Die 50 times"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
id: 72,
|
|
1211
|
+
loc_ref: "chlg_movement_distance_five_hunderd",
|
|
1212
|
+
type: 3,
|
|
1213
|
+
subType: 3,
|
|
1214
|
+
period: 0,
|
|
1215
|
+
goal: 500,
|
|
1216
|
+
reward: 100,
|
|
1217
|
+
conditional: null,
|
|
1218
|
+
value: null,
|
|
1219
|
+
valueTwo: null,
|
|
1220
|
+
tier: 0,
|
|
1221
|
+
loc: {
|
|
1222
|
+
title: "Runny Egg",
|
|
1223
|
+
desc: "Travel 500m"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
id: 73,
|
|
1228
|
+
loc_ref: "chlg_movement_distance_one_thousand",
|
|
1229
|
+
type: 3,
|
|
1230
|
+
subType: 3,
|
|
1231
|
+
period: 0,
|
|
1232
|
+
goal: 1000,
|
|
1233
|
+
reward: 500,
|
|
1234
|
+
conditional: null,
|
|
1235
|
+
value: null,
|
|
1236
|
+
valueTwo: null,
|
|
1237
|
+
tier: 1,
|
|
1238
|
+
loc: {
|
|
1239
|
+
title: "Poultry in Motion",
|
|
1240
|
+
desc: "Travel 1000m"
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
id: 74,
|
|
1245
|
+
loc_ref: "chlg_movement_distance_five_thousand",
|
|
1246
|
+
type: 3,
|
|
1247
|
+
subType: 3,
|
|
1248
|
+
period: 0,
|
|
1249
|
+
goal: 5000,
|
|
1250
|
+
reward: 2500,
|
|
1251
|
+
conditional: null,
|
|
1252
|
+
value: null,
|
|
1253
|
+
valueTwo: null,
|
|
1254
|
+
tier: 2,
|
|
1255
|
+
loc: {
|
|
1256
|
+
title: "Gaming Marathon",
|
|
1257
|
+
desc: "Travel 5000m"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
id: 75,
|
|
1262
|
+
loc_ref: "chlg_movement_jump_one_hundred",
|
|
1263
|
+
type: 3,
|
|
1264
|
+
subType: 4,
|
|
1265
|
+
period: 0,
|
|
1266
|
+
goal: 100,
|
|
1267
|
+
reward: 100,
|
|
1268
|
+
conditional: null,
|
|
1269
|
+
value: null,
|
|
1270
|
+
valueTwo: null,
|
|
1271
|
+
tier: 1,
|
|
1272
|
+
loc: {
|
|
1273
|
+
title: "Jumpman",
|
|
1274
|
+
desc: "Jump 100 times"
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
id: 76,
|
|
1279
|
+
loc_ref: "chlg_movement_jump_five_hundred",
|
|
1280
|
+
type: 3,
|
|
1281
|
+
subType: 4,
|
|
1282
|
+
period: 0,
|
|
1283
|
+
goal: 500,
|
|
1284
|
+
reward: 500,
|
|
1285
|
+
conditional: null,
|
|
1286
|
+
value: null,
|
|
1287
|
+
valueTwo: null,
|
|
1288
|
+
tier: 1,
|
|
1289
|
+
loc: {
|
|
1290
|
+
title: "Bouncing Bomb",
|
|
1291
|
+
desc: "Jump 500 times"
|
|
1292
|
+
}
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
id: 77,
|
|
1296
|
+
loc_ref: "chlg_kill_jump_one",
|
|
1297
|
+
type: 0,
|
|
1298
|
+
subType: 4,
|
|
1299
|
+
period: 0,
|
|
1300
|
+
goal: 1,
|
|
1301
|
+
reward: 200,
|
|
1302
|
+
conditional: null,
|
|
1303
|
+
value: null,
|
|
1304
|
+
valueTwo: null,
|
|
1305
|
+
tier: 2,
|
|
1306
|
+
loc: {
|
|
1307
|
+
title: "Aerial Assault",
|
|
1308
|
+
desc: "Get a kill while jumping"
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
id: 78,
|
|
1313
|
+
loc_ref: "chlg_kill_jump_five",
|
|
1314
|
+
type: 0,
|
|
1315
|
+
subType: 4,
|
|
1316
|
+
period: 0,
|
|
1317
|
+
goal: 5,
|
|
1318
|
+
reward: 1000,
|
|
1319
|
+
conditional: null,
|
|
1320
|
+
value: null,
|
|
1321
|
+
valueTwo: null,
|
|
1322
|
+
tier: 3,
|
|
1323
|
+
loc: {
|
|
1324
|
+
title: "Do a Barrel Roll",
|
|
1325
|
+
desc: "Get 5 kills while airborne"
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
id: 79,
|
|
1330
|
+
loc_ref: "chlg_kill_jump_victim_jump",
|
|
1331
|
+
type: 0,
|
|
1332
|
+
subType: 4,
|
|
1333
|
+
period: 0,
|
|
1334
|
+
goal: 1,
|
|
1335
|
+
reward: 2500,
|
|
1336
|
+
conditional: 4,
|
|
1337
|
+
value: null,
|
|
1338
|
+
valueTwo: null,
|
|
1339
|
+
tier: 3,
|
|
1340
|
+
loc: {
|
|
1341
|
+
title: "Aerial Acrobatics",
|
|
1342
|
+
desc: "Kill an egg while both airborne"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
id: 80,
|
|
1347
|
+
loc_ref: "chlg_movement_collect_ammo_ten",
|
|
1348
|
+
type: 4,
|
|
1349
|
+
subType: 18,
|
|
1350
|
+
period: 0,
|
|
1351
|
+
goal: 10,
|
|
1352
|
+
reward: 100,
|
|
1353
|
+
conditional: 16,
|
|
1354
|
+
value: "0",
|
|
1355
|
+
valueTwo: null,
|
|
1356
|
+
tier: 1,
|
|
1357
|
+
loc: {
|
|
1358
|
+
title: "We Need Supplies!",
|
|
1359
|
+
desc: "Collect 10 ammo boxes"
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
id: 81,
|
|
1364
|
+
loc_ref: "chlg_movement_collect_ammo_twenty_five",
|
|
1365
|
+
type: 4,
|
|
1366
|
+
subType: 18,
|
|
1367
|
+
period: 0,
|
|
1368
|
+
goal: 25,
|
|
1369
|
+
reward: 500,
|
|
1370
|
+
conditional: 16,
|
|
1371
|
+
value: "0",
|
|
1372
|
+
valueTwo: null,
|
|
1373
|
+
tier: 2,
|
|
1374
|
+
loc: {
|
|
1375
|
+
title: "Quartermaster",
|
|
1376
|
+
desc: "Collect 25 ammo boxes"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
id: 82,
|
|
1381
|
+
loc_ref: "chlg_movement_collect_ammo_fifty",
|
|
1382
|
+
type: 4,
|
|
1383
|
+
subType: 18,
|
|
1384
|
+
period: 0,
|
|
1385
|
+
goal: 50,
|
|
1386
|
+
reward: 1000,
|
|
1387
|
+
conditional: 16,
|
|
1388
|
+
value: "0",
|
|
1389
|
+
valueTwo: null,
|
|
1390
|
+
tier: 3,
|
|
1391
|
+
loc: {
|
|
1392
|
+
title: "Locked & Loaded",
|
|
1393
|
+
desc: "Collect 50 ammo boxes"
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
id: 83,
|
|
1398
|
+
loc_ref: "chlg_movement_collect_grenade_ten",
|
|
1399
|
+
type: 4,
|
|
1400
|
+
subType: 18,
|
|
1401
|
+
period: 0,
|
|
1402
|
+
goal: 10,
|
|
1403
|
+
reward: 100,
|
|
1404
|
+
conditional: 17,
|
|
1405
|
+
value: "1",
|
|
1406
|
+
valueTwo: null,
|
|
1407
|
+
tier: 1,
|
|
1408
|
+
loc: {
|
|
1409
|
+
title: "Explosives expert",
|
|
1410
|
+
desc: "Collect 10 grenades"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
id: 84,
|
|
1415
|
+
loc_ref: "chlg_movement_collect_grenade_twenty_five",
|
|
1416
|
+
type: 4,
|
|
1417
|
+
subType: 18,
|
|
1418
|
+
period: 0,
|
|
1419
|
+
goal: 25,
|
|
1420
|
+
reward: 500,
|
|
1421
|
+
conditional: 17,
|
|
1422
|
+
value: "1",
|
|
1423
|
+
valueTwo: null,
|
|
1424
|
+
tier: 2,
|
|
1425
|
+
loc: {
|
|
1426
|
+
title: "Bombardier",
|
|
1427
|
+
desc: "Collect 25 grenades"
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
id: 85,
|
|
1432
|
+
loc_ref: "chlg_movement_collect_grenade_fifty",
|
|
1433
|
+
type: 4,
|
|
1434
|
+
subType: 18,
|
|
1435
|
+
period: 0,
|
|
1436
|
+
goal: 50,
|
|
1437
|
+
reward: 1000,
|
|
1438
|
+
conditional: 17,
|
|
1439
|
+
value: "1",
|
|
1440
|
+
valueTwo: null,
|
|
1441
|
+
tier: 3,
|
|
1442
|
+
loc: {
|
|
1443
|
+
title: "Explosive Temper",
|
|
1444
|
+
desc: "Collect 50 grenades"
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
{
|
|
1448
|
+
id: 86,
|
|
1449
|
+
loc_ref: "chlg_timed_timeAlive_thirty",
|
|
1450
|
+
type: 5,
|
|
1451
|
+
subType: 7,
|
|
1452
|
+
period: 0,
|
|
1453
|
+
goal: 1,
|
|
1454
|
+
reward: 100,
|
|
1455
|
+
conditional: 7,
|
|
1456
|
+
value: "30",
|
|
1457
|
+
valueTwo: null,
|
|
1458
|
+
tier: 1,
|
|
1459
|
+
loc: {
|
|
1460
|
+
title: "Running Scared",
|
|
1461
|
+
desc: "Stay alive for 30 sec"
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
id: 87,
|
|
1466
|
+
loc_ref: "chlg_timed_timeAlive_sixty",
|
|
1467
|
+
type: 5,
|
|
1468
|
+
subType: 7,
|
|
1469
|
+
period: 0,
|
|
1470
|
+
goal: 1,
|
|
1471
|
+
reward: 200,
|
|
1472
|
+
conditional: 7,
|
|
1473
|
+
value: "60",
|
|
1474
|
+
valueTwo: null,
|
|
1475
|
+
tier: 2,
|
|
1476
|
+
loc: {
|
|
1477
|
+
title: "Hard to Beat",
|
|
1478
|
+
desc: "Stay alive for 1 min"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
id: 88,
|
|
1483
|
+
loc_ref: "chlg_timed_timeAlive_three_hundred",
|
|
1484
|
+
type: 5,
|
|
1485
|
+
subType: 7,
|
|
1486
|
+
period: 0,
|
|
1487
|
+
goal: 1,
|
|
1488
|
+
reward: 2500,
|
|
1489
|
+
conditional: 7,
|
|
1490
|
+
value: "300",
|
|
1491
|
+
valueTwo: null,
|
|
1492
|
+
tier: 3,
|
|
1493
|
+
loc: {
|
|
1494
|
+
title: "Happily Ever After",
|
|
1495
|
+
desc: "Stay alive for 5 min"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
id: 90,
|
|
1500
|
+
loc_ref: "chlg_timed_timePlayed_three_hundred",
|
|
1501
|
+
type: 5,
|
|
1502
|
+
subType: 6,
|
|
1503
|
+
period: 0,
|
|
1504
|
+
goal: 300,
|
|
1505
|
+
reward: 200,
|
|
1506
|
+
conditional: 6,
|
|
1507
|
+
value: "300",
|
|
1508
|
+
valueTwo: null,
|
|
1509
|
+
tier: 0,
|
|
1510
|
+
loc: {
|
|
1511
|
+
title: "Shell Shocked!",
|
|
1512
|
+
desc: "Play for 5 min"
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
id: 91,
|
|
1517
|
+
loc_ref: "chlg_timed_timePlayed_nine_hundred",
|
|
1518
|
+
type: 5,
|
|
1519
|
+
subType: 6,
|
|
1520
|
+
period: 0,
|
|
1521
|
+
goal: 900,
|
|
1522
|
+
reward: 500,
|
|
1523
|
+
conditional: 6,
|
|
1524
|
+
value: "900",
|
|
1525
|
+
valueTwo: null,
|
|
1526
|
+
tier: 1,
|
|
1527
|
+
loc: {
|
|
1528
|
+
title: "Not so Noob",
|
|
1529
|
+
desc: "Play for 15 min"
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
id: 92,
|
|
1534
|
+
loc_ref: "chlg_timed_timePlayed_eighteen_hundred",
|
|
1535
|
+
type: 5,
|
|
1536
|
+
subType: 6,
|
|
1537
|
+
period: 0,
|
|
1538
|
+
goal: 1800,
|
|
1539
|
+
reward: 1000,
|
|
1540
|
+
conditional: 6,
|
|
1541
|
+
value: "1800",
|
|
1542
|
+
valueTwo: null,
|
|
1543
|
+
tier: 2,
|
|
1544
|
+
loc: {
|
|
1545
|
+
title: "Oval Office",
|
|
1546
|
+
desc: "Play for 30 min"
|
|
1547
|
+
}
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
id: 93,
|
|
1551
|
+
loc_ref: "chlg_timed_timePlayed_thirty_six_hundred",
|
|
1552
|
+
type: 5,
|
|
1553
|
+
subType: 6,
|
|
1554
|
+
period: 0,
|
|
1555
|
+
goal: 3600,
|
|
1556
|
+
reward: 2500,
|
|
1557
|
+
conditional: 6,
|
|
1558
|
+
value: "3600",
|
|
1559
|
+
valueTwo: null,
|
|
1560
|
+
tier: 3,
|
|
1561
|
+
loc: {
|
|
1562
|
+
title: "On That Grind",
|
|
1563
|
+
desc: "Play for 60 min"
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
id: 94,
|
|
1568
|
+
loc_ref: "chlg_kotc_capturing_timeAlive_twenty",
|
|
1569
|
+
type: 6,
|
|
1570
|
+
subType: 20,
|
|
1571
|
+
period: 0,
|
|
1572
|
+
goal: 1,
|
|
1573
|
+
reward: 100,
|
|
1574
|
+
conditional: 7,
|
|
1575
|
+
value: "10",
|
|
1576
|
+
valueTwo: null,
|
|
1577
|
+
tier: 1,
|
|
1578
|
+
loc: {
|
|
1579
|
+
title: "Hold the Fort",
|
|
1580
|
+
desc: "Stand on Coop for 10 sec"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
id: 95,
|
|
1585
|
+
loc_ref: "chlg_kotc_capture",
|
|
1586
|
+
type: 6,
|
|
1587
|
+
subType: 21,
|
|
1588
|
+
period: 0,
|
|
1589
|
+
goal: 1,
|
|
1590
|
+
reward: 100,
|
|
1591
|
+
conditional: null,
|
|
1592
|
+
value: null,
|
|
1593
|
+
valueTwo: null,
|
|
1594
|
+
tier: 1,
|
|
1595
|
+
loc: {
|
|
1596
|
+
title: "Coop King",
|
|
1597
|
+
desc: "Capture a Coop"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
id: 96,
|
|
1602
|
+
loc_ref: "chlg_kotc_win_one",
|
|
1603
|
+
type: 6,
|
|
1604
|
+
subType: 23,
|
|
1605
|
+
period: 0,
|
|
1606
|
+
goal: 1,
|
|
1607
|
+
reward: 200,
|
|
1608
|
+
conditional: null,
|
|
1609
|
+
value: null,
|
|
1610
|
+
valueTwo: null,
|
|
1611
|
+
tier: 1,
|
|
1612
|
+
loc: {
|
|
1613
|
+
title: "King of the Coop",
|
|
1614
|
+
desc: "Win a KotC match"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
id: 97,
|
|
1619
|
+
loc_ref: "chlg_kotc_win_three",
|
|
1620
|
+
type: 6,
|
|
1621
|
+
subType: 23,
|
|
1622
|
+
period: 0,
|
|
1623
|
+
goal: 3,
|
|
1624
|
+
reward: 500,
|
|
1625
|
+
conditional: null,
|
|
1626
|
+
value: null,
|
|
1627
|
+
valueTwo: null,
|
|
1628
|
+
tier: 2,
|
|
1629
|
+
loc: {
|
|
1630
|
+
title: "Team Sports",
|
|
1631
|
+
desc: "Win 3 KotC matches"
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
id: 98,
|
|
1636
|
+
loc_ref: "chlg_kotc_win_five",
|
|
1637
|
+
type: 6,
|
|
1638
|
+
subType: 23,
|
|
1639
|
+
period: 0,
|
|
1640
|
+
goal: 5,
|
|
1641
|
+
reward: 1000,
|
|
1642
|
+
conditional: null,
|
|
1643
|
+
value: null,
|
|
1644
|
+
valueTwo: null,
|
|
1645
|
+
tier: 3,
|
|
1646
|
+
loc: {
|
|
1647
|
+
title: "Rule the Roost",
|
|
1648
|
+
desc: "Win 5 KotC matches"
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
id: 99,
|
|
1653
|
+
loc_ref: "chlg_kotc_win_ten",
|
|
1654
|
+
type: 6,
|
|
1655
|
+
subType: 23,
|
|
1656
|
+
period: 0,
|
|
1657
|
+
goal: 10,
|
|
1658
|
+
reward: 2500,
|
|
1659
|
+
conditional: null,
|
|
1660
|
+
value: null,
|
|
1661
|
+
valueTwo: null,
|
|
1662
|
+
tier: 3,
|
|
1663
|
+
loc: {
|
|
1664
|
+
title: "Coop Commander",
|
|
1665
|
+
desc: "Win 10 KotC matches"
|
|
1666
|
+
}
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
id: 100,
|
|
1670
|
+
loc_ref: "chlg_kotc_coop_kill",
|
|
1671
|
+
type: 6,
|
|
1672
|
+
subType: 20,
|
|
1673
|
+
period: 0,
|
|
1674
|
+
goal: 1,
|
|
1675
|
+
reward: 200,
|
|
1676
|
+
conditional: 10,
|
|
1677
|
+
value: null,
|
|
1678
|
+
valueTwo: null,
|
|
1679
|
+
tier: 1,
|
|
1680
|
+
loc: {
|
|
1681
|
+
title: "Defender",
|
|
1682
|
+
desc: "Kill an egg from the Coop"
|
|
1683
|
+
}
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
id: 101,
|
|
1687
|
+
loc_ref: "chlg_kotc_coop_kill_victim_capturing",
|
|
1688
|
+
type: 6,
|
|
1689
|
+
subType: 20,
|
|
1690
|
+
period: 0,
|
|
1691
|
+
goal: 1,
|
|
1692
|
+
reward: 200,
|
|
1693
|
+
conditional: 10,
|
|
1694
|
+
value: "18",
|
|
1695
|
+
valueTwo: null,
|
|
1696
|
+
tier: 1,
|
|
1697
|
+
loc: {
|
|
1698
|
+
title: "Offender",
|
|
1699
|
+
desc: "Kill an egg on a Coop"
|
|
1700
|
+
}
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
id: 102,
|
|
1704
|
+
loc_ref: "chlg_cts_pick_up",
|
|
1705
|
+
type: 7,
|
|
1706
|
+
subType: 21,
|
|
1707
|
+
period: 0,
|
|
1708
|
+
goal: 1,
|
|
1709
|
+
reward: 200,
|
|
1710
|
+
conditional: null,
|
|
1711
|
+
value: null,
|
|
1712
|
+
valueTwo: null,
|
|
1713
|
+
tier: 1,
|
|
1714
|
+
loc: {
|
|
1715
|
+
title: "Fry Cook",
|
|
1716
|
+
desc: "CTS: Pick up the Spatula"
|
|
1717
|
+
}
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
id: 103,
|
|
1721
|
+
loc_ref: "chlg_cts_capture_timeAlive_thirty",
|
|
1722
|
+
type: 7,
|
|
1723
|
+
subType: 21,
|
|
1724
|
+
period: 0,
|
|
1725
|
+
goal: 1,
|
|
1726
|
+
reward: 500,
|
|
1727
|
+
conditional: 7,
|
|
1728
|
+
value: "30",
|
|
1729
|
+
valueTwo: null,
|
|
1730
|
+
tier: 2,
|
|
1731
|
+
loc: {
|
|
1732
|
+
title: "Keepaway",
|
|
1733
|
+
desc: "CTS: Hold the Spatula for 30s"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
id: 104,
|
|
1738
|
+
loc_ref: "chlg_cts_win_ten",
|
|
1739
|
+
type: 7,
|
|
1740
|
+
subType: 23,
|
|
1741
|
+
period: 0,
|
|
1742
|
+
goal: 20,
|
|
1743
|
+
reward: 1000,
|
|
1744
|
+
conditional: null,
|
|
1745
|
+
value: null,
|
|
1746
|
+
valueTwo: null,
|
|
1747
|
+
tier: 1,
|
|
1748
|
+
loc: {
|
|
1749
|
+
title: "Sunny Side Up!",
|
|
1750
|
+
desc: "CTS: Gain 20+ kills holding the spatula"
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
id: 105,
|
|
1755
|
+
loc_ref: "chlg_cts_win_twenty_five",
|
|
1756
|
+
type: 7,
|
|
1757
|
+
subType: 23,
|
|
1758
|
+
period: 0,
|
|
1759
|
+
goal: 50,
|
|
1760
|
+
reward: 4000,
|
|
1761
|
+
conditional: null,
|
|
1762
|
+
value: null,
|
|
1763
|
+
valueTwo: null,
|
|
1764
|
+
tier: 2,
|
|
1765
|
+
loc: {
|
|
1766
|
+
title: "Flippin 'em",
|
|
1767
|
+
desc: "CTS: Gain 50+ kills holding the spatula"
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
id: 106,
|
|
1772
|
+
loc_ref: "chlg_cts_win_fifty",
|
|
1773
|
+
type: 7,
|
|
1774
|
+
subType: 23,
|
|
1775
|
+
period: 0,
|
|
1776
|
+
goal: 100,
|
|
1777
|
+
reward: 1e4,
|
|
1778
|
+
conditional: null,
|
|
1779
|
+
value: null,
|
|
1780
|
+
valueTwo: null,
|
|
1781
|
+
tier: 3,
|
|
1782
|
+
loc: {
|
|
1783
|
+
title: "Makin' Bacon",
|
|
1784
|
+
desc: "CTS: Gain 100+ kills holding the spatula"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
id: 107,
|
|
1789
|
+
loc_ref: "chlg_cts_kills_victim_spatula",
|
|
1790
|
+
type: 7,
|
|
1791
|
+
subType: 10,
|
|
1792
|
+
period: 0,
|
|
1793
|
+
goal: 1,
|
|
1794
|
+
reward: 200,
|
|
1795
|
+
conditional: null,
|
|
1796
|
+
value: null,
|
|
1797
|
+
valueTwo: null,
|
|
1798
|
+
tier: 2,
|
|
1799
|
+
loc: {
|
|
1800
|
+
title: "Kill the Cook",
|
|
1801
|
+
desc: "CTS: Kill the Spatula holder"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
id: 108,
|
|
1806
|
+
loc_ref: "chlg_cts_kills_killstreak_five",
|
|
1807
|
+
type: 7,
|
|
1808
|
+
subType: 10,
|
|
1809
|
+
period: 0,
|
|
1810
|
+
goal: 1,
|
|
1811
|
+
reward: 500,
|
|
1812
|
+
conditional: 0,
|
|
1813
|
+
value: "5",
|
|
1814
|
+
valueTwo: null,
|
|
1815
|
+
tier: 3,
|
|
1816
|
+
loc: {
|
|
1817
|
+
title: "Flippin' Dangerous",
|
|
1818
|
+
desc: "CTS: Get a 5 KS with the spatula"
|
|
1819
|
+
}
|
|
1820
|
+
}
|
|
1821
|
+
];
|