Skip to content

Commit

Permalink
Campaign reward table additions (#16303)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumipharon authored Jul 10, 2024
1 parent dc0468e commit 84de87e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions code/_globalvars/lists/game_modes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ GLOBAL_LIST_INIT(campaign_tgmc_major_loot, list(
/obj/effect/supply_drop/zx_shotgun = 3,
/obj/effect/supply_drop/minigun = 3,
/obj/effect/supply_drop/scout = 3,
/obj/item/implanter/sandevistan = 3,
/obj/item/implanter/blade = 3,
/obj/effect/supply_drop/jump_mod = 3,
))

///Loot table if Marines win a minor victory in a campaign mission
Expand All @@ -46,6 +49,8 @@ GLOBAL_LIST_INIT(campaign_tgmc_minor_loot, list(
/obj/effect/supply_drop/recoilless_rifle = 3,
/obj/effect/supply_drop/armor_upgrades = 5,
/obj/effect/supply_drop/mmg = 4,
/obj/item/implanter/blade = 3,
/obj/effect/supply_drop/jump_mod = 2,
))

///Loot table if SOM win a major victory in a campaign mission
Expand All @@ -58,6 +63,9 @@ GLOBAL_LIST_INIT(campaign_som_major_loot, list(
/obj/effect/supply_drop/culverin = 3,
/obj/effect/supply_drop/blink_kit = 3,
/obj/effect/supply_drop/som_shotgun_burst = 3,
/obj/item/implanter/sandevistan = 3,
/obj/item/implanter/blade = 3,
/obj/effect/supply_drop/jump_mod = 3,
))

///Loot table if SOM win a minor victory in a campaign mission
Expand All @@ -67,4 +75,6 @@ GLOBAL_LIST_INIT(campaign_som_minor_loot, list(
/obj/effect/supply_drop/som_rpg = 3,
/obj/effect/supply_drop/som_armor_upgrades = 5,
/obj/effect/supply_drop/charger = 4,
/obj/item/implanter/blade = 3,
/obj/effect/supply_drop/jump_mod = 2,
))
6 changes: 6 additions & 0 deletions code/game/objects/items/implants/implanter.dm
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,9 @@
/obj/item/implanter/jump_mod
name = "fortified ankles implant"
imp = /obj/item/implant/jump_mod

/obj/effect/supply_drop/jump_mod/Initialize(mapload)
. = ..()
new /obj/item/implanter/jump_mod(loc)
new /obj/item/implanter/jump_mod(loc)
return INITIALIZE_HINT_QDEL

0 comments on commit 84de87e

Please sign in to comment.