mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
POCKET SAND!
This commit is contained in:
@@ -29,6 +29,17 @@
|
|||||||
icon_state = "ore_glass"
|
icon_state = "ore_glass"
|
||||||
origin_tech = list(TECH_MATERIAL = 1)
|
origin_tech = list(TECH_MATERIAL = 1)
|
||||||
material = "sand"
|
material = "sand"
|
||||||
|
slot_flags = SLOT_HOLSTER
|
||||||
|
|
||||||
|
// POCKET SAND!
|
||||||
|
/obj/item/weapon/ore/glass/throw_impact(atom/hit_atom)
|
||||||
|
..()
|
||||||
|
var/mob/living/carbon/human/H = hit_atom
|
||||||
|
if(istype(H) && H.has_eyes() && prob(85))
|
||||||
|
H << "<span class='danger'>Some of \the [src] gets in your eyes!</span>"
|
||||||
|
H.eye_blind += 5
|
||||||
|
H.eye_blurry += 10
|
||||||
|
|
||||||
|
|
||||||
/obj/item/weapon/ore/phoron
|
/obj/item/weapon/ore/phoron
|
||||||
name = "phoron crystals"
|
name = "phoron crystals"
|
||||||
|
|||||||
@@ -914,7 +914,7 @@
|
|||||||
/obj/item/weapon/reagent_containers/food/snacks/pie/throw_impact(atom/hit_atom)
|
/obj/item/weapon/reagent_containers/food/snacks/pie/throw_impact(atom/hit_atom)
|
||||||
..()
|
..()
|
||||||
new/obj/effect/decal/cleanable/pie_smudge(src.loc)
|
new/obj/effect/decal/cleanable/pie_smudge(src.loc)
|
||||||
src.visible_message("\red [src.name] splats.","\red You hear a splat.")
|
src.visible_message("<span class='danger'>\The [src.name] splats.</span>","<span class='danger'>You hear a splat.</span>")
|
||||||
qdel(src)
|
qdel(src)
|
||||||
|
|
||||||
/obj/item/weapon/reagent_containers/food/snacks/berryclafoutis
|
/obj/item/weapon/reagent_containers/food/snacks/berryclafoutis
|
||||||
|
|||||||
Reference in New Issue
Block a user