mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 10:35:41 +01:00
416902a803
* The "Guide to Advanced Mimery" series now make but the faintest noise when turning their pages (#81068) ## About The Pull Request What it says on the tin. To fit with the description of volume 1 ("The pages don't make any sound when turned."), they now use the sound of faint rustling instead of the default page-turning sound effect. Pictured below (you may wish to turn up your volume): https://github.com/tgstation/tgstation/assets/80640114/e9867815-8e33-47a5-83e2-19fc979e15d6 ## Why It's Good For The Game Makes the book's behaviour consistent with their description, plus it's just fitting, isn't it?. ## Changelog 🆑 sound: The Guide to Advanced Mimery book series now only make a very faint noise when turning their pages, in order to match their description /🆑 * The "Guide to Advanced Mimery" series now make but the faintest noise when turning their pages --------- Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com>
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
/obj/item/book/granter/action/spell/mime
|
|
name = "Guide to Mimery Vol 0"
|
|
desc = "The missing entry into the legendary saga. Unfortunately it doesn't teach you anything."
|
|
icon_state ="bookmime"
|
|
remarks = list("...")
|
|
book_sounds = list('sound/effects/space_wind.ogg')
|
|
|
|
/obj/item/book/granter/action/spell/mime/attack_self(mob/user)
|
|
. = ..()
|
|
if(!.)
|
|
return
|
|
|
|
// Gives the user a vow ability if they don't have one
|
|
var/datum/action/cooldown/spell/vow_of_silence/vow = locate() in user.actions
|
|
if(!vow && user.mind)
|
|
vow = new(user.mind)
|
|
vow.Grant(user)
|
|
|
|
/obj/item/book/granter/action/spell/mime/mimery_blockade
|
|
granted_action = /datum/action/cooldown/spell/forcewall/mime
|
|
action_name = "Invisible Blockade"
|
|
name = "Guide to Advanced Mimery Vol 1"
|
|
desc = "The pages don't make any sound when turned."
|
|
|
|
/obj/item/book/granter/action/spell/mime/mimery_guns
|
|
granted_action = /datum/action/cooldown/spell/pointed/projectile/finger_guns
|
|
action_name = "Finger Guns"
|
|
name = "Guide to Advanced Mimery Vol 2"
|
|
desc = "There aren't any words written..."
|