Upload files to 'engine'

This commit is contained in:
rixty dixet 2021-03-22 18:52:30 +01:00
parent 533f714c9c
commit 2938d2f457
4 changed files with 57 additions and 0 deletions

9
engine/mouse_cursor.txt Normal file
View File

@ -0,0 +1,9 @@
# Context-sensitive mouse cursors
# Format is:
# action=filename, x-offset, y-offset
# "action" can be any of: normal, interact, talk, attack
normal=images/cursors/cursor_normal.png
interact=images/cursors/cursor_interact.png
talk=images/cursors/cursor_interact.png
attack=images/cursors/cursor_attack.png

11
engine/resolutions.txt Normal file
View File

@ -0,0 +1,11 @@
# Screen and icon resolution settings
menu_frame_width=640
menu_frame_height=480
icon_size=32
required_width=640
required_height=480
virtual_height=480

33
engine/stats.txt Normal file
View File

@ -0,0 +1,33 @@
# Avatar Attributes Definitions
# Values should be integer
stat_points_per_level=0
max_points_per_stat=10
stat=hp,50
# 5x10+25 (opzionali: 15+25)
stat_per_level=hp,0
#stat_per_primary=physical,hp,10
stat=hp_regen,0
#stat_per_primary=physical,hp_regen,10
stat=mp,270
#The player starts the game with 270 maximum energy. Eating a Stardrop permanently increases maximum energy by 34 points. Eating every Stardrop available in the game permanently increases maximum energy to 508.
#stat_per_primary=mental,mp,5
stat=mp_regen,0
#stat_per_primary=mental,mp_regen,5
stat=accuracy,100
#stat_per_primary=offense,accuracy,5
stat=avoidance,0
#stat_per_primary=defense,avoidance,5
stat=dmg_ranged_min,1
stat=dmg_ranged_max,1
speed=5
sfx_step=cloth

View File

@ -0,0 +1,4 @@
# Tileset Settings
orientation=orthogonal
# tile_size: width, height
tile_size=32,32