Herring Gull Plushie (#16028)

* Herring Gull Plushie

* Tucking in Legs

* Actually Set the Variable
This commit is contained in:
SleepyGemmy
2023-03-16 21:16:45 +00:00
committed by GitHub
parent 6e75d57182
commit 2c442b600f
6 changed files with 62 additions and 2 deletions
+53
View File
@@ -1188,6 +1188,59 @@
// slot_flags = SLOT_HEAD - head sprite may come someday, but not today.
phrase = "Blub!"
// Herring Gull Plushie
/obj/item/toy/plushie/herring_gull
name = "herring gull plushie"
desc = "A herring gull plushie. Adorable!"
desc_extended = "The European herring gull, also known as <i>Larus argentatus</i>, is a common seabird originating from Earth. It can be found on and around \
the coasts as well as cities on Earth and wherever it may have been transplanted to. Commonly seen as something that symbolizes the sea as well as freedom."
icon_state = "herring_gull"
item_state = "herring_gull"
phrase = "Kek kek kek!"
var/lying = FALSE
/obj/item/toy/plushie/herring_gull/attack_self(mob/user)
if(user.a_intent == I_HELP)
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> pets \the [src]."),
SPAN_NOTICE("You pet \the [src].")
)
else if(user.a_intent == I_DISARM)
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> squeezes the \the [src]."),
SPAN_NOTICE("You squeeze \the [src].")
)
else if(user.a_intent == I_GRAB)
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> hugs \the [src]."),
SPAN_NOTICE("You hug \the [src].")
)
else if(user.a_intent == I_HURT)
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> pokes \the [src]."),
SPAN_NOTICE("You poke \the [src].")
)
playsound(src, 'sound/items/plushies/herring_gull/alarm_call.ogg', 75, FALSE)
visible_message("<b>\The [src]</b> says, \"[phrase]\"")
/obj/item/toy/plushie/herring_gull/AltClick(mob/user)
if(lying)
lying = !lying
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> extends \the [src]'s legs."),
SPAN_NOTICE("You extend \the [src]'s legs.")
)
icon_state = "herring_gull"
item_state = "herring_gull"
else
lying = !lying
user.visible_message(
SPAN_NOTICE("<b>\The [user]</b> tucks in \the [src]'s legs."),
SPAN_NOTICE("You tuck in \the [src]'s legs.")
)
icon_state = "herring_gull_lying"
item_state = "herring_gull_lying"
//Toy cult sword
/obj/item/toy/cultsword
name = "foam sword"
@@ -70,6 +70,7 @@
/datum/gear/toy/plushie/New()
..()
var/list/plushies = list()
plushies["plushie, herring gull"] = /obj/item/toy/plushie/herring_gull
plushies["plushie, nymph"] = /obj/item/toy/plushie/nymph
plushies["plushie, mouse"] = /obj/item/toy/plushie/mouse
plushies["plushie, kitten"] = /obj/item/toy/plushie/kitten
+6
View File
@@ -0,0 +1,6 @@
author: SleepyGemmy
delete-after: True
changes:
- rscadd: "Added a herring gull plushie."
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 70 KiB

+2 -2
View File
@@ -34,7 +34,6 @@ All sounds listed above in this section part of "Valhalla", licensed under CC0 1
ATTRIBUTIONS SECTION END
ATTRIBUTIONS SECTION START
sound/weapons/gunshot/ship_weapons/120mm_mortar.ogg - "Mortar", licensed under CC0. Obtained from https://freesound.org/people/Mozfoo/sounds/529239/
sound/weapons/gunshot/ship_weapons/rotary_fire.ogg - "Minigun", licensed under CC0. Obtained and edited from https://freesound.org/people/Breviceps/sounds/557595/
sound/weapons/gunshot/ship_weapons/flak_fire.ogg - "Minigun Fire", licensed under CC0. Obtained and edited from https://freesound.org/people/Bratish/sounds/500304/
@@ -48,7 +47,8 @@ sound/effects/ship_weapons/leviathan_powerdown.ogg - "CP_Power_Down01", licensed
sound/effects/ship_weapons/leviathan_powerup.ogg - "Device powering up", licensed under CC BY 4.0. Obtained and edited from https://freesound.org/people/spoonsandlessspoons/sounds/361339/
sound/items/drop/shell_drop.ogg - "ANI Big Pipe Hit", licensed under CC0. Obtained from https://freesound.org/people/ani_music/sounds/244983/
sound/effects/combatroll.ogg - "Starship landing sequence", licensed under CC BY 4.0. Obtained and edited from https://freesound.org/people/Hybrid_V/sounds/381679/
ATTRIBUTIONS SECTION END
ATTRIBUTIONS SECTION START
sound/items/geiger.ogg - https://freesound.org/people/leonelmail/sounds/328381/ -- Under creative commons 0
ATTRIBUTIONS SECTION END
Binary file not shown.