aboutsummaryrefslogtreecommitdiff
path: root/internal/config
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go76
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"`
}