Skip to content

Commit 1e1de9e

Browse files
authored
Moves around a bunch of stuff in the codebase. Add a file explaining the general structure of the codebase. (vgstation-coders#37568)
* game/centcomm_orders => datums/centcomm_orders * code/defines/procs => code/game/procs * Moves around the rest of code/defines. * C:/Program Files/Git/obj/structure/signpost into misc_structures.dm * game/events into game/adminbus_events to distinguish from random events * game/dna => modules/dna. 1] Moving files * game/dna => modules/dna 2. defines up top * game/dna => modules/dna : .dme * game/shuttles into modules/shuttles * game/mecha into modules/mecha * game/jobs => modules/jobs ; game/striketeams => datums/striketeams * Rest of code/game folder. * ATMOSPHERICS => game/machinery/ATMOSPHERICS * ZAS => modules/ZAS * Read me * dll * double s * other typo
1 parent bc43ed4 commit 1e1de9e

File tree

159 files changed

+434
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+434
-218
lines changed

__DEFINES/dna2.dm

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// What each index means:
2+
#define DNA_OFF_LOWERBOUND 1
3+
#define DNA_OFF_UPPERBOUND 2
4+
#define DNA_ON_LOWERBOUND 3
5+
#define DNA_ON_UPPERBOUND 4
6+
7+
// Define block bounds (off-low,off-high,on-low,on-high)
8+
// Used in setupgame.dm
9+
#define DNA_DEFAULT_BOUNDS list(1,2049,2050,4095)
10+
#define DNA_HARDER_BOUNDS list(1,3049,3050,4095)
11+
#define DNA_HARD_BOUNDS list(1,3490,3500,4095)
12+
13+
// UI Indices (can change to mutblock style, if desired)
14+
#define DNA_UI_HAIR_R 1
15+
#define DNA_UI_HAIR_G 2
16+
#define DNA_UI_HAIR_B 3
17+
#define DNA_UI_BEARD_R 4
18+
#define DNA_UI_BEARD_G 5
19+
#define DNA_UI_BEARD_B 6
20+
#define DNA_UI_SKIN_TONE 7
21+
#define DNA_UI_EYES_R 8
22+
#define DNA_UI_EYES_G 9
23+
#define DNA_UI_EYES_B 10
24+
#define DNA_UI_GENDER 11
25+
#define DNA_UI_BEARD_STYLE 12
26+
#define DNA_UI_HAIR_STYLE 13
27+
#define DNA_UI_LENGTH 13 // Update this when you add something, or you WILL break shit.
28+
29+
// Bit flag related to a dna2 block.
30+
#define MUTCHK_FORCED 1
31+
32+
/////////////////
33+
// GENE DEFINES
34+
/////////////////
35+
36+
// Skip checking if it's already active.
37+
// Used for genes that check for value rather than a binary on/off.
38+
#define GENE_ALWAYS_ACTIVATE 1
39+
40+
// One of the genes that can't be handed out at roundstart
41+
#define GENE_UNNATURAL 2
42+
43+
// Species gene
44+
#define GENE_NATURAL 4
45+
46+
#define GENETYPE_BAD 0
47+
#define GENETYPE_GOOD 1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

code/datums/gamemode/factions/vox_shoal.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ var/list/potential_bonus_items = list(
305305
var/vox_raider_data = SSpersistence_misc.read_data(/datum/persistence_task/vox_raiders)
306306
var/score_to_beat = vox_raider_data["best_score"]
307307
var/best_team = vox_raider_data["winning_team"]
308-
info = {"<h4>The shoal needs us to gather ressources. </h4>
308+
info = {"<h4>The shoal needs us to gather resources. </h4>
309309
<br/>
310310
Our best agents of all time were able to gather an estimate of [score_to_beat] voxcoins in assets, on [vox_raider_data["MM"]]/[vox_raider_data["DD"]]/[vox_raider_data["YY"]]. <br/>
311311
Their names are as follows: [best_team]."}

0 commit comments

Comments
 (0)