Skip to content

Commit

Permalink
lore fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBronJameOffical committed Dec 6, 2023
1 parent f4a2070 commit 79f3374
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
24 changes: 17 additions & 7 deletions ModularTegustation/tegu_items/representative/research/kcorp.dm
Original file line number Diff line number Diff line change
Expand Up @@ -63,26 +63,36 @@

//Health booster
/datum/data/lc13research/healthboost
research_name = "Repeatable: Health Booster Syringe "
research_desc = "Hey man, its Joe from research. <br>We've got a new item over here, something about increasing your overall health? <br>Management needs them tested, and what better place than here? You can buy more anytime."
research_name = "Health Booster Syringe "
research_desc = "Hey man, its Joe from research. <br>We've got a new item over here, something about increasing your overall health? <br>We've only really got one and need it tested ASAP. Mind buying one for us?"
cost = AVERAGE_RESEARCH_PRICE
corp = K_CORP_REP

/datum/data/lc13research/healthboost/ResearchEffect(obj/structure/representative_console/caller)
new /obj/item/khpboost(get_turf(caller))
..()

//ERTs
/datum/data/lc13research/mobspawner/l1team
research_name = "L1 Strike Team"
/datum/data/lc13research/mobspawner/k1team
research_name = "Class 1 Strike Team"
research_desc = "Heads up, Kcorp's given a greenlight on drawing from their more... Physical resources. <br>All they're asking for is a foward investment. You can handle that right?"
cost = AVERAGE_RESEARCH_PRICE
corp = K_CORP_REP
mobspawner_type = /obj/effect/mob_spawn/human/supplypod/r_corp/kcorp_call

/datum/data/lc13research/mobspawner/l3team
research_name = "L3 Strike Team"
/datum/data/lc13research/mobspawner/k3team
research_name = "Class 3 Strike Team"
research_desc = "Good news, KCorp's got some excision officers free for a contract. As long as they're paid they won't go after LCorps agents. <br>Hopefully."
cost = AVERAGE_RESEARCH_PRICE+10
corp = K_CORP_REP
required_research = /datum/data/lc13research/mobspawner/l1team
required_research = /datum/data/lc13research/mobspawner/k1team
mobspawner_type = /obj/effect/mob_spawn/human/supplypod/r_corp/kcorp_call/level3

//Free kill team, only unlocks when you actually should use it.
/datum/data/lc13research/mobspawner/kteamkill
research_name = "K-Corp Asset Protection Service"
research_desc = "Theres a small little caveat with the strike teams. HQ is very protective of their equipment and won't tolerate anyone, L-Corp included, using them without permission. <br>As part of the agreement it falls on you to call a K-Corp Asset Protection Team. <br>Keep in mind this WILL break our contract with L-Corp so use it as a last resort."
cost = 0
corp = K_CORP_REP
required_research = /datum/data/lc13research/mobspawner/k1team
//mobspawner_type = /obj/effect/mob_spawn/human/supplypod/r_corp/kcorp_call/level3 Seperate Mob Spawner for cracked dudes
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

/datum/data/lc13research/redweapon/ResearchEffect(obj/structure/representative_console/caller)
ItemUnlock(caller.order_list, "R Corp X-15 Minigun ", /obj/item/gun/energy/e_gun/rabbit/minigun, 600)
ItemUnlock(caller.order_list, "R Corp Lawnmower 2200", /obj/item/gun/energy/e_gun/rabbitdash/small, 600)
ItemUnlock(caller.order_list, "R Corp Model 2200", /obj/item/gun/energy/e_gun/rabbitdash/small, 600)
ItemUnlock(caller.order_list, "R Corp X-12 Sniper ", /obj/item/gun/energy/e_gun/rabbitdash/sniper, 600)
ItemUnlock(caller.order_list, "R Corp X-13 Beam ", /obj/item/gun/energy/e_gun/rabbitdash/laser, 600)
ItemUnlock(caller.order_list, "R Corp 2300 Shotgun ", /obj/item/gun/energy/e_gun/rabbitdash/shotgun, 600)
ItemUnlock(caller.order_list, "R Corp Model 2300", /obj/item/gun/energy/e_gun/rabbitdash/shotgun, 600)
..()

/datum/data/lc13research/singlephase
Expand Down
8 changes: 4 additions & 4 deletions ModularTegustation/tegu_items/representative/spawners.dm
Original file line number Diff line number Diff line change
Expand Up @@ -122,23 +122,23 @@

//Kcorp
/obj/effect/mob_spawn/human/supplypod/r_corp/kcorp_call
name = "Kcorp L1 teleport zone"
name = "Kcorp Class 1 teleport zone"
desc = "A authorized zone for teleporting in kcorp combat employees."
short_desc = "You a part of K-Corps Security, hired to handle any physical threats as long as the pay's big enough."
flavour_text = "Your team has been hired by L-Corp to assist in any way you can. Considering your speciality expect some heavy resistance. Stick together and neutralize all threats."
mob_name = "Kcorp Security"
outfit = /datum/outfit/kcorp
assignedrole = "L1"
assignedrole = "Class 1"
spawn_level = 60 // Bit more combat orientated
faction = list("neutral", "kcorp")
icon_state = "Kcorp"
uses = 6 // Who knows, they might be good
reject_message = "K-Corp HQ: We've only been paid enough for one team, anymore and we'd be operating at a loss."

/obj/effect/mob_spawn/human/supplypod/r_corp/kcorp_call/level3
name = "Kcorp L3 teleport zone"
name = "Kcorp Class 3 teleport zone"
outfit = /datum/outfit/kcorp/level3
flavour_text = "Your team has been hired by L-Corp to assist in any way you can. Though the extra pay never hurt anyone. Stick together and neutralize all threats."
assignedrole = "L3"
assignedrole = "Class 3"
spawn_level = 80
uses = 4 // Evil Excision staff

0 comments on commit 79f3374

Please sign in to comment.