mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
All /world/ stuff that I've found is now in code/world.dm instead of being scattered throughout the code in 6-7 files. *****IMPORTANT***** This means that hub.dm is now part of world.dm. Server hosts using the hub will likely have to redo the hub/password variables! Again, that stuff is now located in code/world.dm ******************* The tester list has been removed as it is not in use. /code/defines - Moved atom.dm code into /code/game/atom.dm and atom_movable.dm - Moved hub.dm code into /code/world.dm - Moved the /defines/tanning into objects/item/sheets/leather.dm - Moved /defines/area/ into game/area/ - Moved turf.dm code into the code/game/turfs folder and divided it up into meaningful places A lot of the files in /code/game were placed in new areas since they really didn't have a reason to be there. - algorithm.dm: - - The world stuff is in world.dm. - - countJob() and AutoUpdateTK() were removed entirely (unused). - - AutoUpdateAI() is now in /mob/living/silicon/ai.dm - atom_procs.dm was split into atom.dm and atom_movable.dm - cellautomata.dm - - World stuff was moved into world.dm - - Atom stuff was moved into atom.dm and atom_movable.dm - - Atom verbs were moved into code/game/verbs/atom_verbs.dm - chemistry.dm - - Beaker box code was moved into storage/misc.dm - - The trash can and 'alechemy' paper were removed. (unused) - Landmarks.dm was moved into /objects/effects/landmarks.dm - prisonshuttle.dm, specops_shuttle.dm, syndicate_shuttle.dm and syndicate_specops_shuttle.dm have been moved into game/machinery/computer/ - status.dm and topic.dm code were moved into world.dm - step_triggers.dm are now in objects/effects/step_triggers.dm - throwing.dm was split into appropriate files (carbon mob code, atom_movable.dm, ect) - vote.dm is now in code/datums /code/game/asteroid was split up. - turf.dm was moved into game/turfs/simulated/asteroid.dm - artifacts were split up - - Wish granter is now in game/machinery - - The stealth box is gone (unused) - - The list of 'space suprises' was moved into astroid.dm - asteroid.dm, being the only file left, was moved into /code/game and finally... modules/mob/organs files are now in code/datums/organs git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4659 316c924e-a436-60f5-8080-3fe189b3f50e
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
/turf/space/transit
|
|
var/pushdirection // push things that get caught in the transit tile this direction
|
|
|
|
//Overwrite because we dont want people building rods in space.
|
|
/turf/space/transit/attackby(obj/O as obj, mob/user as mob)
|
|
return
|
|
|
|
/turf/space/transit/north // moving to the north
|
|
|
|
pushdirection = SOUTH // south because the space tile is scrolling south
|
|
|
|
//IF ANYONE KNOWS A MORE EFFICIENT WAY OF MANAGING THESE SPRITES, BE MY GUEST.
|
|
shuttlespace_ns1
|
|
icon_state = "speedspace_ns_1"
|
|
shuttlespace_ns2
|
|
icon_state = "speedspace_ns_2"
|
|
shuttlespace_ns3
|
|
icon_state = "speedspace_ns_3"
|
|
shuttlespace_ns4
|
|
icon_state = "speedspace_ns_4"
|
|
shuttlespace_ns5
|
|
icon_state = "speedspace_ns_5"
|
|
shuttlespace_ns6
|
|
icon_state = "speedspace_ns_6"
|
|
shuttlespace_ns7
|
|
icon_state = "speedspace_ns_7"
|
|
shuttlespace_ns8
|
|
icon_state = "speedspace_ns_8"
|
|
shuttlespace_ns9
|
|
icon_state = "speedspace_ns_9"
|
|
shuttlespace_ns10
|
|
icon_state = "speedspace_ns_10"
|
|
shuttlespace_ns11
|
|
icon_state = "speedspace_ns_11"
|
|
shuttlespace_ns12
|
|
icon_state = "speedspace_ns_12"
|
|
shuttlespace_ns13
|
|
icon_state = "speedspace_ns_13"
|
|
shuttlespace_ns14
|
|
icon_state = "speedspace_ns_14"
|
|
shuttlespace_ns15
|
|
icon_state = "speedspace_ns_15"
|
|
|
|
/turf/space/transit/east // moving to the east
|
|
|
|
pushdirection = WEST
|
|
|
|
shuttlespace_ew1
|
|
icon_state = "speedspace_ew_1"
|
|
shuttlespace_ew2
|
|
icon_state = "speedspace_ew_2"
|
|
shuttlespace_ew3
|
|
icon_state = "speedspace_ew_3"
|
|
shuttlespace_ew4
|
|
icon_state = "speedspace_ew_4"
|
|
shuttlespace_ew5
|
|
icon_state = "speedspace_ew_5"
|
|
shuttlespace_ew6
|
|
icon_state = "speedspace_ew_6"
|
|
shuttlespace_ew7
|
|
icon_state = "speedspace_ew_7"
|
|
shuttlespace_ew8
|
|
icon_state = "speedspace_ew_8"
|
|
shuttlespace_ew9
|
|
icon_state = "speedspace_ew_9"
|
|
shuttlespace_ew10
|
|
icon_state = "speedspace_ew_10"
|
|
shuttlespace_ew11
|
|
icon_state = "speedspace_ew_11"
|
|
shuttlespace_ew12
|
|
icon_state = "speedspace_ew_12"
|
|
shuttlespace_ew13
|
|
icon_state = "speedspace_ew_13"
|
|
shuttlespace_ew14
|
|
icon_state = "speedspace_ew_14"
|
|
shuttlespace_ew15
|
|
icon_state = "speedspace_ew_15" |