diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 6c21bea8066..104cf19eff3 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -434,7 +434,7 @@ attack_verb = list("attacked", "coloured") var/colour = "#FF0000" //RGB var/drawtype = "rune" - var/list/graffiti = list("amyjon","face","matt","revolution","engie","guy","end","dwarf","uboa","body") + var/list/graffiti = list("amyjon","face","matt","revolution","engie","guy","end","dwarf","uboa","body","cyka") var/list/letters = list("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z") var/uses = 30 //0 for unlimited uses var/instant = 0 @@ -449,6 +449,9 @@ ..() name = "[colourName] crayon" //Makes crayons identifiable in things like grinders drawtype = pick(pick(graffiti), pick(letters), "rune[rand(1,6)]") + if(config.mutant_races == 1) + graffiti += "antilizard" + graffiti += "prolizard" /obj/item/toy/crayon/attack_self(mob/living/user as mob) update_window(user) diff --git a/html/changelogs/xxalpha-newgraffiti.yml b/html/changelogs/xxalpha-newgraffiti.yml new file mode 100644 index 00000000000..6302246a277 --- /dev/null +++ b/html/changelogs/xxalpha-newgraffiti.yml @@ -0,0 +1,6 @@ +author: xxalpha + +delete-after: True + +changes: + - rscadd: "Added new graffiti: cyka, prolizard, antilizard" \ No newline at end of file diff --git a/icons/effects/crayondecal.dmi b/icons/effects/crayondecal.dmi index dc3f8f82996..21331ed175a 100644 Binary files a/icons/effects/crayondecal.dmi and b/icons/effects/crayondecal.dmi differ