diff --git a/_maps/RandomZLevels/away_mission/jungleresort.dmm b/_maps/RandomZLevels/away_mission/jungleresort.dmm index 8cc5e97a75..d4698fec9a 100644 --- a/_maps/RandomZLevels/away_mission/jungleresort.dmm +++ b/_maps/RandomZLevels/away_mission/jungleresort.dmm @@ -164,6 +164,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/item/kitchen/knife, /turf/open/floor/wood, /area/awaymission/jungleresort) "cn" = ( @@ -216,6 +217,12 @@ /obj/structure/flora/rock, /turf/open/floor/plating/dirt/jungle, /area/awaymission/jungleresort) +"dm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/clothing/head/hardhat/cakehat, +/turf/open/floor/wood, +/area/awaymission/jungleresort) "dn" = ( /obj/structure/chair/comfy/brown, /turf/open/floor/wood, @@ -1043,7 +1050,7 @@ /area/awaymission/jungleresort) "pP" = ( /obj/structure/sign/warning, -/turf/closed/mineral/random/labormineral, +/turf/closed/mineral/random/labormineral/jungle, /area/awaymission/jungleresort) "pQ" = ( /turf/open/water/jungle, @@ -1234,9 +1241,9 @@ /area/awaymission/jungleresort) "sS" = ( /obj/structure/table/wood, -/obj/item/lighter/gold, /obj/item/storage/fancy/cigarettes/cigpack_robustgold, /obj/item/clothing/mask/cigarette/robustgold, +/obj/item/lighter, /turf/open/floor/wood, /area/awaymission/jungleresort) "td" = ( @@ -1852,7 +1859,7 @@ /turf/open/floor/grass, /area/awaymission/jungleresort) "AR" = ( -/turf/closed/mineral/random/labormineral, +/turf/closed/mineral/random/labormineral/jungle, /area/awaymission/jungleresort) "AS" = ( /obj/effect/turf_decal/weather/dirt{ @@ -2148,6 +2155,7 @@ /obj/item/storage/box/donkpockets, /obj/item/camera, /obj/item/camera_film, +/obj/item/storage/toolbox/mechanical, /turf/open/floor/wood, /area/awaymission/jungleresort) "EO" = ( @@ -2730,7 +2738,7 @@ /turf/open/floor/plating, /area/awaymission/jungleresort) "LR" = ( -/mob/living/simple_animal/hostile/jungle/leaper, +/mob/living/simple_animal/hostile/jungle/leaper/boss, /turf/open/water/jungle, /area/awaymission/jungleresort) "LU" = ( @@ -3134,7 +3142,7 @@ /obj/item/clothing/under/rank/civilian/curator/treasure_hunter, /obj/item/clothing/head/fedora/curator, /obj/item/clothing/shoes/workboots/mining, -/obj/item/melee/curator_whip, +/obj/item/melee/chainofcommand/jungle, /turf/open/floor/plating/dirt/jungle, /area/awaymission/jungleresort) "RW" = ( @@ -3219,6 +3227,8 @@ /obj/item/gun/ballistic/shotgun/sc_pump, /obj/item/clothing/suit/armor/vest, /obj/item/clothing/head/helmet, +/obj/item/ammo_casing/shotgun/buckshot, +/obj/item/ammo_casing/shotgun/buckshot, /turf/open/floor/plating/dirt/jungle, /area/awaymission/jungleresort) "SV" = ( @@ -3348,6 +3358,9 @@ /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood/innards, /obj/structure/stone_tile/surrounding/cracked, +/obj/item/fireaxe, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/shoes/workboots, /turf/open/floor/plating/dirt/jungle, /area/awaymission/jungleresort) "Us" = ( @@ -3723,7 +3736,6 @@ /obj/structure/stone_tile/surrounding_tile/cracked{ dir = 9 }, -/obj/item/ammo_casing/shotgun/buckshot, /turf/open/floor/plating/dirt/jungle, /area/awaymission/jungleresort) "Zn" = ( @@ -6244,7 +6256,7 @@ AR AR AR YQ -wH +AR AR AR AR @@ -12607,7 +12619,7 @@ AR AR AR AR -YQ +sQ nw ro UB @@ -17653,7 +17665,7 @@ Jd sS Wi Co -Se +dm tK Jd Jj @@ -24088,7 +24100,7 @@ YQ YQ YQ YQ -ZV +AR AR AR AR diff --git a/code/modules/awaymissions/mission_code/jungleresort.dm b/code/modules/awaymissions/mission_code/jungleresort.dm index 9b2188adc5..6f66f1135a 100644 --- a/code/modules/awaymissions/mission_code/jungleresort.dm +++ b/code/modules/awaymissions/mission_code/jungleresort.dm @@ -12,6 +12,12 @@ name = "Resort Notice" info = "Due to unforeseen circumstances and the disappearance of several resort employees and visitors, the resort shall be closed to the public until further notice. - Resort Manager Joe Lawrence" +/obj/item/melee/chainofcommand/jungle + name = "treasure hunter's whip" + desc = "The tool of a fallen treasure hunter, old and outdated, it still stings like hell to be hit by." + hitsound = 'sound/weapons/whip.ogg' + icon_state = "whip" + //turfs /turf/open/water/jungle @@ -23,9 +29,16 @@ /turf/open/floor/plating/dirt/dark/jungle initial_gas_mix = "o2=22;n2=82;TEMP=293.15" +/turf/closed/mineral/random/labormineral/jungle + baseturfs = /turf/open/floor/plating/asteroid + turf_type = /turf/open/floor/plating/asteroid + //mobs /mob/living/carbon/monkey/punpun/curiousgorge name = "Curious Gorge" pet_monkey_names = list("Curious Gorge", "Jungle Gorge", "Jungah Joe", "Mr. Monke") - rare_pet_monkey_names = list("Sun Mukong", "Monkey Kong") \ No newline at end of file + rare_pet_monkey_names = list("Sun Mukong", "Monkey Kong") + +/mob/living/simple_animal/hostile/jungle/leaper/boss + health = 450 \ No newline at end of file