Files
S.P.L.U.R.T-Station-13/modular_splurt/code/modules/smithing/anvil.dm
Darius ad0239b5de Replace all modular HTML spans with defines spans
In total:
- Adds span defines for `reallybig hypnophrase`, `big warning`, `header`
- Fixes a missing apostrophe for hypno stare
- Makes a special exception for cuddling.dm, which uses an irregular span
- Puts the spans file back
2023-01-16 04:05:27 -05:00

15 lines
608 B
Plaintext

//Manly anvil stuff
/obj/structure/anvil/obtainable/dwarfvil
name = "manly anvil"
desc = "someone reinforced an ordinary anvil with a wooden barrel and stained it with booze. You see a skull embedded in it. Its eye sockets are encrusted with legion cores."
icon = 'modular_splurt/icons/obj/smith.dmi'
icon_state = "dwarfvil"
anvilquality = 1
itemqualitymax = 8
/obj/structure/anvil/obtainable/dwarfvil/attackby(obj/item/I, mob/user)
if(isdwarf(user))
return ..()
else
to_chat(user, span_warning("Ugh! This anvil smells of mushroom beer, and the design is weird. It is inconvenient to use it!"))