This commit is contained in:
Fox-McCloud
2015-11-18 23:17:31 -05:00
parent ce16af05ef
commit f43e21698c
8 changed files with 74 additions and 1 deletions
+6
View File
@@ -878,6 +878,12 @@ var/list/all_supply_groups = list(supply_emergency,supply_security,supply_engine
containertype = /obj/structure/closet/critter/chick
containername = "chicken crate"
/datum/supply_packs/organic/turkey
name = "Turkey Crate"
cost = 20
containertype = /obj/structure/closet/critter/turkey
containername = "turkey crate"
/datum/supply_packs/organic/corgi
name = "Corgi Crate"
cost = 50
+16
View File
@@ -36,3 +36,19 @@
/obj/effect/decal/snow/sand/surround
icon_state="gravsnow_surround"
/obj/effect/decal/leaves
name="fall leaves"
density = 0
anchored = 1
layer = 2
icon='icons/obj/flora/plants.dmi'
icon_state = "fallleaves"
/obj/effect/decal/straw
name="scattered straw"
density = 0
anchored = 1
layer = 2
icon='icons/obj/flora/plants.dmi'
icon_state = "strawscattered"
@@ -57,6 +57,10 @@
name = "goat crate"
content_mob = /mob/living/simple_animal/hostile/retaliate/goat
/obj/structure/closet/critter/turkey
name = "turkey crate"
content_mob = /mob/living/simple_animal/turkey
/obj/structure/closet/critter/chick
name = "chicken crate"
content_mob = /mob/living/simple_animal/chick
+27 -1
View File
@@ -229,4 +229,30 @@
/obj/structure/flora/rock/pile/New()
..()
icon_state = "rockpile[rand(1,5)]"
icon_state = "rockpile[rand(1,5)]"
/obj/structure/flora/corn_stalk
name = "corn stalk"
icon = 'icons/obj/flora/plants.dmi'
icon_state = "cornstalk1"
anchored = 0
layer = 5
/obj/structure/flora/corn_stalk/alt_1
icon_state = "cornstalk2"
/obj/structure/flora/corn_stalk/alt_2
icon_state = "cornstalk3"
/obj/structure/flora/straw_bail
name = "straw bail"
icon = 'icons/obj/flora/plants.dmi'
icon_state = "strawbail1"
density = 1
climbable = 1 // you can climb all over them.
/obj/structure/flora/straw_bail/alt_1
icon_state = "strawbail2"
/obj/structure/flora/straw_bail/alt_2
icon_state = "strawbail3"
@@ -298,6 +298,27 @@ var/global/chicken_count = 0
attacktext = "kicks"
health = 50
/mob/living/simple_animal/turkey
name = "turkey"
desc = "Benjamin Franklin would be proud."
icon_state = "turkey"
icon_living = "turkey"
icon_dead = "turkey_dead"
icon_resting = "turkey_rest"
speak = list("gobble?","gobble","GOBBLE")
speak_emote = list("gobble")
emote_see = list("struts around")
speak_chance = 1
turns_per_move = 5
see_in_dark = 6
meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat //enough to make one turkey
meat_amount = 4
response_help = "pets the"
response_disarm = "gently pushes aside the"
response_harm = "kicks the"
attacktext = "pecks"
health = 50
/mob/living/simple_animal/goose
name = "goose"
desc = "A pretty goose. Would make a nice comforter."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 KiB

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

After

Width:  |  Height:  |  Size: 160 KiB