From be0e52c2f0b9924a3d69929fca965e7edada690b Mon Sep 17 00:00:00 2001 From: ktccd Date: Wed, 15 Mar 2017 15:42:08 +0100 Subject: [PATCH] Borer_chem_lewd_update (#276) * Borer_chem_lewd_update Added aphrodisiac and anaphrodisiac to the borer chemical list. Default costs for now. * Cloning-genitalia Previously, clones had DNA for genitals, but not the organs. This should give organs to any creature that has the DNA for them. * Revert "Cloning-genitalia" This reverts commit 67cac7775f1d8813638d3e77daaeed768822dfee. --- code/game/gamemodes/miniantags/borer/borer.dm | 2 ++ code/game/gamemodes/miniantags/borer/borer_chemicals.dm | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/code/game/gamemodes/miniantags/borer/borer.dm b/code/game/gamemodes/miniantags/borer/borer.dm index 94fec48e03..409ab597b9 100644 --- a/code/game/gamemodes/miniantags/borer/borer.dm +++ b/code/game/gamemodes/miniantags/borer/borer.dm @@ -128,6 +128,8 @@ var/total_borer_hosts_needed = 10 //borer_chems += /datum/borer_chem/creagent borer_chems += /datum/borer_chem/ethanol borer_chems += /datum/borer_chem/rezadone + borer_chems += /datum/borer_chem/aphrodisiac + borer_chems += /datum/borer_chem/anaphrodisiac borers += src diff --git a/code/game/gamemodes/miniantags/borer/borer_chemicals.dm b/code/game/gamemodes/miniantags/borer/borer_chemicals.dm index c45de46524..7525873888 100644 --- a/code/game/gamemodes/miniantags/borer/borer_chemicals.dm +++ b/code/game/gamemodes/miniantags/borer/borer_chemicals.dm @@ -4,6 +4,14 @@ var/chemuse = 30 var/quantity = 10 +/datum/borer_chem/aphrodisiac + chemname = "aphro" + chem_desc = "Increases arousal in host, if they're not in the mood yet." + +/datum/borer_chem/anaphrodisiac + chemname = "anaphro" + chem_desc = "Decreases arousal in host, if they're getting a bit too frisky." + /datum/borer_chem/epinephrine chemname = "epinephrine" chem_desc = "Stabilizes critical condition and slowly restores oxygen damage. If overdosed, it will deal toxin and oxyloss damage."