mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 15:02:29 +00:00
* Initial work * more * ass * wsedfwedff * asss * test * stuff * fuck * sss a * kms * asdadwedwdfwefwef * start * test * dwwdew * ewefwfef * Redemption machine (#8) * Redemption machine * Removes debug messages * changes * fuckmyshitup * coin mint works with new material shenanigans (#10) * Auto stash before merge of "materials" and "origin/materials" * woops * furnace (#11) * autolathe manufacturing of toolboxes * eggs in a basket * some small changes * matcolors * documentation * more documentation and effects * done * Color man bad (#12) * fixes designs * ass * more fixes * fuck me * firestacks adder * epic fixes * fixes designs * DONE DIDDILY DOO * removes category macro * ch-ch-ch-changes * fixes some stuff * Fixes display of ore values (#9) * Redemption machine * Removes debug messages * Re-adds value display * Replaces the fire stacking component with an element instead (#13) * fixes examine * fixes ligma bugs * double ligma boofus * fix * misses some defines * fixes ORM * Update code/datums/components/material_container.dm Co-Authored-By: Emmett Gaines <ninjanomnom@gmail.com> * fixes * Makes glass objects weaker (#14) * Makes glass objects weaker * uses correct proc * fixes shit * honk honk * better * oh shit oh fuck * fixes * fuck ORMs * fixes the biogen * documentation * ass (#15) * component * changes * ass * ass * doc * Auto stash before merge of "materials-plasmacomponent" and "origin/materials-plasmacomponent" * fixes rounding * fixed
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
/obj/item/stamp
|
|
name = "\improper GRANTED rubber stamp"
|
|
desc = "A rubber stamp for stamping important documents."
|
|
icon = 'icons/obj/bureaucracy.dmi'
|
|
icon_state = "stamp-ok"
|
|
item_state = "stamp"
|
|
throwforce = 0
|
|
w_class = WEIGHT_CLASS_TINY
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
materials = list(/datum/material/iron=60)
|
|
item_color = "cargo"
|
|
pressure_resistance = 2
|
|
attack_verb = list("stamped")
|
|
|
|
/obj/item/stamp/suicide_act(mob/user)
|
|
user.visible_message("<span class='suicide'>[user] stamps 'VOID' on [user.p_their()] forehead, then promptly falls over, dead.</span>")
|
|
return (OXYLOSS)
|
|
|
|
/obj/item/stamp/qm
|
|
name = "quartermaster's rubber stamp"
|
|
icon_state = "stamp-qm"
|
|
item_color = "qm"
|
|
|
|
/obj/item/stamp/law
|
|
name = "law office's rubber stamp"
|
|
icon_state = "stamp-law"
|
|
item_color = "cargo"
|
|
|
|
/obj/item/stamp/captain
|
|
name = "captain's rubber stamp"
|
|
icon_state = "stamp-cap"
|
|
item_color = "captain"
|
|
|
|
/obj/item/stamp/hop
|
|
name = "head of personnel's rubber stamp"
|
|
icon_state = "stamp-hop"
|
|
item_color = "hop"
|
|
|
|
/obj/item/stamp/hos
|
|
name = "head of security's rubber stamp"
|
|
icon_state = "stamp-hos"
|
|
item_color = "hosred"
|
|
|
|
/obj/item/stamp/ce
|
|
name = "chief engineer's rubber stamp"
|
|
icon_state = "stamp-ce"
|
|
item_color = "chief"
|
|
|
|
/obj/item/stamp/rd
|
|
name = "research director's rubber stamp"
|
|
icon_state = "stamp-rd"
|
|
item_color = "director"
|
|
|
|
/obj/item/stamp/cmo
|
|
name = "chief medical officer's rubber stamp"
|
|
icon_state = "stamp-cmo"
|
|
item_color = "cmo"
|
|
|
|
/obj/item/stamp/denied
|
|
name = "\improper DENIED rubber stamp"
|
|
icon_state = "stamp-deny"
|
|
item_color = "redcoat"
|
|
|
|
/obj/item/stamp/clown
|
|
name = "clown's rubber stamp"
|
|
icon_state = "stamp-clown"
|
|
item_color = "clown"
|
|
|
|
/obj/item/stamp/attack_paw(mob/user)
|
|
return attack_hand(user)
|