mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Tested and confirmed working, all expedition areas and POIs spawned correctly and as expected. Added a new guide to help new contributors walk through adding new POIs or expedition areas, or gateway maps, in case the new system is confusing at all. This will probably also break the following PR's: https://github.com/VOREStation/VOREStation/pull/8807 https://github.com/VOREStation/VOREStation/pull/8558 https://github.com/VOREStation/VOREStation/pull/8820
43 lines
903 B
Plaintext
43 lines
903 B
Plaintext
//Academy Areas
|
|
|
|
/area/awaymission/academy
|
|
name = "\improper Academy Asteroids"
|
|
icon_state = "away"
|
|
|
|
/area/awaymission/academy/headmaster
|
|
name = "\improper Academy Fore Block"
|
|
icon_state = "away1"
|
|
|
|
/area/awaymission/academy/classrooms
|
|
name = "\improper Academy Classroom Block"
|
|
icon_state = "away2"
|
|
|
|
/area/awaymission/academy/academyaft
|
|
name = "\improper Academy Ship Aft Block"
|
|
icon_state = "away3"
|
|
|
|
/area/awaymission/academy/academygate
|
|
name = "\improper Academy Gateway"
|
|
icon_state = "away4"
|
|
|
|
//Academy Items
|
|
|
|
/obj/machinery/singularity/academy
|
|
dissipate = 0
|
|
move_self = 0
|
|
grav_pull = 1
|
|
|
|
/obj/machinery/singularity/academy/admin_investigate_setup()
|
|
return
|
|
|
|
/obj/machinery/singularity/academy/process()
|
|
eat()
|
|
if(prob(1))
|
|
mezzer()
|
|
|
|
|
|
/obj/item/clothing/glasses/meson/truesight
|
|
name = "The Lens of Truesight"
|
|
desc = "I can see forever!"
|
|
icon_state = "monocle"
|
|
item_state = "headset" |