Skip to content

Instantly share code, notes, and snippets.

@sandstrand
Created October 19, 2016 21:39
Show Gist options
  • Save sandstrand/61ccdabc5bea6ebdd5c9634c74b6e067 to your computer and use it in GitHub Desktop.
Save sandstrand/61ccdabc5bea6ebdd5c9634c74b6e067 to your computer and use it in GitHub Desktop.
New mappings
local families = {
cave = {
tier = 1,
floor = {
high = {
'floor.sand' = 10,
'floor.5.a.light' = 1,
'floor.3.a.light' = 1,
},
low = {
'floor.5.a.dark' = 1,
},
},
music = {
'dungeon_castle' = 1,
'dungeon_dark' = 1,
'dungeon_light' = 1.4,
},
destructibles = {
'pot' = 'entities/vase',
'stone1' = 'entities/stone_white',
'stone2' = 'entities/stone_black',
},
},
local enemies = {
burrower = {
tier = 1,
families = {
'smoothbrick' = 1,
'brick' = 1,
},
exclusive_floor = 'sand',
},
fireworm = {
tier = 1,
families = {
'smoothbrick' = 1,
'brick' = 1,
},
deny_floor = 'shallow_water',
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment