Skip to content

Commit

Permalink
changes path for this
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Sep 29, 2024
1 parent fc3fb20 commit 5447f9c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion _maps/RandomRuins/IceRuins/icemoon_crashed_holemaker.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
pixel_x = -32
},
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/mission_poi/blackbox,
/obj/effect/landmark/mission_poi/recovery,
/turf/open/floor/plasteel/dark,
/area/ruin/unpowered/crashed_holemaker)
"cS" = (
Expand Down
2 changes: 1 addition & 1 deletion _maps/RandomRuins/IceRuins/icemoon_hydroponics_lab.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -2197,7 +2197,7 @@
/area/ruin/powered/hydroponicslab)
"Xb" = (
/obj/structure/table/wood,
/obj/effect/landmark/mission_poi/blackbox,
/obj/effect/landmark/mission_poi/recovery,
/turf/open/floor/wood/walnut,
/area/ruin/powered/hydroponicslab)
"Xt" = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/mission_poi/blackbox,
/obj/effect/landmark/mission_poi/recovery,
/turf/open/floor/wood,
/area/ruin/powered)
"mI" = (
Expand Down
2 changes: 1 addition & 1 deletion code/modules/dynamic_missions/missions/guarded/nt_files.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/datum/mission/dynamic/simple/guarded/nt_files/generate_mission_details()
name = pick("NT asset recovery", "Asset recovery requested ASAP")
author = "Captain [random_species_name()]"
desc = pick("Look- long story short, I need this folder retrieved. You don't ask why, I make sure you get paid")
desc = pick("Look- long story short, I need this folder retrieved. You don't ask why, I make sure you get paid.")

/datum/mission/dynamic/simple/guarded/nt_files/spawn_guard(obj/effect/landmark/mission_poi/guard_poi)
guard_type = pick(/mob/living/simple_animal/hostile/human/syndicate/melee, /mob/living/simple_animal/hostile/human/syndicate/ranged)
Expand Down
3 changes: 1 addition & 2 deletions code/modules/dynamic_missions/missions/simple.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/datum/mission/dynamic/simple
name = "Item recovery"
desc = "Retrive this thing for us and we will pay you"
setpiece_poi = /obj/effect/landmark/mission_poi/recovery

/datum/mission/dynamic/simple/spawn_mission_setpiece(datum/overmap/dynamic/planet)
for(var/obj/effect/landmark/mission_poi/mission_poi in planet.spawned_mission_pois)
Expand Down
12 changes: 8 additions & 4 deletions code/modules/dynamic_missions/missions/simple/blackbox.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
/datum/mission/dynamic/simple/blackbox
name = "Blackbox recovery"
desc = "Recover one of our lost blackboxes from the location at this planet. We've pinged its location to a local ruin."
setpiece_poi = /obj/effect/landmark/mission_poi/blackbox
setpiece_item = /obj/item/blackbox

/obj/effect/landmark/mission_poi/blackbox
/datum/mission/dynamic/kill/generate_mission_details()
. = ..()
if(!name)
name = "[setpiece_item::name] recovery"
if(!desc)
desc = "Recover one of our lost [setpiece_item::name] from the location at this planet. We've pinged its location to a local ruin."

/obj/effect/landmark/mission_poi/recovery
icon_state = "main_blackbox"

0 comments on commit 5447f9c

Please sign in to comment.