-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BOUNTY] Ports Petheads from Beestation (#3629)
* Ports Petheads from Bee * Into it's proper place * Untick
- Loading branch information
Showing
46 changed files
with
199 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/mob/living/simple_animal/pet/cat | ||
//. = ..() | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' |
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,28 @@ | ||
/mob/living/basic/crab | ||
can_be_held = TRUE | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
held_lh = 'monkestation/icons/mob/pets_held_lh.dmi' | ||
held_rh = 'monkestation/icons/mob/pets_held_rh.dmi' | ||
held_state = "crab" | ||
|
||
/mob/living/basic/crab/evil | ||
held_state = "evilcrab" | ||
|
||
// Unsprited crabs will not be worn, new sprites are welcome! | ||
|
||
/mob/living/basic/crab/kreb | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/crab/evil/kreb | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/crab/plant | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/crab/spycrab | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/crab/shuffle | ||
worn_slot_flags = null | ||
|
29 changes: 29 additions & 0 deletions
29
monkestation/code/modules/mob/living/basic/pets/dog_subtypes.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,29 @@ | ||
/mob/living/basic/pet/dog/pug | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
/mob/living/basic/pet/dog/bullterrier | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held_large.dmi' | ||
|
||
/mob/living/basic/pet/dog/corgi | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
/mob/living/basic/pet/dog/corgi/puppy | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
/mob/living/basic/pet/dog/corgi/puppy/void | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
/mob/living/basic/pet/dog/corgi/lisa | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
/mob/living/basic/pet/dog/corgi/narsie | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/pet/dog/corgi/exoticcorgi | ||
worn_slot_flags = null |
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,3 @@ | ||
/mob/living/basic/pet/fox | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' |
40 changes: 40 additions & 0 deletions
40
monkestation/code/modules/mob/living/basic/pets/hamster.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,40 @@ | ||
/mob/living/simple_animal/pet/hamster | ||
mob_biotypes = list(MOB_ORGANIC, MOB_BEAST) | ||
response_help_continuous = "pets" | ||
response_help_simple = "pet" | ||
response_disarm_continuous = "bops" | ||
response_disarm_simple = "bop" | ||
response_harm_continuous = "bites" | ||
response_harm_simple = "bite" | ||
speak = list("Squeak", "SQUEAK!") | ||
speak_emote = list("squeak", "hisses", "squeals") | ||
emote_hear = list("squeaks.", "hisses.", "squeals.") | ||
emote_see = list("skitters", "examines it's claws", "rolls around") | ||
see_in_dark = 5 | ||
speak_chance = 1 | ||
turns_per_move = 3 | ||
footstep_type = FOOTSTEP_MOB_CLAW | ||
density = FALSE | ||
pass_flags = PASSMOB | ||
mob_size = MOB_SIZE_SMALL | ||
name = "\improper hamster" | ||
real_name = "hamster" | ||
desc = "It's a hamster." | ||
icon = 'monkestation/icons/mob/pets.dmi' | ||
icon_state = "hamster" | ||
icon_living = "hamster" | ||
held_state = "hamster" | ||
icon_dead = "hamster_dead" | ||
butcher_results = list(/obj/item/food/meat/slab = 1) | ||
childtype = list(/mob/living/simple_animal/pet/hamster = 1) | ||
animal_species = /mob/living/simple_animal/pet/hamster | ||
gold_core_spawnable = FRIENDLY_SPAWN | ||
can_be_held = TRUE | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
held_lh = 'monkestation/icons/mob/pets_held_lh.dmi' | ||
held_rh = 'monkestation/icons/mob/pets_held_rh.dmi' | ||
|
||
/mob/living/simple_animal/pet/hamster/Initialize(mapload) | ||
. = ..() | ||
ADD_TRAIT(src, TRAIT_VENTCRAWLER_ALWAYS, INNATE_TRAIT) |
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,18 @@ | ||
/mob/living/basic/lizard | ||
can_be_held = TRUE | ||
held_w_class = WEIGHT_CLASS_TINY | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
held_lh = 'monkestation/icons/mob/pets_held_lh.dmi' | ||
held_rh = 'monkestation/icons/mob/pets_held_rh.dmi' | ||
|
||
// Unsprited crabs will not be worn, new sprites are welcome! | ||
|
||
/mob/living/basic/lizard/snake | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/lizard/space | ||
worn_slot_flags = null | ||
|
||
/mob/living/basic/lizard/tegu | ||
worn_slot_flags = null |
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,8 @@ | ||
/mob/living/basic/mouse | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
|
||
// Unsprited crabs will not be worn, new sprites are welcome! | ||
|
||
/mob/living/basic/mouse/plague | ||
worn_slot_flags = null |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/mob/living/basic/snake | ||
can_be_held = TRUE | ||
worn_slot_flags = ITEM_SLOT_HEAD | ||
held_state = "snake" | ||
head_icon = 'monkestation/icons/mob/pets_held.dmi' | ||
held_lh = 'monkestation/icons/mob/pets_held_lh.dmi' | ||
held_rh = 'monkestation/icons/mob/pets_held_rh.dmi' |
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
1 change: 1 addition & 0 deletions
1
monkestation/code/modules/ranching/chickens/tier1/silkie_black.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
1 change: 1 addition & 0 deletions
1
monkestation/code/modules/ranching/chickens/tier1/silkie_white.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
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
1 change: 1 addition & 0 deletions
1
monkestation/code/modules/ranching/chickens/tier2/cotton_candy.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
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
Oops, something went wrong.