POCKET SAND!

This commit is contained in:
Zuhayr
2015-11-21 11:47:12 +10:30
parent db7121ab7a
commit 2edf2c499f
2 changed files with 12 additions and 1 deletions

View File

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

View File

@@ -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