mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Massive traitor item overhaul
This commit is contained in:
@@ -362,6 +362,28 @@ datum
|
||||
M.sleeping += 1
|
||||
..()
|
||||
return
|
||||
chefspecial
|
||||
// Quiet and lethal, needs atleast 4 units in the person before they'll die
|
||||
name = "Chef's Special"
|
||||
id = "chefspecial"
|
||||
description = "An extremely toxic chemical that will surely end in death."
|
||||
reagent_state = LIQUID
|
||||
color = "#CF3600" // rgb: 207, 54, 0
|
||||
custom_metabolism = 0.39
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
var/random = rand(150,180)
|
||||
if(!M) M = holder.my_atom
|
||||
if(!data) data = 1
|
||||
switch(data)
|
||||
if(0 to 5)
|
||||
..()
|
||||
if(data >= random)
|
||||
if(M.stat != DEAD)
|
||||
M.death(0)
|
||||
M.attack_log += "\[[time_stamp()]\]<font color='red'>Died a quick and painless death by <font color='green'>Chef Excellence's Special Sauce</font>.</font>"
|
||||
data++
|
||||
return
|
||||
|
||||
minttoxin
|
||||
name = "Mint Toxin"
|
||||
|
||||
@@ -125,6 +125,9 @@
|
||||
if("sugar")
|
||||
name = "Sugar"
|
||||
desc = "Tastey space sugar!"
|
||||
if("chefspecial")
|
||||
name = "Chef Excellence's Special Sauce"
|
||||
desc = "A potent sauce distilled from the toxin glands of 1000 Space Carp."
|
||||
else
|
||||
name = "Misc Condiment Bottle"
|
||||
if (reagents.reagent_list.len==1)
|
||||
@@ -171,4 +174,13 @@
|
||||
volume = 20
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("blackpepper", 20)
|
||||
reagents.add_reagent("blackpepper", 20)
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/condiment/syndisauce
|
||||
name = "Chef Excellence's Special Sauce"
|
||||
desc = "A potent sauce distilled from the toxin glands of 1000 Space Carp with an extra touch of LSD because why not?"
|
||||
amount_per_transfer_from_this = 1
|
||||
volume = 20
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("chefspecial", 20)
|
||||
Reference in New Issue
Block a user