forked from VOREStation/VOREStation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request VOREStation#16650 from Heroman3003/thanksgivingturkey
Adds a turkey mob and reworks regular Turkey recipe
- Loading branch information
Showing
14 changed files
with
138 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
code/modules/mob/living/simple_mob/subtypes/vore/turkey.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/mob/living/simple_mob/vore/turkey | ||
name = "turkey" | ||
desc = "A large turkey, all ready for stuffing." | ||
tt_desc = "Meleagris gallopavo" | ||
|
||
icon_state = "turkey" | ||
icon_living = "turkey" | ||
icon_dead = "turkeydead" | ||
icon_rest = "turkeyrest" | ||
icon = 'icons/mob/vore.dmi' | ||
|
||
faction = FACTION_TURKEY | ||
maxHealth = 25 | ||
health = 25 | ||
|
||
meat_amount = 1 | ||
meat_type = /obj/item/reagent_containers/food/snacks/rawturkey | ||
name_the_meat = FALSE | ||
|
||
response_help = "pats" | ||
response_disarm = "gently pushes aside" | ||
response_harm = "hits" | ||
|
||
harm_intent_damage = 3 | ||
melee_damage_lower = 3 | ||
melee_damage_upper = 1 | ||
attacktext = list("pecked") | ||
|
||
say_list_type = /datum/say_list/turkey | ||
ai_holder_type = /datum/ai_holder/simple_mob/passive | ||
|
||
allow_mind_transfer = TRUE | ||
|
||
vore_active = 1 | ||
vore_bump_chance = 10 | ||
vore_bump_emote = "greedily leaps at" | ||
vore_default_mode = DM_HOLD | ||
vore_icons = SA_ICON_LIVING | ||
|
||
/datum/say_list/turkey | ||
speak = list("GOBBLEGOBBLE!","Gobble?","Gobblegobble...") | ||
emote_hear = list("gobbles!") | ||
emote_see = list("flaps its wings","pecks something on the floor","puffs up its feathers") |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters