shuffles mr little

This commit is contained in:
duncathan 2020-03-06 00:24:14 -06:00
parent c894799a5b
commit 69d9afdd5e
2 changed files with 5 additions and 4 deletions

View file

@ -341,8 +341,9 @@ local function _itemData()
mrLittle = { mrLittle = {
name = "Little Man", name = "Little Man",
script = "<EVE0082", script = "<EVE0082",
attributes = {"event"}, attributes = {"mandatory"},
placed = true hints = {"Mr Little", "a living being"}
--placed = true
}, },
ironBond = { ironBond = {
name = "Iron Bond", name = "Iron Bond",

View file

@ -48,7 +48,7 @@ function mimigaVillage:new(worldGraph)
reservoir = Location("Reservoir", "Pool", "0301", self, {"underwater"}), reservoir = Location("Reservoir", "Pool", "0301", self, {"underwater"}),
mapChest = Location("Mimiga Village Chest", "Mimi", "0202", self), mapChest = Location("Mimiga Village Chest", "Mimi", "0202", self),
assembly = Location("Assembly Hall Fireplace", "Comu", "0303", self, {"in a fireplace"}), assembly = Location("Assembly Hall Fireplace", "Comu", "0303", self, {"in a fireplace"}),
mrLittle = Location("Mr. Little (Graveyard)", "Cemet", "0202", self), mrLittle = Location("Mr. Little (Graveyard)", "Cemet", "0202", self, {"in the Graveyard", "with a very little man, hiding in the grass"}),
grave = Location("Arthur's Grave", "Cemet", "0301", self, {"with a fallen hero..", "in the Graveyard"}), grave = Location("Arthur's Grave", "Cemet", "0301", self, {"with a fallen hero..", "in the Graveyard"}),
mushroomChest = Location("Storage? Chest", "Mapi", "0202", self, {"in the Graveyard"}), mushroomChest = Location("Storage? Chest", "Mapi", "0202", self, {"in the Graveyard"}),
maPignon = Location("Ma Pignon Boss", "Mapi", "0501", self, {"behind a boss", "behind Ma Pignon", "in the Graveyard"}) maPignon = Location("Ma Pignon Boss", "Mapi", "0501", self, {"behind a boss", "behind Ma Pignon", "in the Graveyard"})
@ -79,7 +79,7 @@ function mimigaVillage:new(worldGraph)
return false return false
end end
self.locations.mrLittle:setItem(self.world.items:getByKey("mrLittle")) --self.locations.mrLittle:setItem(self.world.items:getByKey("mrLittle"))
end end
local arthur = Region:extend() local arthur = Region:extend()