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."