mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-15 01:54:52 +01:00
d4bb0d4c86
* Adds Summon Cheese * Update staff.dm --------- Co-authored-by: Sealed101 <cool.bullseye@yandex.ru> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com>
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
/obj/item/book/granter/action/spell/summon_cheese
|
|
name = "Lusty Xenomorph Maid vol. III - Cheese Bakery"
|
|
desc = "Wonderful! Time for a celebration... Cheese for everyone!"
|
|
icon_state = "bookcheese"
|
|
action_name = "summon cheese"
|
|
granted_action = /datum/action/cooldown/spell/conjure/cheese
|
|
remarks = list(
|
|
"Always forward, never back...",
|
|
"Are these pages... cheese slices?..",
|
|
"Healthy snacks for unsuspecting victims...",
|
|
"I never knew so many types of cheese existed...",
|
|
"Madness reeks of goat cheese...",
|
|
"Madness tastes of gouda...",
|
|
"Madness tastes of parmesan...",
|
|
"Time is an artificial construct...",
|
|
"Was it order or biscuits?..",
|
|
"What's this about sacrificing cheese?!..",
|
|
"Who wouldn't like that?..",
|
|
"Why cheese, of all things?..",
|
|
"Why do I need a reason for everything?..",
|
|
)
|
|
|
|
/obj/item/book/granter/action/spell/summon_cheese/recoil(mob/living/user)
|
|
to_chat(user, span_warning("\The [src] turns into a wedge of cheese!"))
|
|
var/obj/item/food/cheese/wedge/book_cheese = new
|
|
user.temporarilyRemoveItemFromInventory(src, force = TRUE)
|
|
user.put_in_hands(book_cheese)
|
|
qdel(src)
|