The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
996 B
43 lines
996 B
config_path = assets/config/
|
|
|
|
# 360x240 is 15x10 tiles of visibility.
|
|
WINDOW_SIZE = 360,240
|
|
|
|
# Graphics Loading Config
|
|
gfx_config = gfx/gfx.txt
|
|
|
|
# Map Files Loading Config
|
|
map_config = levels.txt
|
|
|
|
# Starting map when loading the game.
|
|
starting_map = CAMPAIGN_1_1
|
|
|
|
# Player Properties Loading Config
|
|
player_config = Player.txt
|
|
|
|
# Monster Properties Loading Config
|
|
monsters_config = Monsters.txt
|
|
|
|
# Monster Strategy Config
|
|
monsterstrategies_config = MonsterStrategies.txt
|
|
|
|
# Path to class configuration files
|
|
class_directory = classes/
|
|
|
|
# Class list to be loaded into the game.
|
|
class_list = Warrior, Thief, Ranger, Trapper, Wizard, Witch
|
|
|
|
# Whether or not to show individual data accesses from config data structure.
|
|
debug_access_options = 0
|
|
|
|
# Shows extra info about the player on the HUD
|
|
debug_player_info = 0
|
|
|
|
# Shows collision boxes of tiles.
|
|
debug_collision_boxes = 0
|
|
|
|
# Shows pathfinding debugging
|
|
debug_pathfinding = 0
|
|
|
|
# ms precision of animation tile caching.
|
|
animation_tile_precision = 50 |