Add round tuits. (#31452)

This commit is contained in:
Alan
2026-01-25 08:22:09 +00:00
committed by GitHub
parent 489063ba73
commit c23be0a5f9
4 changed files with 33 additions and 0 deletions
+23
View File
@@ -16,6 +16,7 @@
* Toy xeno
* Toy chainsaws
* Action Figures
* Round Tuits
*/
@@ -2024,3 +2025,25 @@
throwforce = 0
breakouttime = 0
ignoresClumsy = TRUE
//////////////////////////////////////////////////////
// Round Tuits //
//////////////////////////////////////////////////////
/obj/item/toy/round_tuit
name = "\improper Round Tuit"
desc = "Tuits are hard to come by, especially the round ones. Guard it with your life."
icon = 'icons/obj/toy.dmi'
icon_state = "round_tuit_wooden"
COOLDOWN_DECLARE(toy_message_cooldown)
/obj/item/toy/round_tuit/activate_self(mob/user)
if(..() || !COOLDOWN_FINISHED(src, toy_message_cooldown))
return
user.visible_message(SPAN_NOTICE("[user] holds [src] close to [user.p_them()] with a resolute expression..."),
SPAN_NOTICE("You hold [src] firmly. You feel like you can accomplish anything."))
COOLDOWN_START(src, toy_message_cooldown, 10 SECONDS)
/obj/item/toy/round_tuit/colorful
desc = "Now that you have one, you can accomplish all the things you put aside until you got a Round Tuit."
icon_state = "round_tuit_colorful"