Boots block monsters

This commit is contained in:
Eevee (Evelyn Woods) 2020-09-10 15:40:56 -06:00
parent fccb59a1a5
commit dd287284ef

View File

@ -704,16 +704,21 @@ const TILE_TYPES = {
is_key: true, is_key: true,
}, },
// Tools // Tools
// TODO note: ms allows blocks to pass over tools
cleats: { cleats: {
draw_layer: LAYER_ITEM, draw_layer: LAYER_ITEM,
is_item: true, is_item: true,
is_tool: true, is_tool: true,
blocks_monsters: true,
blocks_blocks: true,
item_ignores: new Set(['ice', 'ice_nw', 'ice_ne', 'ice_sw', 'ice_se']), item_ignores: new Set(['ice', 'ice_nw', 'ice_ne', 'ice_sw', 'ice_se']),
}, },
suction_boots: { suction_boots: {
draw_layer: LAYER_ITEM, draw_layer: LAYER_ITEM,
is_item: true, is_item: true,
is_tool: true, is_tool: true,
blocks_monsters: true,
blocks_blocks: true,
item_ignores: new Set([ item_ignores: new Set([
'force_floor_n', 'force_floor_n',
'force_floor_s', 'force_floor_s',
@ -726,12 +731,16 @@ const TILE_TYPES = {
draw_layer: LAYER_ITEM, draw_layer: LAYER_ITEM,
is_item: true, is_item: true,
is_tool: true, is_tool: true,
blocks_monsters: true,
blocks_blocks: true,
item_ignores: new Set(['fire']), item_ignores: new Set(['fire']),
}, },
flippers: { flippers: {
draw_layer: LAYER_ITEM, draw_layer: LAYER_ITEM,
is_item: true, is_item: true,
is_tool: true, is_tool: true,
blocks_monsters: true,
blocks_blocks: true,
item_ignores: new Set(['water']), item_ignores: new Set(['water']),
}, },