From ecfa3dc72cde2aa490b18d69dc4ebb8b5253598d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 10 Mar 2023 03:42:33 +0100 Subject: [PATCH] [MIRROR] [NO GBP] Switches gondola infusion from the corpse (that gets deleted on death) to the slab of meat [MDB IGNORE] (#19699) [NO GBP] Switches gondola infusion from the corpse (that gets deleted on death) to the slab of meat Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com> --- .../infuser_tier_two_entries.dm | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm diff --git a/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm new file mode 100644 index 00000000000..5eb13847bb5 --- /dev/null +++ b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm @@ -0,0 +1,31 @@ +/* + * Tier two entries are unlocked after infusing someone/being infused and achieving a bonus, and are for dna mutants that are: + * - harder to aquire (gondolas) but not *necessarily* requiring job help + * - have a bonus for getting past a threshold + * + * todos for the future: + * - tier threes, requires xenobio cooperation, unlocked after getting a tier two entity bonus + * - when completing a tier, add the bonus to an xp system for unlocking new tiers. so instead of getting/giving a tier 1 bonus and unlocking tier 2, tier 1 would add "1" to a total. when you have a total of say, 3, you get the next tier +*/ +/datum/infuser_entry/gondola + name = "Gondola" + infuse_mob_name = "gondolid" + desc = "Gondolas, rare creatures that choose to simply observe instead of act have quite a set of interesting qualities to take advantage of. You know. Zen, peace, happiness... shrugging off a raging plasma fire..." + threshold_desc = "you can shrug off most environmental conditions!" + qualities = list( + "pacify people with your hugs", + "enter a bliss-like state of zen", + "become too weak to pick up anything larger than a pen", + "stop caring about temperature... or pressure, or atmos... or much of anything...", + ) + input_obj_or_mob = list( + /obj/item/food/meat/slab/gondola, + ) + output_organs = list( + /obj/item/organ/internal/heart/gondola, + /obj/item/organ/internal/tongue/gondola, + /obj/item/organ/internal/liver/gondola, + ) + infusion_desc = "observant" + tier = DNA_MUTANT_TIER_TWO + status_effect_type = /datum/status_effect/organ_set_bonus/gondola