diff options
| author | historia <[not public]> | 2026-06-25 15:40:48 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-25 15:40:48 -0400 |
| commit | abd612c15799f604e671e83dc7c410ed2b44185f (patch) | |
| tree | 0597ca92350de73aac2a7cf26b2f2d6595dac0cc /internal/config/config.go | |
| parent | 2725e2927a1595c7b100d942d1f14146252adeb7 (diff) | |
| download | thehouseoficarus-abd612c15799f604e671e83dc7c410ed2b44185f.tar.gz | |
slop refactor
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index b01997c..28093fc 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -19,50 +19,50 @@ type ColorsConfig map[string]string func DefaultColors() ColorsConfig { return ColorsConfig{ - "room_name": "81 bold", - "room_number": "240", - "room_desc": "252", - "direction": "75", - "exit_direction": "75", - "exit_name": "114", - "protected_mob": "off", - "mob": "off", - "damage_dealt": "33", - "damage_taken": "196", - "damage": "196", + "room_name": "81 bold", + "room_number": "240", + "room_desc": "252", + "direction": "75", + "exit_direction": "75", + "exit_name": "114", + "protected_mob": "off", + "mob": "off", + "damage_dealt": "33", + "damage_taken": "196", + "damage": "196", - "xp": "222", - "level_up": "226 bold", - "item": "223", - "player_name": "189", - "death": "196 bold", - "victory": "83", - "miss": "243", - "error": "209", - "say": "230", - "global": "45", - "dialog": "117", - "broadcast": "215", - "fire": "208", - "eat_food": "156", - "drop_message": "186", - "credits_pickup": "220", - "visual_tick": "33 dim", + "xp": "222", + "level_up": "226 bold", + "item": "223", + "player_name": "189", + "death": "196 bold", + "victory": "83", + "miss": "243", + "error": "209", + "say": "230", + "global": "45", + "dialog": "117", + "broadcast": "215", + "fire": "208", + "eat_food": "156", + "drop_message": "186", + "credits_pickup": "220", + "visual_tick": "33 dim", "visual_first_tick": "196 bold", - "battery": "45", - "tech_depleted": "196", - "science_mod": "99", - "assassin_task": "219", - "dim": "243 dim", - "warning": "208", - "farm_grow": "34", - "farm_disease": "196", - "map_at": "15", + "battery": "45", + "tech_depleted": "196", + "science_mod": "99", + "assassin_task": "219", + "dim": "243 dim", + "warning": "208", + "farm_grow": "34", + "farm_disease": "196", + "map_at": "15", } } type GameConfig struct { - TickLength int `yaml:"tick_length"` + TickLength int `yaml:"tick_length"` StartupValidation ValidationConfig `yaml:"startup_validation"` } |
