various fixes
This commit is contained in:
parent
a9af97925e
commit
3ceb07f4d1
61 changed files with 49695 additions and 25250 deletions
BIN
art/game/static_wall_b.png
Normal file
BIN
art/game/static_wall_b.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 B |
BIN
art/game/static_wall_g.png
Normal file
BIN
art/game/static_wall_g.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 B |
BIN
art/game/static_wall_r.png
Normal file
BIN
art/game/static_wall_r.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 B |
2
main.lua
2
main.lua
|
|
@ -34,7 +34,7 @@ function love.load()
|
||||||
inputTimer = Timer.new()
|
inputTimer = Timer.new()
|
||||||
|
|
||||||
currentRoom = Room:new{
|
currentRoom = Room:new{
|
||||||
name = "test"
|
name = "start" -- TEMP: load a migrated level to eyeball it; revert once the room picker lands
|
||||||
}
|
}
|
||||||
|
|
||||||
response = ""
|
response = ""
|
||||||
|
|
|
||||||
197
room.lua
197
room.lua
|
|
@ -14,30 +14,46 @@ require "dialogue_manager"
|
||||||
require "generic_moveable"
|
require "generic_moveable"
|
||||||
require "generic_unmoveable"
|
require "generic_unmoveable"
|
||||||
|
|
||||||
|
-- cache loaded images so repeated placing/loading doesn't re-decode PNGs
|
||||||
|
local placeImageCache = {}
|
||||||
|
local function loadPlaceImage(path)
|
||||||
|
if not placeImageCache[path] then
|
||||||
|
placeImageCache[path] = love.graphics.newImage(path)
|
||||||
|
end
|
||||||
|
return placeImageCache[path]
|
||||||
|
end
|
||||||
|
|
||||||
function Room:initialize(t)
|
function Room:initialize(t)
|
||||||
self.player = {}
|
self.player = {}
|
||||||
self.switches = { red = {}, green = {}, blue = {} }
|
self.switches = { red = {}, green = {}, blue = {} }
|
||||||
self.doors = {}
|
self.doors = {}
|
||||||
self.collideables = { red = {}, green = {}, blue = {} }
|
self.collideables = { red = {}, green = {}, blue = {} }
|
||||||
|
self.npcs = {}
|
||||||
self.activeColors = {red = false, green = false, blue = false}
|
self.activeColors = {red = false, green = false, blue = false}
|
||||||
self.colorsPlayerHas = {}
|
self.colorsPlayerHas = {}
|
||||||
|
|
||||||
if t.name then
|
if t.name then
|
||||||
print("loaded!!")
|
print("loaded!!")
|
||||||
self:load(t.name)
|
self:load(t.name) -- registers objects (and any saved players) from the .sav
|
||||||
print(t.name)
|
print(t.name)
|
||||||
|
|
||||||
if t.player then
|
if t.player then
|
||||||
|
-- entering from another room: place the carried colors at the entry point
|
||||||
for _, color in ipairs(t.player.activeColors) do
|
for _, color in ipairs(t.player.activeColors) do
|
||||||
self:registerPlayer(Player:new(t.player.x, t.player.y, color), color)
|
if self.player[color] then
|
||||||
self:setActiveColor(color, true)
|
self.player[color].x, self.player[color].y = t.player.x, t.player.y
|
||||||
end
|
|
||||||
else
|
else
|
||||||
for color, active in pairs(self.activeColors) do
|
self:registerPlayer(Player:new(t.player.x, t.player.y, color), color)
|
||||||
self:registerPlayer(Player:new(1, 1, color), color)
|
end
|
||||||
self:setActiveColor(color, true)
|
self:setActiveColor(color, true)
|
||||||
end
|
end
|
||||||
|
elseif not next(self.player) then
|
||||||
|
-- fresh load of a room with no saved player: default red spawn so it's
|
||||||
|
-- playable (the player starts with only red)
|
||||||
|
self:registerPlayer(Player:new(1, 1, "red"), "red")
|
||||||
|
self:setActiveColor("red", true)
|
||||||
end
|
end
|
||||||
self.exits = t.exits
|
|
||||||
self.name = t.name
|
self.name = t.name
|
||||||
else
|
else
|
||||||
self.colorsPlayerHas = {"red", "green", "blue"}
|
self.colorsPlayerHas = {"red", "green", "blue"}
|
||||||
|
|
@ -108,20 +124,45 @@ end
|
||||||
|
|
||||||
function Room:draw()
|
function Room:draw()
|
||||||
|
|
||||||
|
-- you only perceive the color channels the player actually has: with only a
|
||||||
|
-- red copy, only the red layer is drawn (a stacked r+g+b wall shows as red,
|
||||||
|
-- not white). Doors span all channels, so dedupe and draw them once.
|
||||||
|
local visible = {}
|
||||||
|
for _, c in ipairs(self.colorsPlayerHas) do visible[c] = true end
|
||||||
|
|
||||||
for color, player in pairs(self.player) do
|
for color, player in pairs(self.player) do
|
||||||
player:draw()
|
if visible[color] then player:draw() end
|
||||||
end
|
end
|
||||||
|
local drawnDoors = {}
|
||||||
for color, entityArray in pairs(self.collideables) do
|
for color, entityArray in pairs(self.collideables) do
|
||||||
|
if visible[color] then
|
||||||
for _, entity in pairs(entityArray) do
|
for _, entity in pairs(entityArray) do
|
||||||
|
if entity:isInstanceOf(Door) then
|
||||||
|
if not drawnDoors[entity] then
|
||||||
|
drawnDoors[entity] = true
|
||||||
|
entity:draw()
|
||||||
|
end
|
||||||
|
else
|
||||||
entity:draw()
|
entity:draw()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
for color, switchArray in pairs(self.switches) do
|
for color, switchArray in pairs(self.switches) do
|
||||||
|
if visible[color] then
|
||||||
for _, switch in pairs(switchArray) do
|
for _, switch in pairs(switchArray) do
|
||||||
switch:draw()
|
switch:draw()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
-- npcs (old "sages") are just markers for now: draw a "?" in their cell,
|
||||||
|
-- tinted to only the channels the player has (never a white pixel)
|
||||||
|
local cellW, cellH = width / gridWidth, height / gridHeight
|
||||||
|
love.graphics.setColor(visible.red and 255 or 0, visible.green and 255 or 0, visible.blue and 255 or 0)
|
||||||
|
for _, npc in ipairs(self.npcs) do
|
||||||
|
love.graphics.print("?", (npc.x - 1) * cellW + cellW * 0.3, (npc.y - 1) * cellH + cellH * 0.1, 0, 2, 2)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function Room:createCollideablesMatrix()
|
function Room:createCollideablesMatrix()
|
||||||
for color, entities in pairs(self.collideables) do
|
for color, entities in pairs(self.collideables) do
|
||||||
|
|
@ -369,10 +410,13 @@ function Room:colorIsActive(color)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Room:getInactiveColors()
|
function Room:getInactiveColors()
|
||||||
|
-- only colors the player actually has a copy of but that aren't active right
|
||||||
|
-- now (a left-behind copy). Colors the player hasn't acquired have no copy to
|
||||||
|
-- merge with, so they must not appear here.
|
||||||
local colors = {}
|
local colors = {}
|
||||||
|
|
||||||
for color, active in pairs(self.activeColors) do
|
for _, color in ipairs(self.colorsPlayerHas) do
|
||||||
if not active then
|
if not self.activeColors[color] then
|
||||||
table.insert(colors, color)
|
table.insert(colors, color)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
@ -501,31 +545,54 @@ end
|
||||||
|
|
||||||
function Room:nextRoomCheck()
|
function Room:nextRoomCheck()
|
||||||
for _, color in ipairs(self:getActiveColors()) do
|
for _, color in ipairs(self:getActiveColors()) do
|
||||||
if not self:isInBounds(self.player[color]:getGridPos()) then
|
local player = self.player[color]
|
||||||
nextRoom(self.player[color]:getGridPos())
|
if player and not self:isInBounds(player:getGridPos()) then
|
||||||
|
nextRoom(player:getGridPos())
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
-- Instantiate one object from the flat {class,color,x,y} schema. `class` is a
|
||||||
|
-- key: the built-in behaviour classes (door/switch/player) plus the two generic
|
||||||
|
-- grid pieces (wall/static_wall), and finally any art asset resolved by name via
|
||||||
|
-- the globalAssetProperties registry (this is what the level editor places).
|
||||||
function Room:createEntity(class, color, x, y)
|
function Room:createEntity(class, color, x, y)
|
||||||
if class == "Door" then
|
local entity
|
||||||
self:registerDoor(Door:new(x, y))
|
if class == "door" then
|
||||||
elseif class == "Wall" then
|
entity = Door:new(x, y)
|
||||||
self:registerCollidable(Wall:new(x, y, color), {color})
|
self:registerDoor(entity)
|
||||||
elseif class == "Switch" then
|
elseif class == "switch" then
|
||||||
self.registerSwitch(Switch:new(x, y), color)
|
entity = Switch:new(x, y, color)
|
||||||
|
self:registerSwitch(entity, color)
|
||||||
elseif class == "player" then
|
elseif class == "player" then
|
||||||
self:registerPlayer(Player:new(x, y, color), color)
|
entity = Player:new(x, y, color)
|
||||||
elseif class == "Box" then
|
self:registerPlayer(entity, color)
|
||||||
self:registerCollidable(Box:new(x, y, color), {color})
|
self:setActiveColor(color, true)
|
||||||
|
elseif class == "wall" then
|
||||||
|
entity = GenericUnmoveable:new(x, y, color, sprites.box[color])
|
||||||
|
self:registerCollidable(entity, {color})
|
||||||
|
elseif class == "static_wall" then
|
||||||
|
entity = GenericUnmoveable:new(x, y, color, sprites.wall)
|
||||||
|
self:registerCollidable(entity, {color})
|
||||||
elseif class == "npc" then
|
elseif class == "npc" then
|
||||||
-- do something soon
|
self:registerNpc(x, y)
|
||||||
elseif class == "Ass" then
|
else
|
||||||
--do this later when we have a more definite schema
|
-- generic art asset placed via the editor, resolved by name
|
||||||
-- self:registerAssorted(Ass:new(x, y, color, name))
|
local props = globalAssetProperties and globalAssetProperties[class]
|
||||||
|
if props and props.sprites and props.sprites[color] then
|
||||||
|
local sprite = loadPlaceImage(props.sprites[color])
|
||||||
|
if props.class == "moveable" then
|
||||||
|
entity = GenericMoveable:new(x, y, color, sprite, class)
|
||||||
|
else
|
||||||
|
entity = GenericUnmoveable:new(x, y, color, sprite)
|
||||||
end
|
end
|
||||||
|
self:registerCollidable(entity, {color})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if entity then entity.saveClass = class end
|
||||||
|
return entity
|
||||||
end
|
end
|
||||||
|
|
||||||
function Room:registerCollidable(entityPointer, colorArray)
|
function Room:registerCollidable(entityPointer, colorArray)
|
||||||
|
|
@ -549,6 +616,10 @@ function Room:registerPlayer(entityPointer, color)
|
||||||
self.player[color] = entityPointer
|
self.player[color] = entityPointer
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function Room:registerNpc(x, y)
|
||||||
|
table.insert(self.npcs, { x = x, y = y })
|
||||||
|
end
|
||||||
|
|
||||||
function Room:getCellFromMousePos(mouseX, mouseY)
|
function Room:getCellFromMousePos(mouseX, mouseY)
|
||||||
local cell = {}
|
local cell = {}
|
||||||
cell.x = math.ceil(mouseX * gridWidth / width)
|
cell.x = math.ceil(mouseX * gridWidth / width)
|
||||||
|
|
@ -571,7 +642,10 @@ function Room:attemptDelete(mouseX, mouseY, color)
|
||||||
-- player
|
-- player
|
||||||
if self.player[c] and self.player[c]:occupiesCell(cell) then
|
if self.player[c] and self.player[c]:occupiesCell(cell) then
|
||||||
self.player[c] = nil
|
self.player[c] = nil
|
||||||
self.colorsPlayerHas[c] = false
|
self:setActiveColor(c, false)
|
||||||
|
for i = #self.colorsPlayerHas, 1, -1 do
|
||||||
|
if self.colorsPlayerHas[i] == c then table.remove(self.colorsPlayerHas, i) end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
-- collidables (iterate backwards so table.remove is safe)
|
-- collidables (iterate backwards so table.remove is safe)
|
||||||
local entityArray = self.collideables[c]
|
local entityArray = self.collideables[c]
|
||||||
|
|
@ -591,14 +665,6 @@ function Room:attemptDelete(mouseX, mouseY, color)
|
||||||
self:tick()
|
self:tick()
|
||||||
end
|
end
|
||||||
|
|
||||||
local placeImageCache = {}
|
|
||||||
local function loadPlaceImage(path)
|
|
||||||
if not placeImageCache[path] then
|
|
||||||
placeImageCache[path] = love.graphics.newImage(path)
|
|
||||||
end
|
|
||||||
return placeImageCache[path]
|
|
||||||
end
|
|
||||||
|
|
||||||
function Room:attemptPlace(name, props, mouseX, mouseY, color)
|
function Room:attemptPlace(name, props, mouseX, mouseY, color)
|
||||||
if not props or not props.sprites then return end
|
if not props or not props.sprites then return end
|
||||||
local cell = self:getCellFromMousePos(mouseX, mouseY)
|
local cell = self:getCellFromMousePos(mouseX, mouseY)
|
||||||
|
|
@ -611,19 +677,11 @@ function Room:attemptPlace(name, props, mouseX, mouseY, color)
|
||||||
colors = {color}
|
colors = {color}
|
||||||
end
|
end
|
||||||
|
|
||||||
-- one generic entity per placed channel; each lives on its own collision
|
-- one entity per placed channel, via the same path level-loading uses; the
|
||||||
-- layer and the additive blend combines them into full color
|
-- additive blend combines the channels into full color
|
||||||
for _, c in ipairs(colors) do
|
for _, c in ipairs(colors) do
|
||||||
local path = props.sprites[c]
|
if props.sprites[c] then
|
||||||
if path then
|
self:createEntity(name, c, cell.x, cell.y)
|
||||||
local sprite = loadPlaceImage(path)
|
|
||||||
local entity
|
|
||||||
if props.class == "moveable" then
|
|
||||||
entity = GenericMoveable:new(cell.x, cell.y, c, sprite, name)
|
|
||||||
else
|
|
||||||
entity = GenericUnmoveable:new(cell.x, cell.y, c, sprite)
|
|
||||||
end
|
|
||||||
self:registerCollidable(entity, {c})
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
self:tick()
|
self:tick()
|
||||||
|
|
@ -640,10 +698,8 @@ function Room:load(name)
|
||||||
end
|
end
|
||||||
|
|
||||||
function Room:deserialize(saveTable)
|
function Room:deserialize(saveTable)
|
||||||
for entityClass, entities in pairs(saveTable) do
|
for _, obj in ipairs(saveTable.objects or {}) do
|
||||||
for _, entity in pairs(entities) do
|
self:createEntity(obj.class, obj.color, obj.x, obj.y)
|
||||||
self:createEntity(entityClass, entity.color, entity.x, entity.y)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -656,37 +712,44 @@ function Room:save()
|
||||||
end
|
end
|
||||||
|
|
||||||
function Room:serialize()
|
function Room:serialize()
|
||||||
local level = {}
|
local objects = {}
|
||||||
|
|
||||||
level.player = {}
|
local function emit(class, color, entity)
|
||||||
for _, color in ipairs(self:getInactiveColors()) do
|
local pos = entity:getGridPos()
|
||||||
level.player[color] = self:getPlayerObject(color):getSerializationTable()
|
table.insert(objects, { class = class, color = color, x = pos.x, y = pos.y })
|
||||||
end
|
end
|
||||||
|
|
||||||
level.door = {}
|
for color, player in pairs(self.player) do
|
||||||
for _, door in pairs(self:getDoors()) do
|
emit("player", color, player)
|
||||||
table.insert(level.door, doors:getSerializationTable())
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- collideables hold walls/static_walls/generics on one color each, plus
|
||||||
for color, collideableArray in pairs(self:getCollideables()) do
|
-- doors registered across all three colors -> dedupe doors, emit once
|
||||||
|
local seenDoor = {}
|
||||||
|
for color, collideableArray in pairs(self.collideables) do
|
||||||
for _, collideable in pairs(collideableArray) do
|
for _, collideable in pairs(collideableArray) do
|
||||||
if not collideable:isInstanceOf("Door") then --for now, we might change doors up some
|
if collideable:isInstanceOf(Door) then
|
||||||
local entityClass = collideable:getClass()
|
if not seenDoor[collideable] then
|
||||||
if not level[entityClass] then level[entityClass] = {} end
|
seenDoor[collideable] = true
|
||||||
table.insert(level[entityClass], collideable:getSerializationTable())
|
emit("door", nil, collideable)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
emit(collideable.saveClass or "unmoveable", color, collideable)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
level.switch = {}
|
for color, switchArray in pairs(self.switches) do
|
||||||
for color, switchArray in pairs(self:getSwitches()) do
|
|
||||||
for _, switch in ipairs(switchArray) do
|
for _, switch in ipairs(switchArray) do
|
||||||
table.insert(level.switch, switch:getSerializationTable())
|
emit("switch", color, switch)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return level
|
for _, npc in ipairs(self.npcs) do
|
||||||
|
table.insert(objects, { class = "npc", x = npc.x, y = npc.y })
|
||||||
|
end
|
||||||
|
|
||||||
|
return { objects = objects }
|
||||||
end
|
end
|
||||||
|
|
||||||
function nextRoom(pos)
|
function nextRoom(pos)
|
||||||
|
|
|
||||||
1526
rooms/2.sav
1526
rooms/2.sav
File diff suppressed because it is too large
Load diff
1664
rooms/3.sav
1664
rooms/3.sav
File diff suppressed because it is too large
Load diff
1547
rooms/4.sav
1547
rooms/4.sav
File diff suppressed because it is too large
Load diff
1622
rooms/5.sav
1622
rooms/5.sav
File diff suppressed because it is too large
Load diff
914
rooms/_pre_migration_backup/2.sav
Normal file
914
rooms/_pre_migration_backup/2.sav
Normal file
|
|
@ -0,0 +1,914 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
travels_1=1,
|
||||||
|
travels_2=0,
|
||||||
|
travels_3=0,
|
||||||
|
travels_4=0,
|
||||||
|
travels_5=0
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right=3,
|
||||||
|
bottom="start"
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
948
rooms/_pre_migration_backup/3.sav
Normal file
948
rooms/_pre_migration_backup/3.sav
Normal file
|
|
@ -0,0 +1,948 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
travels_1=1,
|
||||||
|
travels_2=1,
|
||||||
|
travels_3=0,
|
||||||
|
travels_4=0,
|
||||||
|
travels_5=0
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=5,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=5,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right=4,
|
||||||
|
left=2
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
845
rooms/_pre_migration_backup/4.sav
Normal file
845
rooms/_pre_migration_backup/4.sav
Normal file
|
|
@ -0,0 +1,845 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
travels_1=1,
|
||||||
|
travels_2=1,
|
||||||
|
travels_3=1,
|
||||||
|
travels_4=0,
|
||||||
|
travels_5=0
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right=5,
|
||||||
|
left=3
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
914
rooms/_pre_migration_backup/5.sav
Normal file
914
rooms/_pre_migration_backup/5.sav
Normal file
|
|
@ -0,0 +1,914 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
travels_1=1,
|
||||||
|
travels_2=1,
|
||||||
|
travels_3=1,
|
||||||
|
travels_4=1,
|
||||||
|
travels_5=1
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=10,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
left=4,
|
||||||
|
top="village_1"
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
momoiro={
|
||||||
|
y=2,
|
||||||
|
x=5,
|
||||||
|
id="momoiro"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=2,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
52
rooms/_pre_migration_backup/default.sav
Normal file
52
rooms/_pre_migration_backup/default.sav
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
},
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
924
rooms/_pre_migration_backup/old_yellow_3.sav
Normal file
924
rooms/_pre_migration_backup/old_yellow_3.sav
Normal file
|
|
@ -0,0 +1,924 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
bottom = "yellow_1"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
833
rooms/_pre_migration_backup/start.sav
Normal file
833
rooms/_pre_migration_backup/start.sav
Normal file
|
|
@ -0,0 +1,833 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
top="2"
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
start_sign={
|
||||||
|
y=8,
|
||||||
|
x=4,
|
||||||
|
id="start_sign"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1152
rooms/_pre_migration_backup/test_patt.sav
Normal file
1152
rooms/_pre_migration_backup/test_patt.sav
Normal file
File diff suppressed because it is too large
Load diff
1392
rooms/_pre_migration_backup/test_patt_update.sav
Normal file
1392
rooms/_pre_migration_backup/test_patt_update.sav
Normal file
File diff suppressed because it is too large
Load diff
591
rooms/_pre_migration_backup/village_1.sav
Normal file
591
rooms/_pre_migration_backup/village_1.sav
Normal file
|
|
@ -0,0 +1,591 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
top = "village_2",
|
||||||
|
bottom = 5,
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
304
rooms/_pre_migration_backup/village_2.sav
Normal file
304
rooms/_pre_migration_backup/village_2.sav
Normal file
|
|
@ -0,0 +1,304 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
left = "village_4",
|
||||||
|
right = "village_3",
|
||||||
|
bottom = "village_1"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
624
rooms/_pre_migration_backup/village_3.sav
Normal file
624
rooms/_pre_migration_backup/village_3.sav
Normal file
|
|
@ -0,0 +1,624 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=4,
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
left = "village_2"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
slime_woman={
|
||||||
|
y=2,
|
||||||
|
x=5,
|
||||||
|
id="slime_woman"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
704
rooms/_pre_migration_backup/village_4.sav
Normal file
704
rooms/_pre_migration_backup/village_4.sav
Normal file
|
|
@ -0,0 +1,704 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right = "village_2",
|
||||||
|
top = "yellow_1"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
1213
rooms/_pre_migration_backup/white_asymmetrical.sav
Normal file
1213
rooms/_pre_migration_backup/white_asymmetrical.sav
Normal file
File diff suppressed because it is too large
Load diff
1223
rooms/_pre_migration_backup/white_ok.sav
Normal file
1223
rooms/_pre_migration_backup/white_ok.sav
Normal file
File diff suppressed because it is too large
Load diff
1034
rooms/_pre_migration_backup/white_primary.sav
Normal file
1034
rooms/_pre_migration_backup/white_primary.sav
Normal file
File diff suppressed because it is too large
Load diff
858
rooms/_pre_migration_backup/yellow_1.sav
Normal file
858
rooms/_pre_migration_backup/yellow_1.sav
Normal file
|
|
@ -0,0 +1,858 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
yellows_hymn=1,
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right="yellow_2",
|
||||||
|
bottom="village_4",
|
||||||
|
top="yellow_3"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
776
rooms/_pre_migration_backup/yellow_2.sav
Normal file
776
rooms/_pre_migration_backup/yellow_2.sav
Normal file
|
|
@ -0,0 +1,776 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
left = "yellow_1"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
slime_woman={
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
id="slime_woman"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
songs={
|
||||||
|
yellows_hymn=1,
|
||||||
|
},
|
||||||
|
}
|
||||||
855
rooms/_pre_migration_backup/yellow_3.sav
Normal file
855
rooms/_pre_migration_backup/yellow_3.sav
Normal file
|
|
@ -0,0 +1,855 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
bottom = "yellow_1",
|
||||||
|
top = "yellow_4"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
902
rooms/_pre_migration_backup/yellow_4.sav
Normal file
902
rooms/_pre_migration_backup/yellow_4.sav
Normal file
|
|
@ -0,0 +1,902 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
left="yellow_6",
|
||||||
|
bottom="yellow_3",
|
||||||
|
top="yellow_5"
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1288
rooms/_pre_migration_backup/yellow_5.sav
Normal file
1288
rooms/_pre_migration_backup/yellow_5.sav
Normal file
File diff suppressed because it is too large
Load diff
952
rooms/_pre_migration_backup/yellow_6.sav
Normal file
952
rooms/_pre_migration_backup/yellow_6.sav
Normal file
|
|
@ -0,0 +1,952 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=9,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right="yellow_4"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=2,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=2,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
1129
rooms/_pre_migration_backup/yellow_arches.sav
Normal file
1129
rooms/_pre_migration_backup/yellow_arches.sav
Normal file
File diff suppressed because it is too large
Load diff
1056
rooms/_pre_migration_backup/yellow_asymmetrical.sav
Normal file
1056
rooms/_pre_migration_backup/yellow_asymmetrical.sav
Normal file
File diff suppressed because it is too large
Load diff
890
rooms/_pre_migration_backup/yellow_cc_moustache.sav
Normal file
890
rooms/_pre_migration_backup/yellow_cc_moustache.sav
Normal file
|
|
@ -0,0 +1,890 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=7,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=5,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=7,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=5,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
top="2"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=9,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=3,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
1123
rooms/_pre_migration_backup/yellow_color_changing_levvel_1.sav
Normal file
1123
rooms/_pre_migration_backup/yellow_color_changing_levvel_1.sav
Normal file
File diff suppressed because it is too large
Load diff
1019
rooms/_pre_migration_backup/yellow_skull.sav
Normal file
1019
rooms/_pre_migration_backup/yellow_skull.sav
Normal file
File diff suppressed because it is too large
Load diff
906
rooms/_pre_migration_backup/yellow_smile.sav
Normal file
906
rooms/_pre_migration_backup/yellow_smile.sav
Normal file
|
|
@ -0,0 +1,906 @@
|
||||||
|
{
|
||||||
|
color_changing_floor_tiles={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
wall_shake=1,
|
||||||
|
doors={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
static_walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="blue"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=2,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=2,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=5,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=10,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=10,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=3,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=9,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=11,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=5,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=1,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=4,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=11,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=8,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=8,
|
||||||
|
x=7,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=1,
|
||||||
|
x=9,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=6,
|
||||||
|
x=6,
|
||||||
|
type="static",
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
players={
|
||||||
|
red={
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
}
|
||||||
|
},
|
||||||
|
walls={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=8,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=4,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=8,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=3,
|
||||||
|
x=4,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
exits={
|
||||||
|
right="yellow_2",
|
||||||
|
bottom="village_4",
|
||||||
|
top="yellow_3"
|
||||||
|
},
|
||||||
|
switches={
|
||||||
|
red={
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
blue={
|
||||||
|
},
|
||||||
|
green={
|
||||||
|
{
|
||||||
|
y=7,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
y=4,
|
||||||
|
x=6,
|
||||||
|
color="green"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sages={
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,52 +1,4 @@
|
||||||
{
|
{
|
||||||
walls={
|
objects={
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
color_changing_floor_tiles={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
static_walls={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
sages={
|
|
||||||
},
|
|
||||||
doors={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
switches={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
players={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load diff
1355
rooms/start.sav
1355
rooms/start.sav
File diff suppressed because it is too large
Load diff
2044
rooms/test_patt.sav
2044
rooms/test_patt.sav
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1043
rooms/village_1.sav
1043
rooms/village_1.sav
File diff suppressed because it is too large
Load diff
|
|
@ -1,304 +1,256 @@
|
||||||
{
|
{
|
||||||
color_changing_floor_tiles={
|
objects={
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
wall_shake=1,
|
|
||||||
doors={
|
|
||||||
red={
|
|
||||||
{
|
{
|
||||||
y=1,
|
color="blue",
|
||||||
|
class="door",
|
||||||
x=6,
|
x=6,
|
||||||
color="red"
|
y=1
|
||||||
}
|
|
||||||
},
|
},
|
||||||
blue={
|
|
||||||
{
|
{
|
||||||
y=1,
|
color="red",
|
||||||
|
class="door",
|
||||||
x=6,
|
x=6,
|
||||||
color="blue"
|
y=1
|
||||||
}
|
|
||||||
},
|
},
|
||||||
green={
|
|
||||||
{
|
{
|
||||||
y=1,
|
color="green",
|
||||||
|
class="door",
|
||||||
x=6,
|
x=6,
|
||||||
color="green"
|
y=1
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
static_walls={
|
|
||||||
red={
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=5,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=11,
|
color="blue",
|
||||||
x=11,
|
class="static_wall",
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=1,
|
x=1,
|
||||||
type="static",
|
y=1
|
||||||
color="red"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="red",
|
||||||
x=10,
|
class="static_wall",
|
||||||
type="static",
|
x=1,
|
||||||
color="red"
|
y=1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="green",
|
||||||
x=3,
|
class="static_wall",
|
||||||
type="static",
|
x=1,
|
||||||
color="red"
|
y=1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
x=2,
|
x=2,
|
||||||
type="static",
|
y=1
|
||||||
color="red"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=11,
|
color="red",
|
||||||
x=1,
|
class="static_wall",
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=11,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=8,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=9,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=4,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=7,
|
|
||||||
type="static",
|
|
||||||
color="red"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=5,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=11,
|
|
||||||
x=11,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=1,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=10,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=3,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=2,
|
x=2,
|
||||||
type="static",
|
y=1
|
||||||
color="blue"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=11,
|
color="green",
|
||||||
x=1,
|
class="static_wall",
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=11,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=8,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=9,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=4,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=7,
|
|
||||||
type="static",
|
|
||||||
color="blue"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=5,
|
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=11,
|
|
||||||
x=11,
|
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=1,
|
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=10,
|
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=3,
|
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=2,
|
x=2,
|
||||||
type="static",
|
y=1
|
||||||
color="green"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=11,
|
color="blue",
|
||||||
x=1,
|
class="static_wall",
|
||||||
type="static",
|
x=3,
|
||||||
color="green"
|
y=1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="green",
|
||||||
x=11,
|
class="static_wall",
|
||||||
type="static",
|
x=3,
|
||||||
color="green"
|
y=1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="red",
|
||||||
x=8,
|
class="static_wall",
|
||||||
type="static",
|
x=3,
|
||||||
color="green"
|
y=1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="red",
|
||||||
x=9,
|
class="static_wall",
|
||||||
type="static",
|
|
||||||
color="green"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
y=1,
|
|
||||||
x=4,
|
x=4,
|
||||||
type="static",
|
y=1
|
||||||
color="green"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
y=1,
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=4,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=4,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=5,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=5,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=5,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
x=7,
|
x=7,
|
||||||
type="static",
|
y=1
|
||||||
color="green"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
players={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
walls={
|
|
||||||
red={
|
|
||||||
},
|
|
||||||
blue={
|
|
||||||
},
|
|
||||||
green={
|
|
||||||
}
|
|
||||||
},
|
|
||||||
exits={
|
|
||||||
left = "village_4",
|
|
||||||
right = "village_3",
|
|
||||||
bottom = "village_1"
|
|
||||||
},
|
|
||||||
switches={
|
|
||||||
red={
|
|
||||||
{
|
{
|
||||||
y=6,
|
color="blue",
|
||||||
x=6,
|
class="static_wall",
|
||||||
color="red"
|
x=7,
|
||||||
}
|
y=1
|
||||||
},
|
},
|
||||||
blue={
|
|
||||||
{
|
{
|
||||||
y=6,
|
color="red",
|
||||||
x=6,
|
class="static_wall",
|
||||||
color="blue"
|
x=7,
|
||||||
}
|
y=1
|
||||||
},
|
},
|
||||||
green={
|
|
||||||
{
|
{
|
||||||
y=6,
|
color="red",
|
||||||
x=6,
|
class="static_wall",
|
||||||
color="green"
|
x=8,
|
||||||
}
|
y=1
|
||||||
}
|
|
||||||
},
|
},
|
||||||
sages={
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=8,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=8,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=9,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=9,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=9,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=10,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=10,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=10,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=1,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=1,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=1,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="static_wall",
|
||||||
|
x=11,
|
||||||
|
y=11
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="red",
|
||||||
|
class="switch",
|
||||||
|
x=6,
|
||||||
|
y=6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="blue",
|
||||||
|
class="switch",
|
||||||
|
x=6,
|
||||||
|
y=6
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color="green",
|
||||||
|
class="switch",
|
||||||
|
x=6,
|
||||||
|
y=6
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
1086
rooms/village_3.sav
1086
rooms/village_3.sav
File diff suppressed because it is too large
Load diff
1206
rooms/village_4.sav
1206
rooms/village_4.sav
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
2153
rooms/white_ok.sav
2153
rooms/white_ok.sav
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1378
rooms/yellow_1.sav
1378
rooms/yellow_1.sav
File diff suppressed because it is too large
Load diff
1406
rooms/yellow_2.sav
1406
rooms/yellow_2.sav
File diff suppressed because it is too large
Load diff
1473
rooms/yellow_3.sav
1473
rooms/yellow_3.sav
File diff suppressed because it is too large
Load diff
1584
rooms/yellow_4.sav
1584
rooms/yellow_4.sav
File diff suppressed because it is too large
Load diff
2204
rooms/yellow_5.sav
2204
rooms/yellow_5.sav
File diff suppressed because it is too large
Load diff
1584
rooms/yellow_6.sav
1584
rooms/yellow_6.sav
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue