mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 22:47:59 +01:00
Forgot Nicotine in cigs
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
"atrazine","banana","charcoal","space_drugs","methamphetamine","holywater","ethanol","hot_coco","facid",
|
||||
"blood","morphine","fluorine","mutadone","mutagen","hydrocodone","fuel","cryptobiolin",
|
||||
"haloperidol","mindbreaker","nanites","lipolicide","frostoil","salglu_solution","beepskysmash",
|
||||
"omnizine", "amatoxin", "adminordrazine", "neurotoxin", "synaptizine")
|
||||
"omnizine", "amanitin", "adminordrazine", "neurotoxin", "synaptizine")
|
||||
var/datum/reagents/R = new/datum/reagents(50)
|
||||
R.my_atom = vent
|
||||
R.add_reagent(pick(gunk), 50)
|
||||
|
||||
@@ -629,7 +629,7 @@
|
||||
result = /obj/item/weapon/reagent_containers/food/snacks/amanitajelly
|
||||
make_food(var/obj/container as obj)
|
||||
var/obj/item/weapon/reagent_containers/food/snacks/amanitajelly/being_cooked = ..(container)
|
||||
being_cooked.reagents.del_reagent("amatoxin")
|
||||
being_cooked.reagents.del_reagent("amanitin")
|
||||
return being_cooked
|
||||
|
||||
/datum/recipe/microwave/meatballsoup
|
||||
|
||||
@@ -838,7 +838,7 @@ proc/populate_seed_list()
|
||||
mutants = list("destroyingangel","plastic")
|
||||
packet_icon = "mycelium-amanita"
|
||||
plant_icon = "amanita"
|
||||
chems = list("nutriment" = list(1), "amatoxin" = list(3,3), "psilocybin" = list(1,25))
|
||||
chems = list("nutriment" = list(1), "amanitin" = list(3,3), "psilocybin" = list(1,25))
|
||||
|
||||
lifespan = 50
|
||||
maturation = 10
|
||||
@@ -854,7 +854,7 @@ proc/populate_seed_list()
|
||||
products = list(/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/angel)
|
||||
packet_icon = "mycelium-angel"
|
||||
plant_icon = "angel"
|
||||
chems = list("nutriment" = list(1,50), "amatoxin" = list(13,3), "psilocybin" = list(1,25))
|
||||
chems = list("nutriment" = list(1,50), "amanitin" = list(13,3), "psilocybin" = list(1,25))
|
||||
|
||||
maturation = 12
|
||||
yield = 2
|
||||
|
||||
@@ -213,7 +213,7 @@
|
||||
owner.adjustToxLoss(0.1 * process_accuracy)
|
||||
|
||||
// Can't cope with toxins at all
|
||||
for(var/toxin in list("toxin", "plasma", "sacid", "facid", "cyanide", "amatoxin", "carpotoxin", "mindbreaker"))
|
||||
for(var/toxin in list("toxin", "plasma", "sacid", "facid", "cyanide", "amanitin", "carpotoxin", "mindbreaker"))
|
||||
if(owner.reagents.has_reagent(toxin))
|
||||
owner.adjustToxLoss(0.3 * process_accuracy)
|
||||
|
||||
|
||||
@@ -1464,13 +1464,6 @@ datum
|
||||
reagent_state = SOLID
|
||||
color = "#664B63" // rgb: 102, 75, 99
|
||||
|
||||
nicotine
|
||||
name = "Nicotine"
|
||||
id = "nicotine"
|
||||
description = "A highly addictive stimulant extracted from the tobacco plant."
|
||||
reagent_state = LIQUID
|
||||
color = "#181818" // rgb: 24, 24, 24
|
||||
|
||||
ammonia
|
||||
name = "Ammonia"
|
||||
id = "ammonia"
|
||||
@@ -1735,32 +1728,6 @@ datum
|
||||
..()
|
||||
return
|
||||
|
||||
amatoxin
|
||||
name = "Amanitin"
|
||||
id = "amatoxin"
|
||||
description = "A powerful poison derived from certain species of mushroom."
|
||||
color = "#792300" // rgb: 121, 35, 0
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if(!M) M = holder.my_atom
|
||||
if(!data) data = 1
|
||||
data++
|
||||
..()
|
||||
return
|
||||
|
||||
Del()
|
||||
if(holder)
|
||||
if (istype(holder.my_atom,/mob/living))
|
||||
var/mob/living/M as mob
|
||||
var/to_remove = 0
|
||||
if (holder.has_reagent("charcoal"))
|
||||
to_remove = min(holder.get_reagent_amount("charcoal"),data)
|
||||
holder.remove_reagent("charcoal", to_remove, 0)
|
||||
data -= to_remove
|
||||
if(M)
|
||||
M.adjustToxLoss((data-1)*rand(2,4))
|
||||
..()
|
||||
|
||||
psilocybin
|
||||
name = "Psilocybin"
|
||||
id = "psilocybin"
|
||||
|
||||
@@ -1073,7 +1073,7 @@
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("nutriment", 5)
|
||||
reagents.add_reagent("amatoxin", 3)
|
||||
reagents.add_reagent("amanitin", 3)
|
||||
reagents.add_reagent("psilocybin", 1)
|
||||
bitesize = 3
|
||||
|
||||
@@ -1408,7 +1408,7 @@
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("nutriment", 6)
|
||||
reagents.add_reagent("amatoxin", 6)
|
||||
reagents.add_reagent("amanitin", 6)
|
||||
reagents.add_reagent("psilocybin", 3)
|
||||
bitesize = 3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user