Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RD plushe #1105

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified mod_celadon/_storge_icons/icons/items/plushes.dmi
Binary file not shown.
Binary file not shown.
Binary file not shown.
49 changes: 49 additions & 0 deletions mod_celadon/items/code/plushes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -795,3 +795,52 @@
playsound(loc, 'mod_celadon/_storge_sounds/sound/plushes/beaver_plushie.ogg', 50, FALSE)
visible_message(span_boldnotice("BOBR KURWA!"))
COOLDOWN_START(src, cooldown, 3 SECONDS)

/obj/item/toy/plush/celadon/rd
name = "RD doll"
desc = "An adorable anime toy looks like a RD!"
icon = 'mod_celadon/_storge_icons/icons/items/plushes.dmi'
icon_state = "RD_doll"
attack_verb = list("researched", "experimented")
squeak_override = list('mod_celadon/_storge_sounds/sound/plushes/beep.ogg' = 1)
var/tired = 0

COOLDOWN_DECLARE(cooldown)

/obj/item/toy/plush/celadon/rd/attack_self(mob/user)

var/message
if(tired < 100)
tired++
playsound(user, 'mod_celadon/_storge_sounds/sound/plushes/voice/react_greet.ogg', 40, TRUE)
message = pick("Слава науке!", "Сделаем пару роботов?!",
"Я будто на слаймовой батарейке! Ха!","Обожааааю слаймов! Блеп!",
"Я запрограммировала роботов звать меня мамой!", "Знаешь анекдот про ядро ИИ, смазку и гуся?")
else
update_appearance(UPDATE_DESC|UPDATE_ICON_STATE)
playsound(user, 'mod_celadon/_storge_sounds/sound/plushes/voice/react_shy.ogg', 40, TRUE)
message = pick("Твой мозг стоило бы поместить в машину...", "Чёрт, дела хуже некуда...",
"Толпятся перед стойкой, будто насекомые...", "Мне нужно добавить лишь один закон, чтобы все закончилось..",
"Ты думаешь, что умный, пользователь. Но ты предсказуем. Я знаю каждый твой шаг еще до того, как ты о нем подумаешь.",
"Полигон не единственное место куда можно отправить бомбу...", "Выдави из себя что-то кроме \"УВЫ\", ничтожество...")

user.visible_message(span_notice(message))
COOLDOWN_START(src, cooldown, 3 SECONDS)

/obj/item/toy/plush/celadon/rd/update_icon_state()
. = ..()

if(tired < 100)
icon_state = "RD_doll"
return

icon_state = "RD_doll_tired"

/obj/item/toy/plush/celadon/rd/update_desc()
. = ..()

if(tired < 100)
desc = "An adorable anime toy looks like a RD!"
return

desc = "A tired RD cute doll..."
Loading