mkxp-sunshine/scripts/Data_Footsteps.rb
2016-03-11 02:29:08 -05:00

45 lines
653 B
Ruby

FOOTSTEP_SFX = [
# Start
['step_wood'],
# Blue
['step_gravel',
'step_wood'],
# Blue Interior
['step_tile',
'step_wood'],
# Green
['step_grass',
'step_wood',
'step_gravel'],
# Green Interior
['step_grass',
'step_tile'],
# Red
['step_grate',
'step_metal'],
# Red Interior
['step_tile',
'step_wood'],
# Tower
[],
# Tower Start
[],
# Blank
[],
# Blue Factory Interior
['step_metal'],
# Red Ground
[],
# Red Factory
[],
# Red Factory Interior
['step_metal'],
# Red observation deck
['step_metal',
'step_tile'],
]
FOOTSTEP_AMT = {
'step_metal' => 4,
'step_tile' => 4,
}