Skip to content

Commit

Permalink
Adds a carrion graffiti (#8435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twomoon-Github authored Feb 22, 2024
1 parent 9ad1ac3 commit 719ebb2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions code/game/objects/effects/decals/Cleanable/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@
desc = "A graffiti of one star's eye."
icon_state = "onestar"

/obj/effect/decal/cleanable/graffiti/graffiti_carrion
desc = "Consume the flesh."
icon_state = "carrion"

/obj/effect/decal/cleanable/graffiti/graffiti_doodle
desc = "A vagabond beaten by IH, this is mercenary brutality."
Expand Down
4 changes: 3 additions & 1 deletion code/game/objects/items/spraypaint.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/obj/item/spraypaint/afterattack(atom/target, mob/user as mob, proximity)
if(!proximity) return
if(istype(target,/turf))
var/graffititype = input("Choose what you'd like to paint") in list("Kot","Onestar","Doodle","Piss","Clown","Skull","Heart","Excelsior","Ironhammer","Moebius","Neotheology","Technomancer","Aster","Ancap yes","Ancap no")
var/graffititype = input("Choose what you'd like to paint") in list("Kot","Onestar","Carrion","Doodle","Piss","Clown","Skull","Heart","Excelsior","Ironhammer","Moebius","Neotheology","Technomancer","Aster","Ancap yes","Ancap no")
if(uses <= 0)
playsound(loc, 'sound/effects/interaction/graffiti_empty.ogg', 100, 1)
to_chat(user, SPAN_NOTICE("The spray can is empty."))
Expand All @@ -29,6 +29,8 @@
new /obj/effect/decal/cleanable/graffiti/graffiti_kot(target)
if("Onestar")
new /obj/effect/decal/cleanable/graffiti/graffiti_onestar(target)
if("Carrion")
new /obj/effect/decal/cleanable/graffiti/graffiti_carrion(target)
if("Doodle")
new /obj/effect/decal/cleanable/graffiti/graffiti_doodle(target)
if("Piss")
Expand Down
Binary file modified icons/effects/wall_graffiti.dmi
Binary file not shown.

0 comments on commit 719ebb2

Please sign in to comment.