diff --git a/python/guilds/GUILD_TEMPLATE.txt b/python/guilds/GUILD_TEMPLATE.txt new file mode 100755 index 000000000..c22708346 --- /dev/null +++ b/python/guilds/GUILD_TEMPLATE.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/python/guilds/PoisonedDagger.txt b/python/guilds/PoisonedDagger.txt new file mode 100755 index 000000000..c22708346 --- /dev/null +++ b/python/guilds/PoisonedDagger.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/python/guilds/PurpleButterfly.txt b/python/guilds/PurpleButterfly.txt new file mode 100755 index 000000000..c22708346 --- /dev/null +++ b/python/guilds/PurpleButterfly.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/python/guilds/SmokingCauldron.txt b/python/guilds/SmokingCauldron.txt new file mode 100755 index 000000000..c22708346 --- /dev/null +++ b/python/guilds/SmokingCauldron.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/python/guilds/arrest.py b/python/guilds/arrest.py new file mode 100644 index 000000000..7afd146a4 --- /dev/null +++ b/python/guilds/arrest.py @@ -0,0 +1,123 @@ +import random +import Crossfire +import CFGuilds +import sys +import string +#sys.stderr=open("/home/alestan/Output.log", 'a') +activator=Crossfire.WhoIsActivator() +whoami=Crossfire.WhoAmI() + +activatorname=activator.Name +mymap = activator.Map +def find_player(object): + while (object.Type != 1) : #1 is type 'Player' + object = object.Above + if not object: + return 0 + return object + +Corpse = activator.Map.ObjectAt(int (21), int (0)) +x4=random.randint(21, 23) +y4=random.randint(22,24) + +Curse = activator.Map.ObjectAt(int(x4),int(y4)) + + + +x3=1 +y3=8 + +if (1==1): + if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 5 + + + + + Clearancerq=Crossfire.ScriptParameters() # 6 is say event + x1 = activator.X + Y1 = activator.Y + x= 26 + y=0 + + text = string.split(Clearancerq) + guildname = text[0] + guild=CFGuilds.CFGuild(guildname) + guildrecord=CFGuilds.CFGuildHouses().info(guildname) + ClearanceRequested=(text[1]) + ActionRequired=text[2] + if (guild.info(activatorname)!=0): + text1=string.split(str(guild.info(activatorname))) + + + ClearanceApproved = (text1[5]) + + # whoami.Say(ClearanceApproved) + if (ClearanceApproved): + if (ClearanceApproved == "'Initiate',"): + ApprovedClearanceLevel = 1 + elif (ClearanceApproved == "'Novice',"): + ApprovedClearanceLevel = 2 + elif (ClearanceApproved == "'Guildman',"): + ApprovedClearanceLevel = 3 + elif (ClearanceApproved == "'Journeyman',"): + ApprovedClearanceLevel = 4 + elif (ClearanceApproved == "'Master',"): + ApprovedClearanceLevel = 5 + elif (ClearanceApproved == "'GuildMaster',"): + ApprovedClearanceLevel = 6 + else: + ApprovedClearanceLevel = 0 + if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 6 +#whoami.Say(str(ApprovedClearanceLevel)) + + if (ClearanceRequested == "Initiate"): + RequiredClearanceLevel = 1 + elif (ClearanceRequested == "Novice"): + RequiredClearanceLevel = 2 + elif (ClearanceRequested == "Guildman"): + RequiredClearanceLevel = 3 + elif (ClearanceRequested == "Journeyman"): + RequiredClearanceLevel = 4 + elif (ClearanceRequested == "Master"): + RequiredClearanceLevel = 5 + elif (ClearanceRequested == "GuildMaster"): + RequiredClearanceLevel = 6 +#whoami.Say(str(RequiredClearanceLevel)) + + if (ApprovedClearanceLevel >= RequiredClearanceLevel): + Approved = 'Access granted' + else: + Approved = 'Access denied' + + + if (Approved != 'Access granted'): + if (ActionRequired == "A"): + activator.Teleport(mymap,int(40),int(22)) + elif (ActionRequired == "D"): + Corpse.Name = str("%s's body" %(activator.Name)) + Corpse.Race = str("%s's Curse" %(activator.Name)) + Corpse.Weight = 1 + Curse.Name = str("%s's Curse" %(activator.Name)) + Corpse.Teleport(mymap, activator.X, activator.Y) + Curse.InsertInto(activator) + Curse1=activator.CheckArchInventory("amulet") + #whoami.Say(str(Curse1)) + #whoami.Say(str(Curse)) + Curse1.Applied = 1 + + + activator.Teleport(mymap,int(23),int(0)) + + + + +# whoami.Say('y') +# whoami.Say(Approved) + #activator.Teleport(mymap,int(x1),int(Y1)) +# else: +# whoami.Say(Approved) + +#else: +# whoami.Say('Say enter to request entry') diff --git a/python/guilds/clearance.py b/python/guilds/clearance.py new file mode 100644 index 000000000..ce34f830e --- /dev/null +++ b/python/guilds/clearance.py @@ -0,0 +1,93 @@ +import Crossfire +import CFGuilds + +import sys +import string + +activator=Crossfire.WhoIsActivator() +activatorname=activator.Name +mymap = activator.Map +def find_player(object): + while (object.Type != 1) : #1 is type 'Player' + object = object.Above + if not object: + return 0 + return object + + + + +whoami=Crossfire.WhoAmI() +texta=string.split(Crossfire.WhatIsMessage()) +if (texta[0] == 'enter') or (texta[0] == 'Enter'): + if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 5 + + + + + Clearancerq=Crossfire.ScriptParameters() # 6 is say event + x1 = activator.X + Y1 = activator.Y + x= 26 + y=0 + + text = string.split(Clearancerq) + guildname = text[0] + guild=CFGuilds.CFGuild(guildname) + guildrecord=CFGuilds.CFGuildHouses().info(guildname) + ClearanceRequested=(text[1]) + if (guild.info(activatorname)!=0): + text1=string.split(str(guild.info(activatorname))) + + + ClearanceApproved = (text1[5]) + + whoami.Say(ClearanceApproved) + if (ClearanceApproved): + if (ClearanceApproved == "'Initiate',"): + ApprovedClearanceLevel = 0 + elif (ClearanceApproved == "'Novice',"): + ApprovedClearanceLevel = 1 + elif (ClearanceApproved == "'Guildman',"): + ApprovedClearanceLevel = 2 + elif (ClearanceApproved == "'Journeyman',"): + ApprovedClearanceLevel = 3 + elif (ClearanceApproved == "'Master',"): + ApprovedClearanceLevel = 4 + elif (ClearanceApproved == "'GuildMaster',"): + ApprovedClearanceLevel = 5 + else: + ApprovedClearanceLevel = 0 + if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 5 +#whoami.Say(str(ApprovedClearanceLevel)) + + if (ClearanceRequested == "Initiate"): + RequiredClearanceLevel = 0 + elif (ClearanceRequested == "Novice"): + RequiredClearanceLevel = 1 + elif (ClearanceRequested == "Guildman"): + RequiredClearanceLevel = 2 + elif (ClearanceRequested == "Journeyman"): + RequiredClearanceLevel = 3 + elif (ClearanceRequested == "Master"): + RequiredClearanceLevel = 4 + elif (ClearanceRequested == "GuildMaster"): + RequiredClearanceLevel = 5 +#whoami.Say(str(RequiredClearanceLevel)) + + if (ApprovedClearanceLevel >= RequiredClearanceLevel): + Approved = 'Access granted' + else: + Approved = 'Access denied' + + + if (Approved == 'Access granted'): + activator.Teleport(mymap,int(21),int(y)) + whoami.Say(Approved) + activator.Teleport(mymap,int(x1),int(Y1)) + else: + whoami.Say(Approved) +else: + whoami.Say('Say enter to request entry') diff --git a/python/guilds/guild_dues.py b/python/guilds/guild_dues.py index 3d61e78f3..75e731733 100644 --- a/python/guilds/guild_dues.py +++ b/python/guilds/guild_dues.py @@ -21,7 +21,17 @@ import CFGuilds import CFItemBroker import random import string -gbfile='/cftmp/guildbalance.txt' #location of the balance of dues paid, where it should go depends on your distribution, uses an absolute path. +guildname=Crossfire.ScriptParameters() # 6 is say event +if (guildname): + guild = CFGuilds.CFGuild(guildname) +activator=Crossfire.WhoIsActivator() +in_guild=CFGuilds.SearchGuilds(activator.Name) +gbfile="/usr/games/crossfire/share/crossfire/maps/python/guilds/balance.2/%s.txt" %(guildname)#location of the balance of dues paid, where it should go depends on your distribution, uses an absolute path. + + + + + x=6 y=7 x1=31 @@ -38,7 +48,6 @@ activator=Crossfire.WhoIsActivator() activatorname=activator.Name mymap = activator.Map whoami=Crossfire.WhoAmI() -print whoami.Name if whoami.Name=='Jack': remarklist = ['Excellent','Thank You','Thank You','Thank You', 'Thank You', 'Great', 'OK', 'Wonderful', 'Swell', 'Dude', 'Big Spender'] exclaimlist = ['Hey','Hey','Hey','Hey', 'Now just a minute', 'AHEM', 'OK...Wait a minute', 'Look chowderhead'] @@ -46,18 +55,21 @@ if whoami.Name=='Jack': guildname=Crossfire.ScriptParameters() # 6 is say event text = Crossfire.WhatIsMessage().split() + + if (guildname): guild = CFGuilds.CFGuild(guildname) cointype = "jadecoin" #What type of token are we using for guild dues? object = activator.CheckInventory(cointype) - if text[0] == 'help' or text[0] == 'yes': message='Let me know how many jade coins you want to pay. Say pay ' elif text[0] == 'pay': if len(text)==2: cost = int(text[1]) + if cost <0: + cost=-1*cost if (object): pay = CFItemBroker.Item(object).subtract(cost) if (pay): diff --git a/python/guilds/guild_entry.py b/python/guilds/guild_entry.py index e36156103..3e2269f11 100644 --- a/python/guilds/guild_entry.py +++ b/python/guilds/guild_entry.py @@ -28,15 +28,22 @@ activatorname=activator.Name mymap = activator.Map x=32 y=16 +x1=36 +y1=20 +activatorx=activator.X +activatory=activator.Y whoami=Crossfire.WhoAmI() -guildname=Crossfire.ScriptParameters() # 6 is say event +guildname=Crossfire.ScriptParameters() # 6 is say event +print guildname if (guildname): guild = CFGuilds.CFGuild(guildname) text = Crossfire.WhatIsMessage().split() guildrecord = CFGuilds.CFGuildHouses().info(guildname) + whoami.Say(str(type(guildrecord))) found = 0 + whoami.Say(guildrecord['Status']) if text[0] == 'enter' or text[0] == 'Enter': if guildrecord['Status'] == 'inactive': @@ -58,24 +65,31 @@ if (guildname): message = 'Granted, but you are on probation' x=15 y=22 + activator.Teleport(mymap,int(x1),int(y1)) + activator.Teleport(mymap,int(activatorx),int(activatory)) else: message = 'Entry granted for %s' %activatorname y=22 x=15 + activator.Teleport(mymap,int(x1),int(y1)) + activator.Teleport(mymap,int(activatorx),int(activatory)) else: message = 'You try my patience %s. BEGONE!' %activatorname - activator.Teleport(mymap,int(x),int(y)) #teleport them + activator.Teleport(mymap,int(x),int(y)) #teleport them elif text[0] == 'buy' or text[0] == 'Buy': if guildrecord['Status'] == 'inactive': in_guild = CFGuilds.SearchGuilds(activatorname) if in_guild == 0: x = 30 - y = 22 + y = 19 message = "Proceed, but know ye that three are required to found a guild and the cost is high" activator.Teleport(mymap,int(x),int(y)) #teleport them else: - message = "Sorry you already belong to the %s guild. You must quit that guild before founding your own." %in_guild + x = 30 + y = 19 + message = "Proceed, but know ye that three are required to found a guild and the cost is high" + activator.Teleport(mymap,int(x),int(y)) #teleport them else: message = 'This guild is already owned.' else: @@ -85,3 +99,5 @@ else: message = 'Guild Guardian Error, please notify a DM' whoami.Say(message) + +print guild diff --git a/python/guilds/guildoracle.py b/python/guilds/guildoracle.py index 30a3ca18c..0aabf1113 100644 --- a/python/guilds/guildoracle.py +++ b/python/guilds/guildoracle.py @@ -16,13 +16,14 @@ # # authors: majorwoo josh@woosworld.net, Avion temitchell@sourceforge.net + import Crossfire import CFGuilds import CFLog import sys import string - +Access = 0 activator=Crossfire.WhoIsActivator() activatorname=activator.Name whoami=Crossfire.WhoAmI() @@ -33,125 +34,174 @@ log=CFLog.CFLog() guildname=Crossfire.ScriptParameters() # 6 is say event print "Activated %s" %guildname -if (guildname): - guild = CFGuilds.CFGuild(guildname) - guildhouse = CFGuilds.CFGuildHouses() - text = Crossfire.WhatIsMessage().split() - - if guild.info(activatorname) == 0 and isDM == 0: - message = 'You don\'t belong to this guild!' - elif text[0] == 'help' or text[0] == 'yes': - if isDM: - message = '\nList of commands:\n-list\n-add \n-remove \n-info \n-promote \n-demote \n-status \n-guildstatus ' - else: - message='\nList of commands:\n-list\n-remove \n-info \n-promote \n-demote \n-status ' - - elif text[0] == 'info': - if len(text)==2: - record = guild.info(text[1]) - if record: - message = '%s' %record - else: - message = '%s is not a member' %text[1] - else: - message = 'Usage "info "' - - elif text[0] == 'remove': - if len(text)==2: - if guild.info(text[1]): - message = 'Removed %s from the guild' %text[1] - #delete them - guild.remove_member(text[1]) - else: - #if we didn't find them on the board - message = '%s was not a member' %text[1] - else: - message = 'Usage "remove "' - - elif text[0] == 'list': - list = guild.list_members() - for member in list: - activator.Write(member) - message = 'Total members = ' + str(len(list)) - - elif text[0] == 'promote': - if len(text)==2: - record = guild.info(text[1]) - if record: - if guild.promote_member(text[1]): - record = guild.info(text[1]) #refresh record - message = '%s promoted to %s' %(text[1], record['Rank']) - else: - message = 'You cannot promote %s' %text[1] - else: - message = '%s is not a member' %text[1] - else: - message = 'Usage "promote "' - - elif text[0] == 'demote': - if len(text)==2: - record = guild.info(text[1]) - if record: - if guild.demote_member(text[1]): - record = guild.info(text[1]) #refresh record - message = '%s demoted to %s' %(text[1], record['Rank']) - else: - message = 'You cannot demote %s' %text[1] - else: - message = '%s is not a member' %text[1] - else: - message = 'Usage "demote "' - - elif text[0] == 'status': - if len(text)==3: - record = guild.info(text[1]) - if record: - if guild.change_status(text[1],text[2]): - record = guild.info(text[1]) #refresh record - message = '%s now has status of %s' %(text[1], record['Status']) - else: - message = '%s is not a valid status' %text[2] - else: - message = '%s is not a member' %text[1] - else: - message = 'Usage "status \n%s"' %str(guild.status) - -# DM commands - #add user directly - elif text[0] == 'add' and isDM: - if len(text)==2: - #check if they are a player - if log.info(text[1]): - #see if they are on the board already - if guild.info(text[1]): - #already a member - message = '%s is already a member.' %text[1] - else: - guild.add_member(text[1], 'Initiate') - message = 'Added %s to the guild' %text[1] - else: - message = 'Sorry, I don\'t know any %s' %text[1] - else: - message = 'Usage "add "' - - #change guild status - elif text[0] == 'guildstatus' and isDM: - if len(text)==2: - record = guildhouse.info(guildname) - if record: - if guildhouse.change_status(guildname,text[1]): - record = guildhouse.info(text[1]) #refresh record - message = '%s now has status of %s' %(guildname, record['Status']) - else: - message = '%s is not a valid status' %text[1] - else: - message = '%s is not a guild' %guildname - else: - message = 'Usage "guildstatus \n%s"' %str(guildhouse.status) - - else: - message = 'What did you need?' +if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 5 else: - message = 'Board Error' -whoami.Say(message) + guild=CFGuilds.CFGuild(guildname) + guildrecord=CFGuilds.CFGuildHouses().info(guildname) + + if (guild.info(activatorname)!=0): + text1=string.split(str(guild.info(activatorname))) + + + ClearanceApproved = (text1[5]) + + whoami.Say(ClearanceApproved) + if (ClearanceApproved): + if (ClearanceApproved == "'Initiate',"): + ApprovedClearanceLevel = 0 + elif (ClearanceApproved == "'Novice',"): + ApprovedClearanceLevel = 1 + elif (ClearanceApproved == "'Guildman',"): + ApprovedClearanceLevel = 2 + elif (ClearanceApproved == "'Journeyman',"): + ApprovedClearanceLevel = 3 + elif (ClearanceApproved == "'Master',"): + ApprovedClearanceLevel = 4 + elif (ClearanceApproved == "'GuildMaster',"): + ApprovedClearanceLevel = 5 + else: + ApprovedClearanceLevel = int(-1) + if (activator.DungeonMaster ==1): + ApprovedClearanceLevel = 5 + whoami.Say(str(ApprovedClearanceLevel)) + RequiredClearanceLevel=5 + + whoami.Say(str(RequiredClearanceLevel)) + + if (ApprovedClearanceLevel >= RequiredClearanceLevel): + Approved = 'Access granted' + else: + Approved = 'Access denied' + + + if (Approved == 'Access granted'): + Access = 1 + + else: + whoami.Say(Approved) +if (Access ==1) or (isDM == 1): + if (guildname): + guild = CFGuilds.CFGuild(guildname) + guildhouse = CFGuilds.CFGuildHouses() + text = string.split(Crossfire.WhatIsMessage()) + + if guild.info(activatorname) == 0 and isDM == 0: + message = 'You don\'t belong to this guild!' + elif text[0] == 'help' or text[0] == 'yes': + if isDM: + message = '\nList of commands:\n-list\n-add \n-remove \n-info \n-promote \n-demote \n-status \n-guildstatus ' + else: + message='\nList of commands:\n-list\n-remove \n-info \n-promote \n-demote \n-status ' + + elif text[0] == 'info': + if len(text)==2: + record = guild.info(text[1]) + if record: + message = '%s' %record + else: + message = '%s is not a member' %text[1] + else: + message = 'Usage "info "' + + elif text[0] == 'remove': + if len(text)==2: + if guild.info(text[1]): + message = 'Removed %s from the guild' %text[1] + #delete them + guild.remove_member(text[1]) + else: + #if we didn't find them on the board + message = '%s was not a member' %text[1] + else: + message = 'Usage "remove "' + + elif text[0] == 'list': + list = guild.list_members() + for member in list: + activator.Write(member) + message = 'Total members = ' + str(len(list)) + + elif text[0] == 'promote': + if len(text)==2: + record = guild.info(text[1]) + if record: + if guild.promote_member(text[1]): + record = guild.info(text[1]) #refresh record + message = '%s promoted to %s' %(text[1], record['Rank']) + else: + message = 'You cannot promote %s' %text[1] + else: + message = '%s is not a member' %text[1] + else: + message = 'Usage "promote "' + + elif text[0] == 'demote': + if len(text)==2: + record = guild.info(text[1]) + if record: + if guild.demote_member(text[1]): + record = guild.info(text[1]) #refresh record + message = '%s demoted to %s' %(text[1], record['Rank']) + else: + message = 'You cannot demote %s' %text[1] + else: + message = '%s is not a member' %text[1] + else: + message = 'Usage "demote "' + + elif text[0] == 'status': + if len(text)==3: + record = guild.info(text[1]) + if record: + if guild.change_status(text[1],text[2]): + record = guild.info(text[1]) #refresh record + message = '%s now has status of %s' %(text[1], record['Status']) + else: + message = '%s is not a valid status' %text[2] + else: + message = '%s is not a member' %text[1] + else: + message = 'Usage "status \n%s"' %str(guild.status) + + # DM commands + #add user directly + elif text[0] == 'add' and isDM: + if len(text)==2: + #check if they are a player + if log.info(text[1]): + #see if they are on the board already + if guild.info(text[1]): + #already a member + message = '%s is already a member.' %text[1] + else: + guild.add_member(text[1], 'Initiate') + message = 'Added %s to the guild' %text[1] + else: + message = 'Sorry, I don\'t know any %s' %text[1] + else: + message = 'Usage "add "' + + #change guild status + elif text[0] == 'guildstatus' and isDM: + if len(text)==2: + record = guildhouse.info(guildname) + if record: + if guildhouse.change_status(guildname,text[1]): + record = guildhouse.info(text[1]) #refresh record + message = '%s now has status of %s' %(guildname, record['Status']) + else: + message = '%s is not a valid status' %text[1] + else: + message = '%s is not a guild' %guildname + else: + message = 'Usage "guildstatus \n%s"' %str(guildhouse.status) + + else: + message = 'What did you need?' + + else: + message = 'Board Error' + whoami.Say(message) + diff --git a/python/guilds/guildstorage.py b/python/guilds/guildstorage.py new file mode 100644 index 000000000..4b1e3b244 --- /dev/null +++ b/python/guilds/guildstorage.py @@ -0,0 +1,24 @@ +import Crossfire +import CFGuilds +import sys +import string +activator=Crossfire.WhoIsActivator() +whoami=Crossfire.WhoAmI() +mymap=Activator.Map +myx=whoami.X +message="start" +activator.Say(message) +whoami.Say("working") +myy=whoami.Y +guildname=Crossfire.ScriptParameters() +if (guildname): + guild=CFGuilds.CFGuild(guildname) + guildrecord=CFGuilds.CFGuildHouses().info(guildname) + found=0 + record=guild.info(activatorname) + if whoami.Name=="Novice lounge": + if record['Rank']=="Novice" or record['Rank']=="Journeyman" or record['Rank']== "Guildman" or record['Rank']=="Master" or record['Rank']=="Guildmaster": + x=20 + y=21 + activator.Teleport(mymap, int(x), int(y) + diff --git a/python/guilds/trigger.py b/python/guilds/trigger.py new file mode 100644 index 000000000..3d95bf510 --- /dev/null +++ b/python/guilds/trigger.py @@ -0,0 +1,61 @@ +import Crossfire +import CFGuilds +import CFItemBroker +import random +import string +whoami=Crossfire.WhoAmI() +message = whoami.Slaying +message1 = whoami.Name +whoami.Say(message) +whoami.Say(message1) +#activator = Crossfire.WhoIsActivator() +mymap = whoami.Map +#activatorname = activator.Name +myx=10 +myy = 17 +obj1=mymap.ObjectAt(myx,myy) +objects = [obj1] +players = [] +names = [] +marker = [] +speed=.01 + + +def find_trigger_marker(object): + while (object.Type != 52) : #1 is type 'Player' + object = object.Above + if not object: + return 0 + return object + +def find_player(object): + while (object.Type != 1) : #1 is type 'Player' + object = object.Above + if not object: + return 0 + return object +for object in objects: + temp = find_player(object) + if temp: + activator =(temp) + +for object in objects: + temp = find_trigger_marker(object) + if temp: + marker =(temp) +print marker +#ctrl1=marker.Slaying +foo=marker.Food +#print ctrl1 +#print foo +#print activator.Name + +foo2 = int (10) +foo1 = foo*foo2 +foo3 = -(foo1) +foo4 = str(foo3) +marker1 = activator.CreateObject("force") +marker1.Slaying=ctrl1 +marker1.Speed = 0.010000 +marker1.SpeedLeft=int(- foo) + diff --git a/templates/guild/GuildList b/templates/guild/GuildList index 1212e05cc..6ab3d4e77 100644 --- a/templates/guild/GuildList +++ b/templates/guild/GuildList @@ -1,3 +1,5 @@ GUILD_TEMPLATE PoisonedDagger GreenGoblin +SmokingCauldron +PurpleButterfly diff --git a/templates/guild/basement b/templates/guild/basement index eb655d676..f2de3ef1c 100644 --- a/templates/guild/basement +++ b/templates/guild/basement @@ -1,5 +1,6 @@ arch map name basement +swap_time 300 difficulty 1 region Template width 25 @@ -9,8 +10,8 @@ Creator: CF Java Map Editor Date: 6/15/2003 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg -unique 1 end arch woodfloor end @@ -1470,6 +1471,20 @@ arch mine_1_2 x 6 y 8 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 6 +y 9 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 6 y 9 @@ -4011,6 +4026,20 @@ x 16 y 12 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 16 +y 13 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 16 y 13 @@ -4039,6 +4068,20 @@ arch dungeon_magic x 16 y 14 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 16 +y 15 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 16 y 15 @@ -4492,6 +4535,29 @@ is_animated 0 fly_on 0 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 19 +y 1 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch counterspell +wc -120 +x 19 +y 2 +speed 10 +nrof 1 +invisible 1 +identified 1 +end arch blocked x 19 y 5 @@ -4862,6 +4928,20 @@ x 21 y 24 connected 31 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 22 +y 1 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch blocked x 22 y 5 diff --git a/templates/guild/bigchest b/templates/guild/bigchest index f1cb74d96..c34d90a79 100755 --- a/templates/guild/bigchest +++ b/templates/guild/bigchest @@ -1,7 +1,8 @@ arch map -name Bigchest +name Guild Bigchest +reset_timeout 300 difficulty 1 -region Template +region darcap width 5 height 5 enter_x 2 @@ -11,6 +12,7 @@ Creator: CF Java Map Editor Date: 12/23/2001 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-05-08 Logan Perkins endmsg end arch woodfloor2 diff --git a/templates/guild/guild_alchemy b/templates/guild/guild_alchemy index ef70c328c..e35871611 100644 --- a/templates/guild/guild_alchemy +++ b/templates/guild/guild_alchemy @@ -1,9 +1,10 @@ arch map name Guild Alchemy Lab +reset_timeout 300 difficulty 1 region Template -width 7 -height 10 +width 8 +height 12 enter_x 3 enter_y 7 msg @@ -11,83 +12,176 @@ Creator: CF Java Map Editor Date: 4/8/2007 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg end arch woodfloor end -arch dwall_3_3 -end -arch light4 +arch dwall_2_1_2 end arch woodfloor y 1 -end -arch dwall_2_1_1 -y 1 +unique 1 end arch woodfloor y 2 -end -arch dwall_2_1_1 -y 2 +unique 1 end arch woodfloor y 3 -end -arch dwall_2_1_1 -y 3 +unique 1 end arch woodfloor y 4 -end -arch dwall_2_1_1 -y 4 -end -arch light4 -y 4 +unique 1 end arch woodfloor y 5 -end -arch dwall_2_1_1 -y 5 +unique 1 end arch woodfloor y 6 -end -arch dwall_2_1_1 -y 6 +unique 1 end arch woodfloor y 7 -end -arch dwall_2_1_1 -y 7 +unique 1 end arch woodfloor y 8 end -arch dwall_2_2_1 -y 8 -end -arch swall_1_3_half -y 8 -end -arch light4 +arch dwall_2_1_2 y 8 end arch woodfloor y 9 end arch woodfloor +y 10 +end +arch woodfloor +y 11 +end +arch woodfloor x 1 end -arch dwall_2_1_2 +arch dwall_3_3 x 1 end +arch light4 +x 1 +end +arch woodfloor +x 1 +y 1 +end +arch dwall_2_1_1 +x 1 +y 1 +end +arch woodfloor +x 1 +y 2 +end +arch dwall_2_1_1 +x 1 +y 2 +end +arch woodfloor +x 1 +y 3 +end +arch dwall_2_1_1 +x 1 +y 3 +end +arch woodfloor +x 1 +y 4 +end +arch dwall_2_1_1 +x 1 +y 4 +end +arch light4 +x 1 +y 4 +end +arch woodfloor +x 1 +y 5 +end +arch dwall_2_1_1 +x 1 +y 5 +end +arch woodfloor +x 1 +y 6 +end +arch dwall_2_1_1 +x 1 +y 6 +end +arch woodfloor +x 1 +y 7 +end +arch dwall_2_1_1 +x 1 +y 7 +end +arch woodfloor +x 1 +y 8 +end +arch dwall_2_2_1 +x 1 +y 8 +end +arch swall_1_3_half +x 1 +y 8 +end +arch light4 +x 1 +y 8 +end +arch woodfloor +x 1 +y 9 +end +arch woodfloor +x 1 +y 10 +end +arch woodfloor +x 1 +y 11 +end +arch woodfloor +x 2 +end +arch dwall_2_1_2 +x 2 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 2 +y 1 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch duplicator other_arch cauldron -x 1 +x 2 y 1 connected 9001 activate_on_release 0 @@ -95,224 +189,281 @@ end arch creator other_arch cauldron hp 0 -x 1 +x 2 y 1 level 2 connected 9001 lifesave 1 activate_on_push 0 +arch cauldron +magic 3 +container 1000000 +no_pick 1 +end end arch woodfloor -x 1 +x 2 y 1 end arch cauldron -x 1 +x 2 y 1 +magic 3 +container 1000000 no_pick 1 end arch woodfloor -x 1 +x 2 y 2 unique 1 end arch woodfloor -x 1 +x 2 y 3 unique 1 end arch firepot -x 1 +x 2 y 3 end arch woodfloor -x 1 +x 2 y 4 unique 1 end arch table_4 -x 1 +x 2 y 4 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 +type 0 +material 0 no_pick 1 +is_floor 0 end arch woodfloor -x 1 +x 2 y 5 unique 1 end arch firepot -x 1 +x 2 y 5 end arch woodfloor -x 1 +x 2 y 6 unique 1 end arch chair_1.1 -x 1 +x 2 y 6 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 -resist_confusion 100 +type 0 +material 0 no_pick 1 end arch woodfloor -x 1 +x 2 y 7 unique 1 end arch table_3 -x 1 +x 2 y 7 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 +type 0 +material 0 no_pick 1 end arch woodfloor -x 1 +x 2 y 8 end arch dwall_2_1_2 -x 1 +x 2 y 8 end arch woodfloor -x 1 +x 2 y 9 end arch woodfloor x 2 -end -arch dwall_2_1_2 -x 2 +y 10 end arch woodfloor x 2 +y 11 +end +arch woodfloor +x 3 +end +arch dwall_2_1_2 +x 3 +end +arch woodfloor +x 3 y 1 unique 1 end arch firepot -x 2 +x 3 y 1 end arch woodfloor -x 2 +x 3 y 2 unique 1 end arch woodfloor -x 2 +x 3 y 3 unique 1 end arch woodfloor -x 2 +x 3 y 4 unique 1 end arch chair_1.2 -x 2 +x 3 y 4 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 resist_confusion 100 +material 0 no_pick 1 end arch woodfloor -x 2 +x 3 y 5 unique 1 end arch woodfloor -x 2 +x 3 y 6 unique 1 end arch woodfloor -x 2 +x 3 y 7 end arch dwall_0 -x 2 +x 3 y 7 end arch woodfloor -x 2 +x 3 y 8 end arch dwall_1_3 -x 2 +x 3 y 8 end arch woodfloor -x 2 +x 3 y 9 end arch dwall_0 -x 2 +x 3 y 9 end arch woodfloor x 3 +y 10 end -arch dwall_2_1_2 +arch dwall_0 x 3 +y 10 end arch woodfloor x 3 +y 11 +end +arch dwall_0 +x 3 +y 11 +end +arch woodfloor +x 4 +end +arch dwall_2_1_2 +x 4 +end +arch woodfloor +x 4 y 1 unique 1 end arch barrel -x 3 +x 4 y 1 +material 0 +move_block 0 no_pick 1 end arch woodfloor -x 3 +x 4 y 2 unique 1 end arch light3 -x 3 +x 4 y 2 end arch woodfloor -x 3 +x 4 y 3 unique 1 end arch woodfloor -x 3 +x 4 y 4 unique 1 end +arch lightningwall_5 +sp 0 +x 4 +y 4 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end arch woodfloor -x 3 +x 4 +y 4 +unique 1 +end +arch lightningwall_5 +x 4 +y 4 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end +arch woodfloor +x 4 y 5 unique 1 end arch light3 -x 3 +x 4 y 5 end arch woodfloor -x 3 +x 4 y 6 unique 1 end @@ -321,30 +472,30 @@ msg Be sure to pick up after yourself, otherwise the cleaning staff will. endmsg -x 3 +x 4 y 7 end arch woodfloor -x 3 +x 4 y 7 unique 1 end arch pedestal -x 3 +x 4 y 7 invisible 1 connected 32 end arch dungeon_magic -x 3 +x 4 y 8 end arch woodfloor -x 3 +x 4 y 8 end arch grate_closed_1 -x 3 +x 4 y 8 connected 32 end @@ -352,173 +503,190 @@ arch invis_exit slaying secondfloor hp 14 sp 5 -x 3 +x 4 y 8 end arch woodfloor -x 3 +x 4 y 9 end arch woodfloor x 4 -end -arch dwall_2_1_2 -x 4 +y 10 end arch woodfloor x 4 +y 11 +end +arch woodfloor +x 5 +end +arch dwall_2_1_2 +x 5 +end +arch woodfloor +x 5 y 1 unique 1 end arch firepot -x 4 +x 5 y 1 end arch woodfloor -x 4 +x 5 y 2 unique 1 end arch woodfloor -x 4 +x 5 y 3 unique 1 end arch chair_1.4 -x 4 +x 5 y 3 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 +material 0 no_pick 1 end arch woodfloor -x 4 +x 5 y 4 unique 1 end arch chair_1.4 -x 4 +x 5 y 4 resist_physical 100 resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor -x 4 +x 5 y 5 unique 1 end arch firepot -x 4 +x 5 y 5 end arch woodfloor -x 4 +x 5 y 6 unique 1 end arch woodfloor -x 4 +x 5 y 7 end arch dwall_0 -x 4 +x 5 y 7 end arch woodfloor -x 4 +x 5 y 8 end arch dwall_1_4 -x 4 +x 5 y 8 end arch woodfloor -x 4 +x 5 y 9 end arch dwall_0 -x 4 +x 5 y 9 end arch woodfloor x 5 +y 10 end -arch dwall_2_1_2 +arch dwall_0 x 5 +y 10 end arch woodfloor x 5 +y 11 +end +arch dwall_0 +x 5 +y 11 +end +arch woodfloor +x 6 +end +arch dwall_2_1_2 +x 6 +end +arch woodfloor +x 6 y 1 unique 1 end arch table_3 -x 5 +x 6 y 1 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 +material 0 +no_pick 1 end arch woodfloor -x 5 +x 6 y 2 unique 1 end arch woodfloor -x 5 +x 6 y 3 unique 1 end arch table_4 -x 5 +x 6 y 3 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 +material 0 no_pick 1 end arch woodfloor -x 5 +x 6 y 4 unique 1 end arch table_4 -x 5 +x 6 y 4 resist_physical 100 resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor -x 5 +x 6 y 5 unique 1 end arch barrel -x 5 +x 6 y 5 +move_block 0 no_pick 1 +can_roll 0 end arch woodfloor -x 5 +x 6 y 6 unique 1 end arch woodfloor -x 5 +x 6 y 7 end arch altar_trigger @@ -529,108 +697,148 @@ Removing your old cauldron. Please wait. endmsg exp 60 food 30000 -x 5 +x 6 y 7 connected 9001 end arch woodfloor -x 5 +x 6 y 8 end arch dwall_2_1_2 -x 5 +x 6 y 8 end arch woodfloor -x 5 +x 6 y 9 end +arch button_lever +name Hard Reset +msg +Pull this lever twice to clear the room. +endmsg +x 6 +y 9 +connected 990 +end arch woodfloor x 6 +y 10 +end +arch woodfloor +x 6 +y 11 +end +arch invis_exit +slaying secondfloor +hp 16 +sp 6 +x 6 +y 11 +end +arch woodfloor +x 7 end arch dwall_2_2_3 -x 6 +x 7 end arch light4 -x 6 +x 7 end arch woodfloor -x 6 +x 7 y 1 end arch dwall_2_1_1 -x 6 +x 7 y 1 end arch woodfloor -x 6 +x 7 y 2 end arch dwall_2_1_1 -x 6 +x 7 y 2 end arch woodfloor -x 6 +x 7 y 3 end arch dwall_2_1_1 -x 6 +x 7 y 3 end arch woodfloor -x 6 +x 7 y 4 end arch dwall_2_1_1 -x 6 +x 7 y 4 end arch light4 -x 6 +x 7 y 4 end arch woodfloor -x 6 +x 7 y 5 end arch dwall_2_1_1 -x 6 +x 7 y 5 end arch woodfloor -x 6 +x 7 y 6 end arch dwall_2_1_1 -x 6 +x 7 y 6 end arch woodfloor -x 6 +x 7 y 7 end arch dwall_2_1_1 -x 6 +x 7 y 7 end arch woodfloor -x 6 +x 7 y 8 end arch dwall_3_4 -x 6 +x 7 y 8 end arch light4 -x 6 +x 7 y 8 end arch woodfloor -x 6 +x 7 y 9 end arch dwall_2_1_1 -x 6 +x 7 y 9 end +arch woodfloor +x 7 +y 10 +end +arch dwall_2_1_1 +x 7 +y 10 +end +arch woodfloor +x 7 +y 11 +end +arch dwall_2_1_1 +x 7 +y 11 +end diff --git a/templates/guild/guild_bbq b/templates/guild/guild_bbq index 9fb3bda36..490531d83 100644 --- a/templates/guild/guild_bbq +++ b/templates/guild/guild_bbq @@ -1,5 +1,6 @@ arch map name Guild Hall BBQ +reset_timeout 300 difficulty 1 region Template width 11 @@ -12,14 +13,13 @@ Editor: CrossfireEditor Date: 3/15/2007 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg outdoor 1 end arch grass unique 1 end -arch ant -end arch grass y 1 end @@ -31,12 +31,19 @@ arch grass y 2 unique 1 end +arch invis_exit +slaying mainfloor +hp 23 +sp 23 +y 2 +end arch grass y 3 unique 1 end arch tree4 y 3 +move_block all blocksview 1 end arch grass @@ -85,6 +92,14 @@ arch grass x 1 unique 1 end +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg +x 1 +connected 990 +end arch flagstone x 1 y 1 @@ -195,6 +210,9 @@ end arch hedge x 2 y 2 +alive 0 +blocksview 0 +tear_down 0 end arch flagstone x 2 @@ -252,6 +270,20 @@ x 2 y 7 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 2 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dirtfloor x 2 y 8 @@ -497,6 +529,12 @@ end arch footpath_2_1_1 x 5 end +arch invis_exit +slaying mainfloor +hp 23 +sp 23 +x 5 +end arch dungeon_magic x 5 y 1 @@ -523,16 +561,20 @@ x 5 y 2 unique 1 end -arch mat -x 5 -y 2 -end arch pedestal x 5 y 2 invisible 1 connected 112 end +arch check_inv +x 5 +y 2 +end +arch mat +x 5 +y 2 +end arch flagstone x 5 y 3 @@ -547,6 +589,48 @@ x 5 y 4 unique 1 end +arch woodfloor +x 5 +y 5 +unique 1 +end +arch lightningwall_5 +sp 0 +x 5 +y 5 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 5 +y 5 +unique 1 +end +arch lightningwall_5 +x 5 +y 5 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end arch flagstone x 5 y 5 @@ -562,6 +646,20 @@ x 5 y 7 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 5 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch flagstone x 5 y 8 @@ -583,11 +681,17 @@ level 2 connected 9002 lifesave 1 activate_on_push 0 +arch stove +magic 3 +container 1000000 +identified 1 +end end arch stove x 5 y 8 magic 3 +container 1000000 identified 1 end arch flagstone @@ -691,6 +795,9 @@ end arch barrel x 6 y 8 +material 0 +move_block 0 +no_pick 1 end arch flagstone x 6 @@ -838,6 +945,9 @@ end arch hedge x 8 y 2 +alive 0 +blocksview 0 +tear_down 0 end arch flagstone x 8 @@ -907,6 +1017,9 @@ end arch hedge x 8 y 8 +alive 0 +blocksview 0 +tear_down 0 end arch flagstone x 8 diff --git a/templates/guild/guild_hq b/templates/guild/guild_hq index 8fb0356dd..bc86611a9 100644 --- a/templates/guild/guild_hq +++ b/templates/guild/guild_hq @@ -1,9 +1,10 @@ arch map name Guild HeadQuarters +reset_timeout 300 difficulty 1 region Template -width 25 -height 25 +width 27 +height 27 enter_x 1 enter_y 1 msg @@ -12,6 +13,7 @@ Creator: Avion Date: 6/14/2003 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg end arch flagstone @@ -99,89 +101,20 @@ end arch flagstone y 14 end -arch awall_2_2_1 +arch awall_2_1_1 y 14 end -arch button_small -y 15 -weight 2 -connected 16 -end -arch button_small -y 15 -connected 11 -end -arch spikes_open -y 15 -speed 0.500000 -value 1 -connected 10 -end -arch boulder +arch flagstone y 15 end -arch button_small +arch awall_2_1_1 +y 15 +end +arch flagstone y 16 -connected 15 end -arch spikes_closed +arch awall_2_2_1 y 16 -speed 0.500000 -connected 12 -end -arch blocked -y 17 -end -arch blocked -y 18 -end -arch spikes_closed -y 19 -speed 0.500000 -connected 16 -end -arch card -name Kennel Token -name_pl Kennel Tokens -slaying Kennel_Token -msg -The holder of this card is allowed free -access into and out of the Kennel -endmsg -face diploma.111 -y 19 -value 800 -identified 1 -end -arch blocked -y 20 -end -arch blocked -y 21 -end -arch blocked -y 22 -end -arch spikes_closed -y 23 -speed 0.500000 -connected 36 -end -arch card -name Alchemy Token -name_pl Alchemy Tokens -slaying Alch_Token -msg -The holder of this card is allowed free -access into and out of the Alchemy Room. -endmsg -face diploma.111 -y 23 -value 800 -identified 1 -end -arch blocked -y 24 end arch flagstone x 1 @@ -189,6 +122,21 @@ end arch awall_2_1_2 x 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 1 +y 1 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE GuildMaster D +title Python +slaying /python/guilds/arrest.py +end +end arch flagstone x 1 y 1 @@ -261,87 +209,70 @@ x 1 y 13 unique 1 end +arch flagstone +x 1 +y 14 +unique 1 +end +arch flagstone +x 1 +y 15 +unique 1 +end arch teleporter slaying hallofjoining hp 11 sp 11 x 1 -y 13 +y 15 end arch flagstone x 1 -y 14 +y 16 end arch awall_2_1_2 x 1 -y 14 -end -arch blocked -x 1 -y 15 -end -arch button_small -x 1 y 16 -weight 4 -connected 17 -end -arch button_small -x 1 -y 16 -weight 2 -connected 10 -end -arch button_small -x 1 -y 16 -connected 12 -end -arch spikes_closed -x 1 -y 16 -speed 0.500000 -connected 11 end arch blocked x 1 y 17 end -arch igate_closed_2 +arch blocked x 1 y 18 -speed 0.500000 -connected 17 end arch blocked x 1 y 19 end -arch igate_closed_2 +arch blocked x 1 y 20 -speed 0.500000 -connected 15 end arch blocked x 1 y 21 end -arch igate_closed_2 +arch blocked x 1 y 22 -speed 0.500000 -connected 37 end arch blocked x 1 y 23 end -arch igate_closed_2 +arch blocked x 1 y 24 -speed 0.500000 -connected 35 +end +arch blocked +x 1 +y 25 +end +arch blocked +x 1 +y 26 end arch flagstone x 2 @@ -414,68 +345,127 @@ x 2 y 13 unique 1 end +arch flagstone +x 2 +y 14 +unique 1 +end +arch flagstone +x 2 +y 15 +unique 1 +end arch sign_w msg Hall of Joining endmsg x 2 -y 13 +y 15 end arch flagstone x 2 -y 14 +y 16 end arch awall_2_1_2 x 2 -y 14 -end -arch blocked -x 2 -y 15 -end -arch blocked -x 2 y 16 end -arch blocked +arch button_small +x 2 +y 17 +weight 2 +connected 16 +end +arch button_small +x 2 +y 17 +connected 11 +end +arch spikes_open +x 2 +y 17 +speed 0.500000 +value 1 +connected 10 +end +arch boulder x 2 y 17 end -arch igate_closed_2 +arch button_small +x 2 +y 18 +connected 15 +end +arch spikes_closed x 2 y 18 speed 0.500000 -connected 15 +connected 12 end arch blocked x 2 y 19 end -arch igate_closed_2 +arch blocked x 2 y 20 +end +arch spikes_closed +x 2 +y 21 speed 0.500000 -connected 17 +connected 16 +end +arch card +name Kennel Token +name_pl Kennel Tokens +slaying GUILD_TEMPLATE_Kennel_Token +msg +The holder of this card is allowed free +access into and out of the Kennel +endmsg +face diploma.111 +x 2 +y 21 +value 800 +identified 1 end arch blocked x 2 -y 21 -end -arch igate_closed_2 -x 2 y 22 -speed 0.500000 -connected 35 end arch blocked x 2 y 23 end -arch igate_closed_2 +arch blocked x 2 y 24 +end +arch spikes_closed +x 2 +y 25 speed 0.500000 -connected 37 +connected 36 +end +arch card +name Alchemy Token +name_pl Alchemy Tokens +slaying GUILD_TEMPLATE_Alch_Token +msg +The holder of this card is allowed free +access into and out of the Alchemy Room. +endmsg +face diploma.111 +x 2 +y 25 +value 800 +identified 1 +end +arch blocked +x 2 +y 26 end arch flagstone x 3 @@ -498,10 +488,6 @@ x 3 y 3 unique 1 end -arch brazier -x 3 -y 3 -end arch flagstone x 3 y 4 @@ -542,10 +528,6 @@ x 3 y 11 unique 1 end -arch brazier -x 3 -y 11 -end arch flagstone x 3 y 12 @@ -559,81 +541,392 @@ end arch flagstone x 3 y 14 +unique 1 +end +arch flagstone +x 3 +y 15 +unique 1 +end +arch flagstone +x 3 +y 16 end arch awall_2_1_2 x 3 -y 14 +y 16 +end +arch blocked +x 3 +y 17 end arch button_small x 3 +y 18 +weight 4 +connected 17 +end +arch button_small +x 3 +y 18 +weight 2 +connected 10 +end +arch button_small +x 3 +y 18 +connected 12 +end +arch spikes_closed +x 3 +y 18 +speed 0.500000 +connected 11 +end +arch blocked +x 3 +y 19 +end +arch igate_closed_2 +x 3 +y 20 +speed 0.500000 +connected 17 +end +arch blocked +x 3 +y 21 +end +arch igate_closed_2 +x 3 +y 22 +speed 0.500000 +connected 15 +end +arch blocked +x 3 +y 23 +end +arch igate_closed_2 +x 3 +y 24 +speed 0.500000 +connected 37 +end +arch blocked +x 3 +y 25 +end +arch igate_closed_2 +x 3 +y 26 +speed 0.500000 +connected 35 +end +arch flagstone +x 4 +end +arch awall_2_1_2 +x 4 +end +arch flagstone +x 4 +y 1 +unique 1 +end +arch flagstone +x 4 +y 2 +unique 1 +end +arch flagstone +x 4 +y 3 +unique 1 +end +arch flagstone +x 4 +y 4 +unique 1 +end +arch brazier +x 4 +y 4 +end +arch flagstone +x 4 +y 5 +unique 1 +end +arch flagstone +x 4 +y 6 +unique 1 +end +arch flagstone +x 4 +y 7 +unique 1 +end +arch flagstone +x 4 +y 8 +unique 1 +end +arch flagstone +x 4 +y 9 +unique 1 +end +arch flagstone +x 4 +y 10 +unique 1 +end +arch flagstone +x 4 +y 11 +unique 1 +end +arch flagstone +x 4 +y 12 +unique 1 +end +arch brazier +x 4 +y 12 +end +arch flagstone +x 4 +y 13 +unique 1 +end +arch flagstone +x 4 +y 14 +unique 1 +end +arch flagstone +x 4 y 15 +unique 1 +end +arch flagstone +x 4 +y 16 +end +arch awall_2_1_2 +x 4 +y 16 +end +arch blocked +x 4 +y 17 +end +arch blocked +x 4 +y 18 +end +arch blocked +x 4 +y 19 +end +arch igate_closed_2 +x 4 +y 20 +speed 0.500000 +connected 15 +end +arch blocked +x 4 +y 21 +end +arch igate_closed_2 +x 4 +y 22 +speed 0.500000 +connected 17 +end +arch blocked +x 4 +y 23 +end +arch igate_closed_2 +x 4 +y 24 +speed 0.500000 +connected 35 +end +arch blocked +x 4 +y 25 +end +arch igate_closed_2 +x 4 +y 26 +speed 0.500000 +connected 37 +end +arch flagstone +x 5 +end +arch awall_2_1_2 +x 5 +end +arch flagstone +x 5 +y 1 +unique 1 +end +arch flagstone +x 5 +y 2 +unique 1 +end +arch flagstone +x 5 +y 3 +unique 1 +end +arch flagstone +x 5 +y 4 +unique 1 +end +arch flagstone +x 5 +y 5 +unique 1 +end +arch flagstone +x 5 +y 6 +unique 1 +end +arch flagstone +x 5 +y 7 +unique 1 +end +arch flagstone +x 5 +y 8 +unique 1 +end +arch flagstone +x 5 +y 9 +unique 1 +end +arch flagstone +x 5 +y 10 +unique 1 +end +arch flagstone +x 5 +y 11 +unique 1 +end +arch flagstone +x 5 +y 12 +unique 1 +end +arch flagstone +x 5 +y 13 +unique 1 +end +arch flagstone +x 5 +y 14 +unique 1 +end +arch flagstone +x 5 +y 15 +unique 1 +end +arch flagstone +x 5 +y 16 +end +arch awall_2_1_2 +x 5 +y 16 +end +arch button_small +x 5 +y 17 weight 2 connected 26 end arch button_small -x 3 -y 15 +x 5 +y 17 connected 21 end arch spikes_open -x 3 -y 15 +x 5 +y 17 speed 0.500000 value 1 connected 20 end arch boulder -x 3 -y 15 +x 5 +y 17 end arch button_small -x 3 -y 16 +x 5 +y 18 connected 25 end arch spikes_closed -x 3 -y 16 +x 5 +y 18 speed 0.500000 connected 22 end arch blocked -x 3 -y 17 +x 5 +y 19 end arch spikes_closed -x 3 -y 18 +x 5 +y 20 speed 0.500000 connected 16 end arch card name Kennel Token name_pl Kennel Tokens -slaying Kennel_Token +slaying GUILD_TEMPLATE_Kennel_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 3 -y 18 +x 5 +y 20 value 800 identified 1 end arch blocked -x 3 -y 19 +x 5 +y 21 end arch spikes_closed -x 3 -y 20 +x 5 +y 22 speed 0.500000 connected 16 end arch r_sack -x 3 -y 20 +x 5 +y 22 arch note msg Selection sold out, please choose another. @@ -644,42 +937,42 @@ nrof 10 end end arch blocked -x 3 -y 21 +x 5 +y 23 end arch spikes_closed -x 3 -y 22 +x 5 +y 24 speed 0.500000 connected 36 end arch card name Alchemy Token name_pl Alchemy Tokens -slaying Alch_Token +slaying GUILD_TEMPLATE_Alch_Token msg The holder of this card is allowed free access into and out of the Alchemy Room. endmsg face diploma.111 -x 3 -y 22 +x 5 +y 24 value 800 identified 1 end arch blocked -x 3 -y 23 +x 5 +y 25 end arch spikes_closed -x 3 -y 24 +x 5 +y 26 speed 0.500000 connected 36 end arch r_sack -x 3 -y 24 +x 5 +y 26 arch note msg Selection sold out, please choose another. @@ -690,478 +983,298 @@ nrof 10 end end arch flagstone -x 4 +x 6 end arch awall_2_1_2 -x 4 +x 6 end arch flagstone -x 4 +x 6 y 1 unique 1 end arch flagstone -x 4 +x 6 y 2 unique 1 end arch flagstone -x 4 +x 6 y 3 unique 1 end arch flagstone -x 4 +x 6 y 4 unique 1 end arch flagstone -x 4 +x 6 y 5 unique 1 end -arch flagstone -x 4 +arch blackmarble +x 6 y 6 unique 1 end -arch flagstone -x 4 +arch marble +x 6 y 7 unique 1 end -arch flagstone -x 4 +arch blackmarble +x 6 y 8 unique 1 end -arch flagstone -x 4 +arch marble +x 6 y 9 unique 1 end -arch flagstone -x 4 +arch blackmarble +x 6 y 10 unique 1 end arch flagstone -x 4 +x 6 y 11 unique 1 end arch flagstone -x 4 +x 6 y 12 unique 1 end arch flagstone -x 4 +x 6 y 13 unique 1 end arch flagstone -x 4 +x 6 y 14 +unique 1 +end +arch flagstone +x 6 +y 15 +unique 1 +end +arch flagstone +x 6 +y 16 end arch awall_2_1_2 -x 4 -y 14 +x 6 +y 16 end arch blocked -x 4 -y 15 +x 6 +y 17 end arch button_small -x 4 -y 16 +x 6 +y 18 weight 4 connected 27 end arch button_small -x 4 -y 16 +x 6 +y 18 weight 2 connected 20 end arch button_small -x 4 -y 16 +x 6 +y 18 connected 22 end arch spikes_closed -x 4 -y 16 +x 6 +y 18 speed 0.500000 connected 21 end arch blocked -x 4 -y 17 +x 6 +y 19 end arch igate_closed_2 -x 4 -y 18 +x 6 +y 20 speed 0.500000 connected 17 end arch blocked -x 4 -y 19 -end -arch blocked -x 4 -y 20 -end -arch blocked -x 4 +x 6 y 21 end -arch igate_closed_2 -x 4 +arch blocked +x 6 y 22 +end +arch blocked +x 6 +y 23 +end +arch igate_closed_2 +x 6 +y 24 speed 0.500000 connected 37 end arch blocked -x 4 -y 23 +x 6 +y 25 end arch blocked -x 4 -y 24 +x 6 +y 26 end arch flagstone -x 5 +x 7 end arch awall_2_1_2 -x 5 +x 7 end arch flagstone -x 5 +x 7 y 1 unique 1 end arch flagstone -x 5 +x 7 y 2 unique 1 end arch flagstone -x 5 +x 7 y 3 unique 1 end arch flagstone -x 5 +x 7 y 4 unique 1 end -arch blackmarble -x 5 +arch flagstone +x 7 y 5 unique 1 end arch marble -x 5 +x 7 y 6 unique 1 end arch blackmarble -x 5 +x 7 y 7 unique 1 end arch marble -x 5 +x 7 y 8 unique 1 end arch blackmarble -x 5 +x 7 y 9 unique 1 end -arch flagstone -x 5 +arch marble +x 7 y 10 unique 1 end arch flagstone -x 5 +x 7 y 11 unique 1 end arch flagstone -x 5 +x 7 y 12 unique 1 end arch flagstone -x 5 +x 7 y 13 unique 1 end arch flagstone -x 5 +x 7 y 14 +unique 1 +end +arch flagstone +x 7 +y 15 +unique 1 +end +arch flagstone +x 7 +y 16 end arch awall_2_1_2 -x 5 -y 14 -end -arch blocked -x 5 -y 15 -end -arch blocked -x 5 +x 7 y 16 end arch blocked -x 5 +x 7 y 17 end -arch igate_closed_2 -x 5 +arch blocked +x 7 y 18 +end +arch blocked +x 7 +y 19 +end +arch igate_closed_2 +x 7 +y 20 speed 0.500000 connected 15 end arch blocked -x 5 -y 19 +x 7 +y 21 end arch blocked -x 5 -y 20 +x 7 +y 22 end arch igate_closed_2 -x 5 -y 21 +x 7 +y 23 speed 0.500000 connected 35 end arch blocked -x 5 -y 22 -end -arch blocked -x 5 -y 23 -end -arch blocked -x 5 +x 7 y 24 end +arch blocked +x 7 +y 25 +end +arch blocked +x 7 +y 26 +end arch flagstone -x 6 +x 8 end arch awall_2_1_2 -x 6 +x 8 end arch flagstone -x 6 -y 1 -unique 1 -end -arch flagstone -x 6 -y 2 -unique 1 -end -arch flagstone -x 6 -y 3 -unique 1 -end -arch flagstone -x 6 -y 4 -unique 1 -end -arch marble -x 6 -y 5 -unique 1 -end -arch blackmarble -x 6 -y 6 -unique 1 -end -arch marble -x 6 -y 7 -unique 1 -end -arch blackmarble -x 6 -y 8 -unique 1 -end -arch marble -x 6 -y 9 -unique 1 -end -arch flagstone -x 6 -y 10 -unique 1 -end -arch flagstone -x 6 -y 11 -unique 1 -end -arch flagstone -x 6 -y 12 -unique 1 -end -arch flagstone -x 6 -y 13 -unique 1 -end -arch flagstone -x 6 -y 14 -end -arch awall_2_1_2 -x 6 -y 14 -end -arch button_small -x 6 -y 15 -weight 2 -connected 36 -end -arch button_small -x 6 -y 15 -connected 31 -end -arch spikes_open -x 6 -y 15 -speed 0.500000 -value 1 -connected 30 -end -arch boulder -x 6 -y 15 -end -arch button_small -x 6 -y 16 -connected 35 -end -arch spikes_closed -x 6 -y 16 -speed 0.500000 -connected 32 -end -arch blocked -x 6 -y 17 -end -arch cobblestones2 -x 6 -y 18 -end -arch spikes_closed -x 6 -y 18 -speed 0.500000 -connected 16 -end -arch card -name Kennel Token -name_pl Kennel Tokens -slaying Kennel_Token -msg -The holder of this card is allowed free -access into and out of the Kennel -endmsg -face diploma.111 -x 6 -y 18 -value 800 -identified 1 -end -arch blocked -x 6 -y 19 -end -arch cobblestones2 -x 6 -y 20 -end -arch spikes_closed -x 6 -y 20 -speed 0.500000 -connected 36 -end -arch card -name Alchemy Token -name_pl Alchemy Tokens -slaying Alch_Token -msg -The holder of this card is allowed free -access into and out of the Alchemy Room. -endmsg -face diploma.111 -x 6 -y 20 -value 800 -identified 1 -end -arch blocked -x 6 -y 21 -end -arch blocked -x 6 -y 22 -end -arch spikes_closed -x 6 -y 23 -speed 0.500000 -connected 46 -end -arch card -name Garden Token -name_pl Garden Tokens -slaying Gard_Token -msg -The holder of this card is allowed free -access into and out of the Garden. -endmsg -face diploma.111 -x 6 -y 23 -value 800 -identified 1 -end -arch blocked -x 6 -y 24 -end -arch flagstone -x 7 -end -arch awall_2_1_2 -x 7 -end -arch flagstone -x 7 +x 8 y 1 unique 1 end @@ -1171,7 +1284,7 @@ msg I am a talking board, please say something to me. If you don't know what to say, say help. endmsg -x 7 +x 8 y 1 arch event_say name GUILD_TEMPLATE_GM_board @@ -1180,45 +1293,65 @@ slaying /python/IPO/board.py end end arch flagstone -x 7 +x 8 y 2 unique 1 end arch flagstone -x 7 +x 8 y 3 unique 1 end arch flagstone -x 7 +x 8 y 4 unique 1 end -arch blackmarble -x 7 +arch flagstone +x 8 y 5 unique 1 end -arch marble -x 7 +arch blackmarble +x 8 y 6 unique 1 end -arch blackmarble -x 7 +arch marble +x 8 y 7 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 8 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE GuildMaster A +title Python +slaying /python/guilds/arrest.py +end +end +arch blackmarble +x 8 +y 8 +unique 1 +end arch crystalball name Guild Oracle name_pl Guild Oracle -x 7 -y 7 +x 8 +y 8 resist_physical 100 resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 arch event_say name GUILD_TEMPLATE @@ -1227,477 +1360,341 @@ slaying /python/guilds/guildoracle.py end end arch marble -x 7 -y 8 -unique 1 -end -arch blackmarble -x 7 +x 8 y 9 unique 1 end -arch flagstone -x 7 +arch blackmarble +x 8 y 10 unique 1 end arch flagstone -x 7 +x 8 y 11 unique 1 end arch flagstone -x 7 +x 8 y 12 unique 1 end arch flagstone -x 7 +x 8 y 13 unique 1 end +arch flagstone +x 8 +y 14 +unique 1 +end +arch flagstone +x 8 +y 15 +unique 1 +end arch sign name GuildRankings -x 7 -y 13 +x 8 +y 15 arch event_apply title Python slaying /python/guilds/guildboard.py end end arch flagstone -x 7 -y 14 +x 8 +y 16 end arch awall_2_1_2 -x 7 -y 14 -end -arch blocked -x 7 -y 15 +x 8 +y 16 end arch button_small -x 7 -y 16 -weight 4 -connected 37 -end -arch button_small -x 7 -y 16 +x 8 +y 17 weight 2 -connected 30 +connected 36 end arch button_small -x 7 -y 16 -connected 32 -end -arch spikes_closed -x 7 -y 16 -speed 0.500000 +x 8 +y 17 connected 31 end -arch blocked -x 7 -y 17 -end -arch cobblestones2 -x 7 -y 18 -end -arch igate_closed_2 -x 7 -y 18 -speed 0.500000 -connected 17 -end -arch blocked -x 7 -y 19 -end -arch cobblestones2 -x 7 -y 20 -end -arch igate_closed_2 -x 7 -y 20 -speed 0.500000 -connected 37 -end -arch blocked -x 7 -y 21 -end -arch igate_closed_2 -x 7 -y 22 -speed 0.500000 -connected 47 -end -arch blocked -x 7 -y 23 -end -arch igate_closed_2 -x 7 -y 24 -speed 0.500000 -connected 45 -end -arch flagstone -x 8 -end -arch awall_2_1_2 -x 8 -end -arch flagstone -x 8 -y 1 -unique 1 -end -arch flagstone -x 8 -y 2 -unique 1 -end -arch flagstone -x 8 -y 3 -unique 1 -end -arch flagstone -x 8 -y 4 -unique 1 -end -arch marble -x 8 -y 5 -unique 1 -end -arch blackmarble -x 8 -y 6 -unique 1 -end -arch marble -x 8 -y 7 -unique 1 -end -arch blackmarble -x 8 -y 8 -unique 1 -end -arch marble -x 8 -y 9 -unique 1 -end -arch flagstone -x 8 -y 10 -unique 1 -end -arch flagstone -x 8 -y 11 -unique 1 -end -arch flagstone -x 8 -y 12 -unique 1 -end -arch flagstone -x 8 -y 13 -unique 1 -end -arch flagstone -x 8 -y 14 -end -arch awall_2_1_2 -x 8 -y 14 -end -arch blocked -x 8 -y 15 -end -arch blocked -x 8 -y 16 -end -arch blocked -x 8 -y 17 -end -arch cobblestones2 -x 8 -y 18 -end -arch igate_closed_2 -x 8 -y 18 -speed 0.500000 -connected 15 -end -arch blocked -x 8 -y 19 -end -arch cobblestones2 -x 8 -y 20 -end -arch igate_closed_2 -x 8 -y 20 -speed 0.500000 -connected 35 -end -arch blocked -x 8 -y 21 -end -arch igate_closed_2 -x 8 -y 22 -speed 0.500000 -connected 45 -end -arch blocked -x 8 -y 23 -end -arch igate_closed_2 -x 8 -y 24 -speed 0.500000 -connected 47 -end -arch flagstone -x 9 -end -arch awall_2_1_2 -x 9 -end -arch flagstone -x 9 -y 1 -unique 1 -end -arch flagstone -x 9 -y 2 -unique 1 -end -arch flagstone -x 9 -y 3 -unique 1 -end -arch flagstone -x 9 -y 4 -unique 1 -end -arch blackmarble -x 9 -y 5 -unique 1 -end -arch marble -x 9 -y 6 -unique 1 -end -arch blackmarble -x 9 -y 7 -unique 1 -end -arch marble -x 9 -y 8 -unique 1 -end -arch blackmarble -x 9 -y 9 -unique 1 -end -arch flagstone -x 9 -y 10 -unique 1 -end -arch flagstone -x 9 -y 11 -unique 1 -end -arch flagstone -x 9 -y 12 -unique 1 -end -arch flagstone -x 9 -y 13 -unique 1 -end -arch flagstone -x 9 -y 14 -end -arch awall_2_1_2 -x 9 -y 14 -end -arch button_small -x 9 -y 15 -weight 2 -connected 46 -end -arch button_small -x 9 -y 15 -connected 41 -end arch spikes_open -x 9 -y 15 +x 8 +y 17 speed 0.500000 value 1 -connected 40 +connected 30 end arch boulder -x 9 -y 15 -end -arch button_small -x 9 -y 16 -connected 45 -end -arch spikes_closed -x 9 -y 16 -speed 0.500000 -connected 42 -end -arch blocked -x 9 +x 8 y 17 end -arch cobblestones2 -x 9 +arch button_small +x 8 y 18 -move_block swim boat +connected 35 end arch spikes_closed -x 9 +x 8 y 18 speed 0.500000 +connected 32 +end +arch blocked +x 8 +y 19 +end +arch cobblestones2 +x 8 +y 20 +end +arch spikes_closed +x 8 +y 20 +speed 0.500000 connected 16 end arch card name Kennel Token name_pl Kennel Tokens -slaying Kennel_Token +slaying GUILD_TEMPLATE_Kennel_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 9 -y 18 +x 8 +y 20 value 800 identified 1 end arch blocked -x 9 -y 19 +x 8 +y 21 end arch cobblestones2 -x 9 -y 20 -move_block swim boat +x 8 +y 22 end arch spikes_closed -x 9 -y 20 +x 8 +y 22 speed 0.500000 connected 36 end arch card name Alchemy Token name_pl Alchemy Tokens -slaying Alch_Token +slaying GUILD_TEMPLATE_Alch_Token msg The holder of this card is allowed free access into and out of the Alchemy Room. endmsg face diploma.111 -x 9 -y 20 +x 8 +y 22 value 800 identified 1 end arch blocked -x 9 -y 21 +x 8 +y 23 +end +arch blocked +x 8 +y 24 end arch spikes_closed -x 9 -y 22 +x 8 +y 25 speed 0.500000 connected 46 end arch card name Garden Token name_pl Garden Tokens -slaying Gard_Token +slaying GUILD_TEMPLATE_Gard_Token msg The holder of this card is allowed free access into and out of the Garden. endmsg face diploma.111 -x 9 -y 22 +x 8 +y 25 value 800 identified 1 end arch blocked +x 8 +y 26 +end +arch flagstone +x 9 +end +arch awall_2_1_2 +x 9 +end +arch flagstone +x 9 +y 1 +unique 1 +end +arch flagstone +x 9 +y 2 +unique 1 +end +arch flagstone +x 9 +y 3 +unique 1 +end +arch flagstone +x 9 +y 4 +unique 1 +end +arch flagstone +x 9 +y 5 +unique 1 +end +arch marble +x 9 +y 6 +unique 1 +end +arch blackmarble +x 9 +y 7 +unique 1 +end +arch marble +x 9 +y 8 +unique 1 +end +arch blackmarble +x 9 +y 9 +unique 1 +end +arch marble +x 9 +y 10 +unique 1 +end +arch flagstone +x 9 +y 11 +unique 1 +end +arch flagstone +x 9 +y 12 +unique 1 +end +arch flagstone +x 9 +y 13 +unique 1 +end +arch flagstone +x 9 +y 14 +unique 1 +end +arch flagstone +x 9 +y 15 +unique 1 +end +arch flagstone +x 9 +y 16 +end +arch awall_2_1_2 +x 9 +y 16 +end +arch blocked +x 9 +y 17 +end +arch button_small +x 9 +y 18 +weight 4 +connected 37 +end +arch button_small +x 9 +y 18 +weight 2 +connected 30 +end +arch button_small +x 9 +y 18 +connected 32 +end +arch spikes_closed +x 9 +y 18 +speed 0.500000 +connected 31 +end +arch blocked +x 9 +y 19 +end +arch cobblestones2 +x 9 +y 20 +end +arch igate_closed_2 +x 9 +y 20 +speed 0.500000 +connected 17 +end +arch blocked +x 9 +y 21 +end +arch cobblestones2 +x 9 +y 22 +end +arch igate_closed_2 +x 9 +y 22 +speed 0.500000 +connected 37 +end +arch blocked x 9 y 23 end -arch spikes_closed +arch igate_closed_2 x 9 y 24 speed 0.500000 -connected 46 +connected 47 end -arch r_sack +arch blocked x 9 -y 24 -arch note -msg -Selection sold out, please choose another. -endmsg -end -arch goldcoin -nrof 10 +y 25 end +arch igate_closed_2 +x 9 +y 26 +speed 0.500000 +connected 45 end arch flagstone x 10 @@ -1730,27 +1727,27 @@ x 10 y 5 unique 1 end -arch flagstone +arch blackmarble x 10 y 6 unique 1 end -arch flagstone +arch marble x 10 y 7 unique 1 end -arch flagstone +arch blackmarble x 10 y 8 unique 1 end -arch flagstone +arch marble x 10 y 9 unique 1 end -arch flagstone +arch blackmarble x 10 y 10 unique 1 @@ -1773,52 +1770,29 @@ end arch flagstone x 10 y 14 +unique 1 +end +arch flagstone +x 10 +y 15 +unique 1 +end +arch flagstone +x 10 +y 16 end arch awall_2_1_2 x 10 -y 14 -end -arch blocked -x 10 -y 15 -end -arch button_small -x 10 y 16 -weight 4 -connected 47 -end -arch button_small -x 10 -y 16 -weight 2 -connected 40 -end -arch button_small -x 10 -y 16 -connected 42 -end -arch spikes_closed -x 10 -y 16 -speed 0.500000 -connected 41 end arch blocked x 10 y 17 end -arch cobblestones2 +arch blocked x 10 y 18 end -arch igate_closed_2 -x 10 -y 18 -speed 0.500000 -connected 17 -end arch blocked x 10 y 19 @@ -1831,25 +1805,41 @@ arch igate_closed_2 x 10 y 20 speed 0.500000 -connected 37 +connected 15 end arch blocked x 10 y 21 end +arch cobblestones2 +x 10 +y 22 +end arch igate_closed_2 x 10 y 22 speed 0.500000 -connected 47 +connected 35 end arch blocked x 10 y 23 end -arch blocked +arch igate_closed_2 x 10 y 24 +speed 0.500000 +connected 45 +end +arch blocked +x 10 +y 25 +end +arch igate_closed_2 +x 10 +y 26 +speed 0.500000 +connected 47 end arch flagstone x 11 @@ -1872,10 +1862,6 @@ x 11 y 3 unique 1 end -arch brazier -x 11 -y 3 -end arch flagstone x 11 y 4 @@ -1916,10 +1902,6 @@ x 11 y 11 unique 1 end -arch brazier -x 11 -y 11 -end arch flagstone x 11 y 12 @@ -1930,80 +1912,486 @@ x 11 y 13 unique 1 end +arch flagstone +x 11 +y 14 +unique 1 +end +arch flagstone +x 11 +y 15 +unique 1 +end +arch flagstone +x 11 +y 16 +end +arch awall_2_1_2 +x 11 +y 16 +end +arch button_small +x 11 +y 17 +weight 2 +connected 46 +end +arch button_small +x 11 +y 17 +connected 41 +end +arch spikes_open +x 11 +y 17 +speed 0.500000 +value 1 +connected 40 +end +arch boulder +x 11 +y 17 +end +arch button_small +x 11 +y 18 +connected 45 +end +arch spikes_closed +x 11 +y 18 +speed 0.500000 +connected 42 +end +arch blocked +x 11 +y 19 +end +arch cobblestones2 +x 11 +y 20 +move_block swim boat +end +arch spikes_closed +x 11 +y 20 +speed 0.500000 +connected 16 +end +arch card +name Kennel Token +name_pl Kennel Tokens +slaying GUILD_TEMPLATE_Kennel_Token +msg +The holder of this card is allowed free +access into and out of the Kennel +endmsg +face diploma.111 +x 11 +y 20 +value 800 +identified 1 +end +arch blocked +x 11 +y 21 +end +arch cobblestones2 +x 11 +y 22 +move_block swim boat +end +arch spikes_closed +x 11 +y 22 +speed 0.500000 +connected 36 +end +arch card +name Alchemy Token +name_pl Alchemy Tokens +slaying GUILD_TEMPLATE_Alch_Token +msg +The holder of this card is allowed free +access into and out of the Alchemy Room. +endmsg +face diploma.111 +x 11 +y 22 +value 800 +identified 1 +end +arch blocked +x 11 +y 23 +end +arch spikes_closed +x 11 +y 24 +speed 0.500000 +connected 46 +end +arch card +name Garden Token +name_pl Garden Tokens +slaying GUILD_TEMPLATE_Gard_Token +msg +The holder of this card is allowed free +access into and out of the Garden. +endmsg +face diploma.111 +x 11 +y 24 +value 800 +identified 1 +end +arch blocked +x 11 +y 25 +end +arch spikes_closed +x 11 +y 26 +speed 0.500000 +connected 46 +end +arch r_sack +x 11 +y 26 +arch note +msg +Selection sold out, please choose another. +endmsg +end +arch goldcoin +nrof 10 +end +end +arch flagstone +x 12 +end +arch awall_2_1_2 +x 12 +end +arch flagstone +x 12 +y 1 +unique 1 +end +arch flagstone +x 12 +y 2 +unique 1 +end +arch flagstone +x 12 +y 3 +unique 1 +end +arch flagstone +x 12 +y 4 +unique 1 +end +arch brazier +x 12 +y 4 +end +arch flagstone +x 12 +y 5 +unique 1 +end +arch flagstone +x 12 +y 6 +unique 1 +end +arch flagstone +x 12 +y 7 +unique 1 +end +arch flagstone +x 12 +y 8 +unique 1 +end +arch flagstone +x 12 +y 9 +unique 1 +end +arch flagstone +x 12 +y 10 +unique 1 +end +arch flagstone +x 12 +y 11 +unique 1 +end +arch flagstone +x 12 +y 12 +unique 1 +end +arch brazier +x 12 +y 12 +end +arch flagstone +x 12 +y 13 +unique 1 +end +arch flagstone +x 12 +y 14 +unique 1 +end +arch flagstone +x 12 +y 15 +unique 1 +end +arch flagstone +x 12 +y 16 +end +arch awall_2_1_2 +x 12 +y 16 +end +arch blocked +x 12 +y 17 +end +arch button_small +x 12 +y 18 +weight 4 +connected 47 +end +arch button_small +x 12 +y 18 +weight 2 +connected 40 +end +arch button_small +x 12 +y 18 +connected 42 +end +arch spikes_closed +x 12 +y 18 +speed 0.500000 +connected 41 +end +arch blocked +x 12 +y 19 +end +arch cobblestones2 +x 12 +y 20 +end +arch igate_closed_2 +x 12 +y 20 +speed 0.500000 +connected 17 +end +arch blocked +x 12 +y 21 +end +arch cobblestones2 +x 12 +y 22 +end +arch igate_closed_2 +x 12 +y 22 +speed 0.500000 +connected 37 +end +arch blocked +x 12 +y 23 +end +arch igate_closed_2 +x 12 +y 24 +speed 0.500000 +connected 47 +end +arch blocked +x 12 +y 25 +end +arch blocked +x 12 +y 26 +end +arch flagstone +x 13 +end +arch awall_2_1_2 +x 13 +end +arch flagstone +x 13 +y 1 +unique 1 +end +arch flagstone +x 13 +y 2 +unique 1 +end +arch flagstone +x 13 +y 3 +unique 1 +end +arch flagstone +x 13 +y 4 +unique 1 +end +arch flagstone +x 13 +y 5 +unique 1 +end +arch flagstone +x 13 +y 6 +unique 1 +end +arch flagstone +x 13 +y 7 +unique 1 +end +arch flagstone +x 13 +y 8 +unique 1 +end +arch flagstone +x 13 +y 9 +unique 1 +end +arch flagstone +x 13 +y 10 +unique 1 +end +arch flagstone +x 13 +y 11 +unique 1 +end +arch flagstone +x 13 +y 12 +unique 1 +end +arch flagstone +x 13 +y 13 +unique 1 +end +arch flagstone +x 13 +y 14 +unique 1 +end +arch flagstone +x 13 +y 15 +unique 1 +end arch sign_e msg To trophy room endmsg -x 11 -y 13 -end -arch flagstone -x 11 -y 14 -end -arch awall_2_1_2 -x 11 -y 14 -end -arch blocked -x 11 +x 13 y 15 end -arch blocked -x 11 +arch flagstone +x 13 +y 16 +end +arch awall_2_1_2 +x 13 y 16 end arch blocked -x 11 +x 13 y 17 end -arch cobblestones2 -x 11 -y 18 -end -arch teleporter -hp 16 -sp 1 -x 11 +arch blocked +x 13 y 18 end arch blocked -x 11 +x 13 y 19 end arch cobblestones2 -x 11 +x 13 y 20 end arch teleporter -hp 16 -sp 5 -x 11 +hp 18 +sp 1 +x 13 y 20 end arch blocked -x 11 +x 13 y 21 end -arch igate_closed_2 -x 11 +arch cobblestones2 +x 13 y 22 +end +arch teleporter +hp 18 +sp 7 +x 13 +y 22 +end +arch blocked +x 13 +y 23 +end +arch igate_closed_2 +x 13 +y 24 speed 0.500000 connected 45 end arch blocked -x 11 -y 23 +x 13 +y 25 end arch spikes_closed -x 11 -y 24 +x 13 +y 26 speed 0.500000 connected 56 end arch r_sack -x 11 -y 24 +x 13 +y 26 arch note msg Selection sold out, please choose another. @@ -2014,13 +2402,13 @@ nrof 10 end end arch flagstone -x 12 +x 14 end arch awall_2_1_2 -x 12 +x 14 end arch flagstone -x 12 +x 14 y 1 unique 1 end @@ -2029,196 +2417,199 @@ name Attention msg Our vending machines are old, give them time to process your money. endmsg -x 12 +x 14 y 1 end arch flagstone -x 12 +x 14 y 2 unique 1 end arch flagstone -x 12 +x 14 y 3 unique 1 end arch flagstone -x 12 +x 14 y 4 unique 1 end arch flagstone -x 12 +x 14 y 5 unique 1 end arch flagstone -x 12 +x 14 y 6 unique 1 end arch flagstone -x 12 +x 14 y 7 unique 1 end arch flagstone -x 12 +x 14 y 8 unique 1 end arch flagstone -x 12 +x 14 y 9 unique 1 end arch flagstone -x 12 +x 14 y 10 unique 1 end arch flagstone -x 12 +x 14 y 11 unique 1 end arch flagstone -x 12 +x 14 y 12 unique 1 end arch flagstone -x 12 +x 14 y 13 unique 1 end +arch flagstone +x 14 +y 14 +unique 1 +end +arch flagstone +x 14 +y 15 +unique 1 +end arch teleporter slaying hallofjoining hp 13 sp 2 -x 12 -y 13 +x 14 +y 15 end arch flagstone -x 12 -y 14 +x 14 +y 16 end arch awall_2_1_2 -x 12 -y 14 +x 14 +y 16 end arch button_small -x 12 -y 15 +x 14 +y 17 weight 2 connected 56 end arch button_small -x 12 -y 15 +x 14 +y 17 connected 51 end arch spikes_open -x 12 -y 15 +x 14 +y 17 speed 0.500000 value 1 connected 50 end arch boulder -x 12 -y 15 +x 14 +y 17 end arch button_small -x 12 -y 16 +x 14 +y 18 connected 55 end arch spikes_closed -x 12 -y 16 +x 14 +y 18 speed 0.500000 connected 52 end arch blocked -x 12 -y 17 -end -arch blocked -x 12 -y 18 -end -arch blocked -x 12 +x 14 y 19 end arch blocked -x 12 +x 14 y 20 end arch blocked -x 12 +x 14 y 21 end -arch cobblestones2 -x 12 +arch blocked +x 14 y 22 end +arch blocked +x 14 +y 23 +end +arch cobblestones2 +x 14 +y 24 +end arch spikes_closed -x 12 -y 22 +x 14 +y 24 speed 0.500000 connected 46 end arch card name Garden Token name_pl Garden Tokens -slaying Gard_Token +slaying GUILD_TEMPLATE_Gard_Token msg The holder of this card is allowed free access into and out of the Garden. endmsg face diploma.111 -x 12 -y 22 +x 14 +y 24 value 800 identified 1 end arch blocked -x 12 -y 23 +x 14 +y 25 end arch igate_closed_2 -x 12 -y 24 +x 14 +y 26 speed 0.500000 connected 57 end arch flagstone -x 13 +x 15 end arch awall_2_1_2 -x 13 +x 15 end arch flagstone -x 13 +x 15 y 1 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 1 -end arch pedestal -x 13 +x 15 y 1 connected 1 end arch flagstone -x 13 +x 15 y 1 unique 1 end @@ -2228,69 +2619,96 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 +food 200 +x 15 y 1 connected 10 end arch flagstone -x 13 +x 15 y 2 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 3 +arch flagstone +x 15 +y 2 +unique 1 end arch flagstone -x 13 +x 15 +y 3 +unique 1 +end +arch flagstone +x 15 y 3 unique 1 end arch pedestal -x 13 +x 15 y 3 connected 2 end arch flagstone -x 13 +x 15 y 3 unique 1 end arch altar_trigger +name Tannery Pass 20 Gold Coins +slaying money +msg +You hear the sound of stone grinding on stone +endmsg +food 200 +x 15 +y 3 +connected 80 +end +arch flagstone +x 15 +y 4 +unique 1 +end +arch flagstone +x 15 +y 5 +unique 1 +end +arch pedestal +x 15 +y 5 +connected 2 +end +arch flagstone +x 15 +y 5 +unique 1 +end +arch altar_trigger name Toolshed Pass 20 Gold Coins slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 3 +food 200 +x 15 +y 5 connected 20 end arch flagstone -x 13 -y 4 +x 15 +y 6 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 5 -end arch pedestal -x 13 -y 5 +x 15 +y 7 connected 3 end arch flagstone -x 13 -y 5 +x 15 +y 7 unique 1 end arch altar_trigger @@ -2299,31 +2717,24 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 5 +food 200 +x 15 +y 7 connected 30 end arch flagstone -x 13 -y 6 +x 15 +y 8 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 7 -end arch pedestal -x 13 -y 7 +x 15 +y 9 connected 4 end arch flagstone -x 13 -y 7 +x 15 +y 9 unique 1 end arch altar_trigger @@ -2332,36 +2743,24 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 7 +food 200 +x 15 +y 9 connected 40 end arch flagstone -x 13 -y 8 -unique 1 -end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 9 -end -arch flagstone -x 13 -y 9 +x 15 +y 10 unique 1 end arch pedestal -x 13 -y 9 +x 15 +y 11 connected 5 end arch flagstone -x 13 -y 9 +x 15 +y 11 unique 1 end arch altar_trigger @@ -2370,31 +2769,24 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 9 +food 200 +x 15 +y 11 connected 50 end arch flagstone -x 13 -y 10 +x 15 +y 12 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 11 -end arch pedestal -x 13 -y 11 +x 15 +y 13 connected 6 end arch flagstone -x 13 -y 11 +x 15 +y 13 unique 1 end arch altar_trigger @@ -2403,31 +2795,24 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 11 +food 200 +x 15 +y 13 connected 60 end arch flagstone -x 13 -y 12 +x 15 +y 14 unique 1 end -arch magic_mouth -msg -Drop 10 at a time.. -endmsg -x 13 -y 13 -end arch pedestal -x 13 -y 13 +x 15 +y 15 connected 7 end arch flagstone -x 13 -y 13 +x 15 +y 15 unique 1 end arch altar_trigger @@ -2436,817 +2821,916 @@ slaying money msg You hear the sound of stone grinding on stone endmsg -food 100 -x 13 -y 13 +food 200 +x 15 +y 15 connected 70 end arch flagstone -x 13 -y 14 +x 15 +y 16 end arch awall_2_1_2 -x 13 -y 14 +x 15 +y 16 end arch blocked -x 13 -y 15 +x 15 +y 17 end arch button_small -x 13 -y 16 +x 15 +y 18 weight 4 connected 57 end arch button_small -x 13 -y 16 +x 15 +y 18 weight 2 connected 50 end arch button_small -x 13 -y 16 +x 15 +y 18 connected 52 end arch spikes_closed -x 13 -y 16 +x 15 +y 18 speed 0.500000 connected 51 end arch blocked -x 13 -y 17 +x 15 +y 19 end arch blocked -x 13 -y 18 +x 15 +y 20 end arch spikes_closed -x 13 -y 19 +x 15 +y 21 speed 0.500000 connected 26 end arch card name Toolshed Token name_pl Toolshed Tokens -slaying Tool_Token +slaying GUILD_TEMPLATE_Tool_Token msg The holder of this card is allowed free access into and out of the Tool Shed endmsg face diploma.111 -x 13 -y 19 +x 15 +y 21 value 800 identified 1 end arch blocked -x 13 -y 20 +x 15 +y 22 end arch blocked -x 13 -y 21 +x 15 +y 23 end arch cobblestones2 -x 13 -y 22 +x 15 +y 24 end arch igate_closed_2 -x 13 -y 22 +x 15 +y 24 speed 0.500000 connected 47 end arch blocked -x 13 -y 23 +x 15 +y 25 end arch igate_closed_2 -x 13 -y 24 +x 15 +y 26 speed 0.500000 connected 55 end arch flagstone -x 14 +x 16 end arch awall_2_1_2 -x 14 +x 16 end arch flagstone -x 14 +x 16 y 1 end arch grate_closed_2 -x 14 +x 16 y 1 connected 1 end arch flagstone -x 14 +x 16 +y 2 +unique 1 +end +arch flagstone +x 16 y 2 unique 1 end arch awall_2_1_2 -x 14 +x 16 y 2 end arch flagstone -x 14 +x 16 +y 3 +unique 1 +end +arch flagstone +x 16 y 3 end arch grate_closed_2 -x 14 +x 16 y 3 connected 2 end arch flagstone -x 14 +x 16 y 4 unique 1 end arch awall_2_1_2 -x 14 +x 16 y 4 end arch flagstone -x 14 +x 16 y 5 end arch grate_closed_2 -x 14 +x 16 y 5 +connected 2 +end +arch flagstone +x 16 +y 6 +unique 1 +end +arch awall_2_1_2 +x 16 +y 6 +end +arch flagstone +x 16 +y 7 +end +arch grate_closed_2 +x 16 +y 7 connected 3 end arch flagstone -x 14 -y 6 +x 16 +y 8 end arch awall_1_4 -x 14 -y 6 +x 16 +y 8 end arch flagstone -x 14 -y 7 +x 16 +y 9 end arch grate_closed_2 -x 14 -y 7 +x 16 +y 9 connected 4 end arch flagstone -x 14 -y 8 +x 16 +y 10 end arch awall_1_4 -x 14 -y 8 +x 16 +y 10 end arch flagstone -x 14 -y 9 +x 16 +y 11 end arch grate_closed_2 -x 14 -y 9 +x 16 +y 11 connected 5 end arch flagstone -x 14 -y 10 +x 16 +y 12 end arch awall_1_4 -x 14 -y 10 +x 16 +y 12 end arch flagstone -x 14 -y 11 +x 16 +y 13 end arch grate_closed_2 -x 14 -y 11 +x 16 +y 13 connected 6 end arch flagstone -x 14 -y 12 +x 16 +y 14 unique 1 end arch awall_2_1_2 -x 14 -y 12 +x 16 +y 14 end arch flagstone -x 14 -y 13 +x 16 +y 15 end arch grate_closed_2 -x 14 -y 13 +x 16 +y 15 connected 7 end arch flagstone -x 14 -y 14 +x 16 +y 16 end arch awall_2_1_2 -x 14 -y 14 -end -arch blocked -x 14 -y 15 -end -arch blocked -x 14 +x 16 y 16 end arch blocked -x 14 +x 16 y 17 end -arch igate_closed_2 -x 14 +arch blocked +x 16 y 18 +end +arch blocked +x 16 +y 19 +end +arch igate_closed_2 +x 16 +y 20 speed 0.500000 connected 27 end arch blocked -x 14 -y 19 +x 16 +y 21 end arch igate_closed_2 -x 14 -y 20 +x 16 +y 22 speed 0.500000 connected 25 end arch blocked -x 14 -y 21 +x 16 +y 23 end arch cobblestones2 -x 14 -y 22 +x 16 +y 24 end arch igate_closed_2 -x 14 -y 22 +x 16 +y 24 speed 0.500000 connected 45 end arch blocked -x 14 -y 23 +x 16 +y 25 end arch spikes_closed -x 14 -y 24 +x 16 +y 26 speed 0.500000 connected 56 end arch card name Thaumaturgy Token name_pl Thaumaturgy Tokens -slaying Thau_Token +slaying GUILD_TEMPLATE_Thau_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 14 -y 24 +x 16 +y 26 value 800 identified 1 end arch flagstone -x 15 +x 17 end arch awall_2_1_2 -x 15 +x 17 end arch pedestal -x 15 +x 17 y 1 connected 1 end arch flagstone -x 15 +x 17 y 1 unique 1 end arch flagstone -x 15 +x 17 y 2 unique 1 end arch flagstone -x 15 +x 17 +y 2 +unique 1 +end +arch flagstone +x 17 y 2 unique 1 end arch awall_2_1_2 -x 15 +x 17 y 2 end +arch flagstone +x 17 +y 3 +unique 1 +end arch pedestal -x 15 +x 17 y 3 connected 2 end arch flagstone -x 15 +x 17 y 3 unique 1 end arch flagstone -x 15 +x 17 +y 4 +unique 1 +end +arch flagstone +x 17 y 4 unique 1 end arch awall_2_1_2 -x 15 +x 17 y 4 end arch pedestal -x 15 +x 17 y 5 +connected 2 +end +arch flagstone +x 17 +y 5 +unique 1 +end +arch flagstone +x 17 +y 6 +unique 1 +end +arch awall_2_1_2 +x 17 +y 6 +end +arch pedestal +x 17 +y 7 connected 3 end arch flagstone -x 15 -y 5 +x 17 +y 7 unique 1 end arch flagstone -x 15 -y 6 +x 17 +y 8 unique 1 end arch awall_2_1_2 -x 15 -y 6 +x 17 +y 8 end arch pedestal -x 15 -y 7 +x 17 +y 9 connected 4 end arch flagstone -x 15 -y 7 +x 17 +y 9 unique 1 end arch flagstone -x 15 -y 8 +x 17 +y 10 unique 1 end arch awall_2_1_2 -x 15 -y 8 +x 17 +y 10 end arch pedestal -x 15 -y 9 +x 17 +y 11 connected 5 end arch flagstone -x 15 -y 9 +x 17 +y 11 unique 1 end arch flagstone -x 15 -y 10 +x 17 +y 12 unique 1 end arch awall_2_1_2 -x 15 -y 10 +x 17 +y 12 end arch pedestal -x 15 -y 11 +x 17 +y 13 connected 6 end arch flagstone -x 15 -y 11 +x 17 +y 13 unique 1 end arch flagstone -x 15 -y 12 +x 17 +y 14 unique 1 end arch flagstone -x 15 -y 12 +x 17 +y 14 unique 1 end arch awall_2_1_2 -x 15 -y 12 +x 17 +y 14 end arch flagstone -x 15 -y 13 +x 17 +y 15 unique 1 end arch pedestal -x 15 -y 13 +x 17 +y 15 connected 7 end arch flagstone -x 15 -y 13 +x 17 +y 15 unique 1 end arch flagstone -x 15 -y 14 +x 17 +y 16 end arch awall_2_1_2 -x 15 -y 14 +x 17 +y 16 end arch button_small -x 15 -y 15 +x 17 +y 17 weight 2 connected 66 end arch button_small -x 15 -y 15 +x 17 +y 17 connected 61 end arch spikes_open -x 15 -y 15 +x 17 +y 17 speed 0.500000 value 1 connected 60 end arch boulder -x 15 -y 15 +x 17 +y 17 end arch button_small -x 15 -y 16 +x 17 +y 18 connected 65 end arch spikes_closed -x 15 -y 16 +x 17 +y 18 speed 0.500000 connected 62 end arch blocked -x 15 -y 17 +x 17 +y 19 end arch igate_closed_2 -x 15 -y 18 +x 17 +y 20 speed 0.500000 connected 25 end arch blocked -x 15 -y 19 +x 17 +y 21 end arch igate_closed_2 -x 15 -y 20 +x 17 +y 22 speed 0.500000 connected 27 end arch blocked -x 15 -y 21 +x 17 +y 23 end arch cobblestones2 -x 15 -y 22 +x 17 +y 24 move_block swim boat end arch spikes_closed -x 15 -y 22 +x 17 +y 24 speed 0.500000 connected 46 end arch card name Garden Token name_pl Garden Tokens -slaying Gard_Token +slaying GUILD_TEMPLATE_Gard_Token msg The holder of this card is allowed free access into and out of the Garden. endmsg face diploma.111 -x 15 -y 22 +x 17 +y 24 value 800 identified 1 end arch blocked -x 15 -y 23 +x 17 +y 25 end arch igate_closed_2 -x 15 -y 24 +x 17 +y 26 speed 0.500000 connected 57 end arch flagstone -x 16 +x 18 end arch awall_2_1_2 -x 16 +x 18 end arch flagstone -x 16 +x 18 y 1 unique 1 end arch card name Kennel Token name_pl Kennel Tokens -slaying Kennel_Token +slaying GUILD_TEMPLATE_Kennel_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 16 +x 18 y 1 value 800 identified 1 end arch flagstone -x 16 +x 18 y 2 unique 1 end arch flagstone -x 16 +x 18 +y 2 +unique 1 +end +arch flagstone +x 18 y 2 unique 1 end arch awall_2_1_2 -x 16 +x 18 y 2 end arch flagstone -x 16 +x 18 y 3 unique 1 end arch card -name Toolshed Token -name_pl Toolshed Tokens -slaying Tool_Token +name Tannery Token +name_pl Tannery Tokens +slaying GUILD_TEMPLATE_Tan_Token msg The holder of this card is allowed free access into and out of the Tool Shed endmsg face diploma.111 -x 16 +x 18 y 3 value 800 identified 1 end arch flagstone -x 16 +x 18 +y 4 +unique 1 +end +arch flagstone +x 18 y 4 unique 1 end arch awall_2_1_2 -x 16 +x 18 y 4 end arch flagstone -x 16 +x 18 y 5 unique 1 end arch card +name Toolshed Token +name_pl Toolshed Tokens +slaying GUILD_TEMPLATE_Tool_Token +msg +The holder of this card is allowed free +access into and out of the Tool Shed +endmsg +face diploma.111 +x 18 +y 5 +value 800 +identified 1 +end +arch flagstone +x 18 +y 6 +unique 1 +end +arch awall_2_1_2 +x 18 +y 6 +end +arch flagstone +x 18 +y 7 +unique 1 +end +arch card name Alchemy Token name_pl Alchemy Tokens -slaying Alch_Token +slaying GUILD_TEMPLATE_Alch_Token msg The holder of this card is allowed free access into and out of the Alchemy Room. endmsg face diploma.111 -x 16 -y 5 +x 18 +y 7 value 800 identified 1 end arch flagstone -x 16 -y 6 +x 18 +y 8 unique 1 end arch awall_2_1_2 -x 16 -y 6 +x 18 +y 8 end arch flagstone -x 16 -y 7 +x 18 +y 9 unique 1 end arch card name Garden Token name_pl Garden Tokens -slaying Gard_Token +slaying PurplyButterfly_Gard_Token msg The holder of this card is allowed free access into and out of the Garden. endmsg face diploma.111 -x 16 -y 7 +x 18 +y 9 value 800 identified 1 end arch flagstone -x 16 -y 8 +x 18 +y 10 unique 1 end arch awall_2_1_2 -x 16 -y 8 +x 18 +y 10 end arch flagstone -x 16 -y 9 +x 18 +y 11 unique 1 end arch card name Thaumaturgy Token name_pl Thaumaturgy Tokens -slaying Thau_Token +slaying GUILD_TEMPLATE_Thau_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 16 -y 9 +x 18 +y 11 value 800 identified 1 end arch flagstone -x 16 -y 10 +x 18 +y 12 unique 1 end arch awall_2_1_2 -x 16 -y 10 +x 18 +y 12 end arch flagstone -x 16 -y 11 +x 18 +y 13 unique 1 end arch card name Glowing Crystal Token name_pl Glowing Crystal Tokens -slaying GC_Token +slaying GUILD_TEMPLATE_GC_Token msg The holder of this card is allowed free access into and out of the Crystal Room endmsg face diploma.111 -x 16 -y 11 +x 18 +y 13 value 800 identified 1 end arch flagstone -x 16 -y 12 +x 18 +y 14 unique 1 end arch flagstone -x 16 -y 12 +x 18 +y 14 unique 1 end arch awall_2_1_2 -x 16 -y 12 -move_block walk +x 18 +y 14 end arch flagstone -x 16 -y 13 +x 18 +y 15 unique 1 end arch card name Jeweler Token name_pl Jeweler Tokens -slaying Jewe_Token +slaying GUILD_TEMPLATE_Jewe_Token msg The holder of this card is allowed free access into and out of the Jeweler's Workshop. endmsg face diploma.111 -x 16 -y 13 +x 18 +y 15 value 800 identified 1 end arch flagstone -x 16 -y 14 +x 18 +y 16 end arch awall_2_1_2 -x 16 -y 14 +x 18 +y 16 end arch blocked -x 16 -y 15 +x 18 +y 17 end arch button_small -x 16 -y 16 +x 18 +y 18 weight 4 connected 67 end arch button_small -x 16 -y 16 +x 18 +y 18 weight 2 connected 60 end arch button_small -x 16 -y 16 +x 18 +y 18 connected 62 end arch spikes_closed -x 16 -y 16 +x 18 +y 18 speed 0.500000 connected 61 end arch blocked -x 16 -y 17 +x 18 +y 19 end arch spikes_closed -x 16 -y 18 +x 18 +y 20 speed 0.500000 connected 26 end arch card name Toolshed Token name_pl Toolshed Tokens -slaying Tool_Token +slaying GUILD_TEMPLATE_Tool_Token msg The holder of this card is allowed free access into and out of the Tool Shed endmsg face diploma.111 -x 16 -y 18 +x 18 +y 20 value 800 identified 1 end arch blocked -x 16 -y 19 +x 18 +y 21 end arch spikes_closed -x 16 -y 20 +x 18 +y 22 speed 0.500000 connected 26 end arch r_sack -x 16 -y 20 +x 18 +y 22 arch note msg Selection sold out, please choose another. @@ -3257,574 +3741,1455 @@ nrof 10 end end arch blocked -x 16 -y 21 +x 18 +y 23 end arch cobblestones2 -x 16 -y 22 +x 18 +y 24 end arch igate_closed_2 -x 16 -y 22 +x 18 +y 24 speed 0.500000 connected 47 end arch blocked -x 16 -y 23 +x 18 +y 25 end arch igate_closed_2 -x 16 -y 24 +x 18 +y 26 speed 0.500000 connected 55 end arch flagstone -x 17 +x 19 end arch awall_2_2_3 -x 17 +x 19 end arch flagstone -x 17 +x 19 y 1 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 1 end arch flagstone -x 17 +x 19 +y 2 +unique 1 +end +arch flagstone +x 19 y 2 unique 1 end arch awall_3_4 -x 17 +x 19 y 2 end arch flagstone -x 17 +x 19 +y 3 +unique 1 +end +arch flagstone +x 19 y 3 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 3 end arch flagstone -x 17 +x 19 y 4 unique 1 end arch awall_3_4 -x 17 +x 19 y 4 end arch flagstone -x 17 +x 19 y 5 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 5 end arch flagstone -x 17 +x 19 y 6 unique 1 end arch awall_3_4 -x 17 +x 19 y 6 end arch flagstone -x 17 +x 19 y 7 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 7 end arch flagstone -x 17 +x 19 y 8 unique 1 end arch awall_3_4 -x 17 +x 19 y 8 end arch flagstone -x 17 +x 19 y 9 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 9 end arch flagstone -x 17 +x 19 y 10 unique 1 end arch awall_3_4 -x 17 +x 19 y 10 end arch flagstone -x 17 +x 19 y 11 unique 1 end arch awall_2_1_1 -x 17 +x 19 y 11 end arch flagstone -x 17 +x 19 y 12 +unique 1 end arch awall_3_4 -x 17 +x 19 y 12 +end +arch flagstone +x 19 +y 13 +unique 1 +end +arch awall_2_1_1 +x 19 +y 13 +end +arch flagstone +x 19 +y 14 +end +arch awall_3_4 +x 19 +y 14 move_block walk no_pass 0 end arch flagstone -x 17 -y 13 +x 19 +y 15 unique 1 end arch awall_2_1_1 -x 17 -y 13 -end -arch flagstone -x 17 -y 14 -end -arch awall_2_2_4 -x 17 -y 14 -end -arch blocked -x 17 +x 19 y 15 end -arch blocked -x 17 +arch flagstone +x 19 +y 16 +end +arch awall_2_2_4 +x 19 y 16 end arch blocked -x 17 +x 19 y 17 end -arch igate_closed_2 -x 17 +arch blocked +x 19 y 18 +end +arch blocked +x 19 +y 19 +end +arch igate_closed_2 +x 19 +y 20 speed 0.500000 connected 27 end arch blocked -x 17 -y 19 -end -arch blocked -x 17 -y 20 -end -arch blocked -x 17 +x 19 y 21 end -arch cobblestones2 -x 17 -y 22 -end -arch teleporter -hp 16 -sp 7 -x 17 +arch blocked +x 19 y 22 end arch blocked -x 17 +x 19 y 23 end -arch spikes_closed -x 17 +arch cobblestones2 +x 19 y 24 +end +arch teleporter +hp 18 +sp 8 +x 19 +y 24 +end +arch blocked +x 19 +y 25 +end +arch spikes_closed +x 19 +y 26 speed 0.500000 connected 56 end arch card name Thaumaturgy Token name_pl Thaumaturgy Tokens -slaying Thau_Token +slaying GUILD_TEMPLATE_Thau_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 17 -y 24 +x 19 +y 26 value 800 identified 1 end arch blocked -x 18 -y 3 -end -arch blocked -x 18 -y 5 -end -arch blocked -x 18 -y 7 -end -arch blocked -x 18 -y 11 -end -arch blocked -x 18 -y 12 -end -arch blocked -x 18 +x 20 y 13 end arch blocked -x 18 +x 20 y 14 end -arch button_small -x 18 +arch blocked +x 20 y 15 +end +arch blocked +x 20 +y 16 +end +arch button_small +x 20 +y 17 weight 2 connected 76 end arch button_small -x 18 -y 15 +x 20 +y 17 connected 71 end arch spikes_open -x 18 -y 15 +x 20 +y 17 speed 0.500000 value 1 connected 70 end arch boulder -x 18 -y 15 +x 20 +y 17 end arch button_small -x 18 -y 16 +x 20 +y 18 connected 75 end arch spikes_closed -x 18 -y 16 +x 20 +y 18 speed 0.500000 connected 72 end arch blocked -x 18 -y 17 +x 20 +y 19 end arch igate_closed_2 -x 18 -y 18 +x 20 +y 20 speed 0.500000 connected 25 end arch blocked -x 18 -y 19 -end -arch blocked -x 18 +x 20 y 21 end arch blocked -x 18 -y 22 -end -arch blocked -x 18 +x 20 y 23 end -arch igate_closed_2 -x 18 +arch blocked +x 20 y 24 +end +arch blocked +x 20 +y 25 +end +arch igate_closed_2 +x 20 +y 26 speed 0.500000 connected 57 end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +no_pick 0 +end +arch check_floor +race Curse +face corpse.111 +x 21 +invisible 0 +last_heal 1 +end arch blocked -x 19 +x 21 +y 1 +end +arch blocked +x 21 +y 2 +end +arch blocked +x 21 y 3 end arch blocked -x 19 +x 21 y 4 end arch blocked -x 19 +x 21 y 5 end arch blocked -x 19 +x 21 y 6 end arch blocked -x 19 +x 21 y 7 end arch blocked -x 19 +x 21 +y 8 +end +arch blocked +x 21 +y 9 +end +arch blocked +x 21 +y 10 +end +arch blocked +x 21 +y 11 +end +arch blocked +x 21 +y 12 +end +arch blocked +x 21 +y 13 +end +arch blocked +x 21 y 14 end arch blocked -x 19 +x 21 y 15 end -arch button_small -x 19 +arch blocked +x 21 y 16 +end +arch blocked +x 21 +y 16 +end +arch blocked +x 21 +y 17 +end +arch blocked +x 21 +y 17 +end +arch button_small +x 21 +y 18 weight 4 connected 77 end arch button_small -x 19 -y 16 +x 21 +y 18 weight 2 connected 70 end arch button_small -x 19 -y 16 +x 21 +y 18 connected 72 end arch spikes_closed -x 19 -y 16 +x 21 +y 18 speed 0.500000 connected 71 end arch blocked -x 19 -y 17 +x 21 +y 19 end arch cobblestones2 -x 19 -y 18 +x 21 +y 20 end arch spikes_closed -x 19 -y 18 +x 21 +y 20 speed 0.500000 connected 26 end arch card name Toolshed Token name_pl Toolshed Tokens -slaying Tool_Token +slaying GUILD_TEMPLATE_Tool_Token msg The holder of this card is allowed free access into and out of the Tool Shed endmsg face diploma.111 -x 19 -y 18 +x 21 +y 20 value 800 identified 1 end arch blocked -x 19 -y 19 +x 21 +y 21 +end +arch amulet +x 21 +y 22 +path_denied 1048575 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 21 +y 22 +path_denied 1048575 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 21 +y 22 +path_denied 1048575 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +hp -9990 +sp -9990 +grace -9990 +food -9 +x 21 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +hp -9990 +sp -9990 +grace -9990 +food -9 +x 21 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +hp -9990 +sp -9990 +grace -9990 +food -9 +x 21 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 21 +y 24 +invisible 1 +applied 1 +body_neck 0 +body_foot -2 +body_waist -1 +body_leg -2 +end +arch amulet +x 21 +y 24 +invisible 1 +applied 1 +body_neck 0 +body_foot -2 +body_waist -1 +body_leg -2 +end +arch amulet +x 21 +y 24 +invisible 1 +applied 1 +body_neck 0 +body_foot -2 +body_waist -1 +body_leg -2 end arch blocked -x 19 -y 23 +x 21 +y 25 end arch igate_closed_2 -x 19 -y 24 +x 21 +y 26 speed 0.500000 connected 55 end arch blocked -x 20 -y 15 +x 22 end arch blocked -x 20 +x 22 +y 1 +end +arch spikes_closed +x 22 +y 2 +speed 0.500000 +connected 86 +end +arch r_sack +x 22 +y 2 +arch note +msg +Selection sold out, please choose another. +endmsg +end +arch goldcoin +nrof 20 +end +end +arch igate_closed_2 +x 22 +y 3 +speed 0.500000 +connected 87 +end +arch igate_closed_2 +x 22 +y 4 +speed 0.500000 +connected 85 +end +arch spikes_closed +x 22 +y 5 +speed 0.500000 +connected 86 +end +arch card +name Tannery Token +name_pl Tannery Tokens +slaying GUILD_TEMPLATE_Tan_Token +msg +The holder of this card is allowed free +access into and out of the Tool Shed +endmsg +face diploma.111 +x 22 +y 5 +value 800 +identified 1 +end +arch igate_closed_2 +x 22 +y 6 +speed 0.500000 +connected 87 +end +arch igate_closed_2 +x 22 +y 7 +speed 0.500000 +connected 85 +end +arch spikes_closed +x 22 +y 8 +speed 0.500000 +connected 86 +end +arch card +name Tannery Token +name_pl Tannery Tokens +slaying GUILD_TEMPLATE_Tan_Token +msg +The holder of this card is allowed free +access into and out of the Tool Shed +endmsg +face diploma.111 +x 22 +y 8 +value 800 +identified 1 +end +arch igate_closed_2 +x 22 +y 9 +speed 0.500000 +connected 87 +end +arch igate_closed_2 +x 22 +y 10 +speed 0.500000 +connected 85 +end +arch cobblestones2 +x 22 +y 11 +end +arch spikes_closed +x 22 +y 11 +speed 0.500000 +connected 86 +end +arch card +name Tannery Token +name_pl Tannery Tokens +slaying GUILD_TEMPLATE_Tan_Token +msg +The holder of this card is allowed free +access into and out of the Tool Shed +endmsg +face diploma.111 +x 22 +y 11 +value 800 +identified 1 +end +arch cobblestones2 +x 22 +y 12 +end +arch igate_closed_2 +x 22 +y 12 +speed 0.500000 +connected 87 +end +arch cobblestones2 +x 22 +y 13 +end +arch igate_closed_2 +x 22 +y 13 +speed 0.500000 +connected 85 +end +arch cobblestones2 +x 22 +y 14 +move_block swim boat +end +arch spikes_closed +x 22 +y 14 +speed 0.500000 +connected 86 +end +arch card +name Tannery Token +name_pl Tannery Tokens +slaying GUILD_TEMPLATE_Tan_Token +msg +The holder of this card is allowed free +access into and out of the Tool Shed +endmsg +face diploma.111 +x 22 +y 14 +value 800 +identified 1 +end +arch cobblestones2 +x 22 +y 15 +end +arch igate_closed_2 +x 22 +y 15 +speed 0.500000 +connected 87 +end +arch cobblestones2 +x 22 +y 16 +end +arch teleporter +hp 18 +sp 3 +x 22 y 16 end arch blocked -x 20 +x 22 y 17 end -arch cobblestones2 -x 20 +arch blocked +x 22 +y 17 +end +arch blocked +x 22 y 18 end +arch blocked +x 22 +y 19 +end +arch cobblestones2 +x 22 +y 20 +end arch igate_closed_2 -x 20 -y 18 +x 22 +y 20 speed 0.500000 connected 27 end arch blocked -x 20 -y 19 +x 22 +y 21 +end +arch amulet +wc 200 +ac 200 +x 22 +y 22 +value 250000000000000 +invisible 1 +item_power 200 +applied 1 +unpaid 1 +body_neck 0 +end +arch amulet +wc 200 +ac 200 +x 22 +y 22 +value 250000000000000 +invisible 1 +item_power 200 +applied 1 +unpaid 1 +body_neck 0 +end +arch amulet +wc 200 +ac 200 +x 22 +y 22 +value 250000000000000 +invisible 1 +item_power 200 +applied 1 +unpaid 1 +body_neck 0 +end +arch amulet +luck -990 +x 22 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +luck -990 +x 22 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +luck -990 +x 22 +y 23 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 22 +y 24 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 22 +y 24 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 22 +y 24 +invisible 1 +applied 1 +body_neck 0 end arch blocked -x 20 -y 23 +x 22 +y 25 end arch cobblestones2 -x 20 -y 24 +x 22 +y 26 end arch spikes_closed -x 20 -y 24 +x 22 +y 26 speed 0.500000 connected 56 end arch card name Thaumaturgy Token name_pl Thaumaturgy Tokens -slaying Thau_Token +slaying GUILD_TEMPLATE_Thau_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 20 -y 24 +x 22 +y 26 value 800 identified 1 end +arch teleporter +slaying mainfloor +hp 15 +sp 26 +x 23 +type 66 +move_on all +end +arch magic_mouth +msg +The Oracle points at you and curses. Your brain is on fire! The Oracle zaps a wand. The bolt hits you. You feel a wrenching sensation. Something is wrong! +endmsg +x 23 +end arch blocked -x 21 +x 23 y 1 end arch blocked -x 21 +x 23 y 2 end arch blocked -x 21 +x 23 y 3 end arch blocked -x 21 +x 23 y 4 end arch blocked -x 21 +x 23 y 5 end arch blocked -x 21 +x 23 y 6 end arch blocked -x 21 +x 23 y 7 end arch blocked -x 21 +x 23 y 8 end arch blocked -x 21 +x 23 y 9 end arch blocked -x 21 +x 23 y 10 end arch blocked -x 21 +x 23 y 11 end arch blocked -x 21 +x 23 y 12 end arch blocked -x 21 +x 23 y 13 end arch blocked -x 21 +x 23 y 14 end arch blocked -x 21 +x 23 y 15 end arch blocked -x 21 +x 23 y 16 end arch blocked -x 21 +x 23 y 17 end -arch cobblestones2 -x 21 +arch blocked +x 23 y 18 end +arch blocked +x 23 +y 19 +end +arch cobblestones2 +x 23 +y 20 +end arch igate_closed_2 -x 21 -y 18 +x 23 +y 20 speed 0.500000 connected 25 end arch blocked -x 21 -y 19 +x 23 +y 21 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 22 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 22 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 22 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 23 +y 23 +resist_physical -200 +resist_magic -200 +resist_fire -200 +resist_electricity -200 +resist_cold -200 +resist_confusion -200 +resist_acid -200 +resist_drain -200 +resist_weaponmagic -200 +resist_ghosthit -200 +resist_poison -200 +resist_slow -200 +resist_paralyze -200 +resist_fear -200 +resist_deplete -200 +resist_death -200 +resist_chaos -200 +resist_holyword -200 +resist_blind -200 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 23 +y 23 +resist_physical -200 +resist_magic -200 +resist_fire -200 +resist_electricity -200 +resist_cold -200 +resist_confusion -200 +resist_acid -200 +resist_drain -200 +resist_weaponmagic -200 +resist_ghosthit -200 +resist_poison -200 +resist_slow -200 +resist_paralyze -200 +resist_fear -200 +resist_deplete -200 +resist_death -200 +resist_chaos -200 +resist_holyword -200 +resist_blind -200 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +x 23 +y 23 +resist_physical -200 +resist_magic -200 +resist_fire -200 +resist_electricity -200 +resist_cold -200 +resist_confusion -200 +resist_acid -200 +resist_drain -200 +resist_weaponmagic -200 +resist_ghosthit -200 +resist_poison -200 +resist_slow -200 +resist_paralyze -200 +resist_fear -200 +resist_deplete -200 +resist_death -200 +resist_chaos -200 +resist_holyword -200 +resist_blind -200 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 24 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 24 +invisible 1 +applied 1 +body_neck 0 +end +arch amulet +Str -30 +Dex -30 +Con -30 +Wis -30 +Pow -30 +Cha -30 +Int -30 +x 23 +y 24 +invisible 1 +applied 1 +body_neck 0 end arch blocked -x 21 -y 23 +x 23 +y 25 end arch cobblestones2 -x 21 -y 24 +x 23 +y 26 end arch igate_closed_2 -x 21 -y 24 +x 23 +y 26 speed 0.500000 connected 57 end arch blocked -x 22 +x 24 +end +arch blocked +x 24 y 1 end -arch spikes_closed -x 22 +arch blocked +x 24 y 2 +end +arch blocked +x 24 +y 3 +end +arch spikes_closed +x 24 +y 4 speed 0.500000 connected 76 end arch r_sack -x 22 -y 2 +x 24 +y 4 arch note msg Selection sold out, please choose another. @@ -3835,363 +5200,429 @@ nrof 10 end end arch igate_closed_2 -x 22 -y 3 +x 24 +y 5 speed 0.500000 connected 77 end arch igate_closed_2 -x 22 -y 4 -speed 0.500000 -connected 75 -end -arch spikes_closed -x 22 -y 5 -speed 0.500000 -connected 76 -end -arch card -name Jeweler Token -name_pl Jeweler Tokens -slaying Jewe_Token -msg -The holder of this card is allowed free -access into and out of the Jeweler's Workshop. -endmsg -face diploma.111 -x 22 -y 5 -value 800 -identified 1 -end -arch igate_closed_2 -x 22 +x 24 y 6 speed 0.500000 -connected 77 +connected 75 end -arch igate_closed_2 -x 22 +arch spikes_closed +x 24 y 7 speed 0.500000 -connected 75 -end -arch spikes_closed -x 22 -y 8 -speed 0.500000 connected 76 end arch card name Jeweler Token name_pl Jeweler Tokens -slaying Jewe_Token +slaying GUILD_TEMPLATE_Jewe_Token msg The holder of this card is allowed free access into and out of the Jeweler's Workshop. endmsg face diploma.111 -x 22 -y 8 +x 24 +y 7 value 800 identified 1 end arch igate_closed_2 -x 22 +x 24 +y 8 +speed 0.500000 +connected 77 +end +arch igate_closed_2 +x 24 y 9 speed 0.500000 -connected 77 +connected 75 end -arch igate_closed_2 -x 22 +arch spikes_closed +x 24 y 10 speed 0.500000 +connected 76 +end +arch card +name Jeweler Token +name_pl Jeweler Tokens +slaying GUILD_TEMPLATE_Jewe_Token +msg +The holder of this card is allowed free +access into and out of the Jeweler's Workshop. +endmsg +face diploma.111 +x 24 +y 10 +value 800 +identified 1 +end +arch igate_closed_2 +x 24 +y 11 +speed 0.500000 +connected 77 +end +arch igate_closed_2 +x 24 +y 12 +speed 0.500000 connected 75 end arch cobblestones2 -x 22 -y 11 +x 24 +y 13 end arch spikes_closed -x 22 -y 11 +x 24 +y 13 speed 0.500000 connected 76 end arch card name Jeweler Token name_pl Jeweler Tokens -slaying Jewe_Token +slaying GUILD_TEMPLATE_Jewe_Token msg The holder of this card is allowed free access into and out of the Jeweler's Workshop. endmsg face diploma.111 -x 22 -y 11 +x 24 +y 13 value 800 identified 1 end arch cobblestones2 -x 22 -y 12 +x 24 +y 14 end arch igate_closed_2 -x 22 -y 12 +x 24 +y 14 speed 0.500000 connected 77 end arch cobblestones2 -x 22 -y 13 +x 24 +y 15 end arch igate_closed_2 -x 22 -y 13 +x 24 +y 15 speed 0.500000 connected 75 end arch cobblestones2 -x 22 -y 14 +x 24 +y 16 move_block swim boat end arch spikes_closed -x 22 -y 14 +x 24 +y 16 speed 0.500000 connected 76 end arch card name Jeweler Token name_pl Jeweler Tokens -slaying Jewe_Token +slaying GUILD_TEMPLATE_Jewe_Token msg The holder of this card is allowed free access into and out of the Jeweler's Workshop. endmsg face diploma.111 -x 22 -y 14 +x 24 +y 16 value 800 identified 1 end arch cobblestones2 -x 22 -y 15 -end -arch igate_closed_2 -x 22 -y 15 -speed 0.500000 -connected 77 -end -arch cobblestones2 -x 22 -y 16 -end -arch teleporter -hp 16 -sp 13 -x 22 -y 16 -end -arch blocked -x 22 +x 24 y 17 end +arch igate_closed_2 +x 24 +y 17 +speed 0.500000 +connected 77 +end arch cobblestones2 -x 22 +x 24 y 18 +end +arch teleporter +hp 18 +sp 15 +x 24 +y 18 +end +arch blocked +x 24 +y 19 +end +arch cobblestones2 +x 24 +y 20 move_block swim boat end arch spikes_closed -x 22 -y 18 +x 24 +y 20 speed 0.500000 connected 26 end arch card name Toolshed Token name_pl Toolshed Tokens -slaying Tool_Token +slaying GUILD_TEMPLATE_Tool_Token msg The holder of this card is allowed free access into and out of the Tool Shed endmsg face diploma.111 -x 22 -y 18 +x 24 +y 20 value 800 identified 1 end arch blocked -x 22 -y 19 -end -arch blocked -x 22 +x 24 y 21 end arch blocked -x 22 -y 22 -end -arch blocked -x 22 +x 24 y 23 end -arch cobblestones2 -x 22 +arch blocked +x 24 y 24 end +arch blocked +x 24 +y 25 +end +arch cobblestones2 +x 24 +y 26 +end arch igate_closed_2 -x 22 -y 24 +x 24 +y 26 speed 0.500000 connected 55 end -arch blocked -x 23 +arch button_small +x 25 +weight 2 +connected 86 +end +arch button_small +x 25 +connected 81 +end +arch spikes_open +x 25 +speed 0.500000 +value 1 +connected 80 +end +arch boulder +x 25 +end +arch button_small +x 25 y 1 +connected 85 +end +arch spikes_closed +x 25 +y 1 +speed 0.500000 +connected 82 end arch blocked -x 23 +x 25 y 2 end arch blocked -x 23 +x 25 y 3 end arch blocked -x 23 +x 25 y 4 end arch blocked -x 23 +x 25 y 5 end arch blocked -x 23 +x 25 y 6 end arch blocked -x 23 +x 25 y 7 end arch blocked -x 23 +x 25 y 8 end arch blocked -x 23 +x 25 y 9 end arch blocked -x 23 +x 25 y 10 end arch blocked -x 23 +x 25 y 11 end arch blocked -x 23 +x 25 y 12 end arch blocked -x 23 +x 25 y 13 end arch blocked -x 23 +x 25 y 14 end arch blocked -x 23 +x 25 y 15 end arch blocked -x 23 +x 25 y 16 end arch blocked -x 23 +x 25 y 17 end -arch cobblestones2 -x 23 +arch blocked +x 25 y 18 end +arch blocked +x 25 +y 19 +end +arch cobblestones2 +x 25 +y 20 +end arch igate_closed_2 -x 23 -y 18 +x 25 +y 20 speed 0.500000 connected 27 end arch blocked -x 23 -y 19 -end -arch blocked -x 23 +x 25 y 21 end -arch cobblestones2 -x 23 -y 22 -end -arch teleporter -hp 16 -sp 9 -x 23 -y 22 -end arch blocked -x 23 +x 25 y 23 end arch cobblestones2 -x 23 +x 25 y 24 +end +arch teleporter +hp 18 +sp 11 +x 25 +y 24 +end +arch blocked +x 25 +y 25 +end +arch cobblestones2 +x 25 +y 26 move_block swim boat end arch spikes_closed -x 23 -y 24 +x 25 +y 26 speed 0.500000 connected 56 end arch card name Thaumaturgy Token name_pl Thaumaturgy Tokens -slaying Thau_Token +slaying GUILD_TEMPLATE_Thau_Token msg The holder of this card is allowed free access into and out of the Kennel endmsg face diploma.111 -x 23 -y 24 +x 25 +y 26 value 800 identified 1 end arch blocked -x 24 +x 26 +end +arch blocked +x 26 +end +arch button_small +x 26 y 1 +weight 4 +connected 87 +end +arch button_small +x 26 +y 1 +weight 2 +connected 80 +end +arch button_small +x 26 +y 1 +connected 82 end arch spikes_closed -x 24 +x 26 +y 1 +speed 0.500000 +connected 81 +end +arch blocked +x 26 y 2 +end +arch blocked +x 26 +y 3 +end +arch spikes_closed +x 26 +y 4 speed 0.500000 connected 66 end arch r_sack -x 24 -y 2 +x 26 +y 4 arch note msg Selection sold out, please choose another. @@ -4202,207 +5633,207 @@ nrof 10 end end arch igate_closed_2 -x 24 -y 3 +x 26 +y 5 speed 0.500000 connected 67 end arch igate_closed_2 -x 24 -y 4 -speed 0.500000 -connected 65 -end -arch spikes_closed -x 24 -y 5 -speed 0.500000 -connected 66 -end -arch card -name Glowing Crystal Token -name_pl Glowing Crystal Tokens -slaying GC_Token -msg -The holder of this card is allowed free -access into and out of the Crystal Room -endmsg -face diploma.111 -x 24 -y 5 -value 800 -identified 1 -end -arch igate_closed_2 -x 24 +x 26 y 6 speed 0.500000 -connected 67 +connected 65 end -arch igate_closed_2 -x 24 +arch spikes_closed +x 26 y 7 speed 0.500000 -connected 65 -end -arch spikes_closed -x 24 -y 8 -speed 0.500000 connected 66 end arch card name Glowing Crystal Token name_pl Glowing Crystal Tokens -slaying GC_Token +slaying GUILD_TEMPLATE_GC_Token msg The holder of this card is allowed free access into and out of the Crystal Room endmsg face diploma.111 -x 24 -y 8 +x 26 +y 7 value 800 identified 1 end arch igate_closed_2 -x 24 +x 26 +y 8 +speed 0.500000 +connected 67 +end +arch igate_closed_2 +x 26 y 9 speed 0.500000 -connected 67 -end -arch igate_closed_2 -x 24 -y 10 -speed 0.500000 connected 65 end -arch cobblestones2 -x 24 -y 11 -end arch spikes_closed -x 24 -y 11 +x 26 +y 10 speed 0.500000 connected 66 end arch card name Glowing Crystal Token name_pl Glowing Crystal Tokens -slaying GC_Token +slaying GUILD_TEMPLATE_GC_Token msg The holder of this card is allowed free access into and out of the Crystal Room endmsg face diploma.111 -x 24 -y 11 +x 26 +y 10 value 800 identified 1 end -arch cobblestones2 -x 24 -y 12 -end arch igate_closed_2 -x 24 -y 12 +x 26 +y 11 speed 0.500000 connected 67 end -arch cobblestones2 -x 24 -y 13 -end arch igate_closed_2 -x 24 -y 13 +x 26 +y 12 speed 0.500000 connected 65 end arch cobblestones2 -x 24 +x 26 +y 13 +end +arch spikes_closed +x 26 +y 13 +speed 0.500000 +connected 66 +end +arch card +name Glowing Crystal Token +name_pl Glowing Crystal Tokens +slaying GUILD_TEMPLATE_GC_Token +msg +The holder of this card is allowed free +access into and out of the Crystal Room +endmsg +face diploma.111 +x 26 +y 13 +value 800 +identified 1 +end +arch cobblestones2 +x 26 y 14 +end +arch igate_closed_2 +x 26 +y 14 +speed 0.500000 +connected 67 +end +arch cobblestones2 +x 26 +y 15 +end +arch igate_closed_2 +x 26 +y 15 +speed 0.500000 +connected 65 +end +arch cobblestones2 +x 26 +y 16 move_block swim boat end arch spikes_closed -x 24 -y 14 +x 26 +y 16 speed 0.500000 connected 66 end arch card name Glowing Crystal Token name_pl Glowing Crystal Tokens -slaying GC_Token +slaying GUILD_TEMPLATE_GC_Token msg The holder of this card is allowed free access into and out of the Crystal Room endmsg face diploma.111 -x 24 -y 14 +x 26 +y 16 value 800 identified 1 end arch cobblestones2 -x 24 -y 15 +x 26 +y 17 end arch igate_closed_2 -x 24 -y 15 +x 26 +y 17 speed 0.500000 connected 67 end arch cobblestones2 -x 24 -y 16 -end -arch teleporter -hp 16 -sp 11 -x 24 -y 16 -end -arch blocked -x 24 -y 17 -end -arch cobblestones2 -x 24 +x 26 y 18 end arch teleporter -hp 16 -sp 3 -x 24 +hp 18 +sp 13 +x 26 y 18 end arch blocked -x 24 +x 26 y 19 end +arch cobblestones2 +x 26 +y 20 +end +arch teleporter +hp 18 +sp 5 +x 26 +y 20 +end arch blocked -x 24 +x 26 y 21 end arch blocked -x 24 -y 22 +x 26 +y 23 +end +arch blocked +x 26 +y 24 end arch cobblestones2 -x 24 -y 23 +x 26 +y 25 end arch igate_closed_2 -x 24 -y 23 +x 26 +y 25 speed 0.500000 connected 57 end arch blocked -x 24 -y 24 +x 26 +y 26 end diff --git a/templates/guild/guild_jeweler b/templates/guild/guild_jeweler index 42a043ba1..6ad6d57d8 100644 --- a/templates/guild/guild_jeweler +++ b/templates/guild/guild_jeweler @@ -1,5 +1,6 @@ arch map name Guild Jeweler +swap_time 300 difficulty 1 region Template width 7 @@ -12,6 +13,7 @@ Editor: CrossfireEditor Date: 3/19/2007 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg end arch woodfloor @@ -97,6 +99,7 @@ end arch woodfloor x 1 y 4 +unique 1 end arch firepot x 1 @@ -120,6 +123,7 @@ resist_fire 100 resist_electricity 100 resist_cold 100 resist_acid 100 +material 0 no_pick 1 end arch woodfloor @@ -141,6 +145,7 @@ resist_cold 100 resist_confusion 100 resist_acid 100 resist_drain 100 +material 0 no_pick 1 end arch woodfloor @@ -148,6 +153,20 @@ x 1 y 7 unique 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 1 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch duplicator other_arch jeweler_bench x 1 @@ -214,6 +233,7 @@ end arch woodfloor x 2 y 5 +unique 1 end arch woodfloor x 2 @@ -231,6 +251,7 @@ resist_cold 100 resist_confusion 100 resist_acid 100 resist_drain 100 +material 0 no_pick 1 end arch woodfloor @@ -261,6 +282,9 @@ end arch woodfloor x 3 y 2 +move_block all +no_magic 1 +damned 1 end arch dungeon_magic x 3 @@ -306,6 +330,44 @@ end arch woodfloor x 3 y 5 +unique 1 +end +arch lightningwall_5 +sp 0 +x 3 +y 6 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 3 +y 6 +unique 1 +end +arch lightningwall_5 +x 3 +y 6 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end end arch woodfloor x 3 @@ -317,10 +379,6 @@ x 3 y 7 unique 1 end -arch charwoman -x 3 -y 7 -end arch woodfloor x 3 y 8 @@ -368,6 +426,7 @@ end arch woodfloor x 4 y 5 +unique 1 end arch woodfloor x 4 @@ -406,29 +465,12 @@ end arch woodfloor x 4 y 8 +unique 1 end arch table_3 x 4 y 8 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 -resist_confusion 100 -resist_acid 100 -resist_drain 100 -resist_weaponmagic 100 -resist_ghosthit 100 -resist_poison 100 -resist_slow 100 -resist_paralyze 100 -resist_fear 100 -resist_deplete 100 -resist_death 100 -resist_chaos 100 -resist_holyword 100 -resist_blind 100 +material 0 no_pick 1 end arch woodfloor @@ -446,10 +488,26 @@ arch woodfloor x 5 y 1 end +arch check_floor +slaying GuildMaster +x 5 +y 2 +connected 122 +move_block all +end arch woodfloor x 5 y 2 end +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg +x 5 +y 2 +connected 990 +end arch woodfloor x 5 y 3 @@ -479,13 +537,7 @@ end arch table_4 x 5 y 5 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 -resist_acid 100 -resist_chaos 100 +material 0 no_pick 1 end arch woodfloor @@ -496,6 +548,10 @@ end arch barrel x 5 y 6 +material 0 +move_type 0 +move_block 0 +can_roll 0 end arch woodfloor x 5 @@ -505,15 +561,7 @@ end arch table_4 x 5 y 7 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 -resist_confusion 100 -resist_acid 100 -resist_drain 100 -resist_chaos 100 +material 0 no_pick 1 end arch woodfloor @@ -552,6 +600,14 @@ arch woodfloor x 6 y 2 end +arch invis_exit +slaying secondfloor +hp 2 +sp 14 +x 6 +y 2 +invisible 0 +end arch woodfloor x 6 y 3 diff --git a/templates/guild/guild_tan b/templates/guild/guild_tan new file mode 100644 index 000000000..dfa1e26b1 --- /dev/null +++ b/templates/guild/guild_tan @@ -0,0 +1,1310 @@ +arch map +name Guild Tannery +reset_timeout 300 +width 14 +height 11 +msg +Creator: Default +Date: 2008-06-24 +Modified: 2009-12-12 perkins +endmsg +end +arch woodfloor +end +arch dwall_3_3 +end +arch light2 +end +arch woodfloor +y 1 +end +arch dwall_2_1_1 +y 1 +end +arch woodfloor +y 2 +end +arch dwall_2_1_1 +y 2 +end +arch woodfloor +y 3 +end +arch dwall_2_1_1 +y 3 +end +arch woodfloor +y 4 +end +arch dwall_2_1_1 +y 4 +end +arch woodfloor +y 5 +end +arch dwall_2_1_1 +y 5 +end +arch woodfloor +y 6 +end +arch dwall_2_1_1 +y 6 +end +arch woodfloor +y 7 +end +arch dwall_2_1_1 +y 7 +end +arch woodfloor +y 8 +end +arch dwall_2_1_1 +y 8 +end +arch woodfloor +y 9 +end +arch dwall_2_1_1 +y 9 +end +arch woodfloor +y 10 +end +arch dwall_2_2_1 +y 10 +end +arch woodfloor +x 1 +end +arch dwall_2_1_2 +x 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 1 +y 1 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch duplicator +other_arch tanbench +x 1 +y 1 +connected 8002 +activate_on_release 0 +end +arch creator +other_arch thaumaturg_desk +x 1 +y 1 +connected 8002 +lifesave 1 +activate_on_push 0 +arch tanbench +weight 1000000 +magic 3 +container 1000000 +end +end +arch tanbench +x 1 +y 1 +weight 1000000 +magic 3 +container 1000000 +end +arch woodfloor +x 1 +y 2 +unique 1 +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch woodfloor +x 1 +y 4 +unique 1 +end +arch woodfloor +x 1 +y 5 +unique 1 +end +arch light3 +x 1 +y 5 +end +arch woodfloor +x 1 +y 6 +unique 1 +end +arch woodfloor +x 1 +y 7 +unique 1 +end +arch woodfloor +x 1 +y 8 +unique 1 +end +arch table_4 +x 1 +y 8 +resist_physical 100 +resist_magic 100 +resist_fire 100 +resist_electricity 100 +resist_cold 100 +material 0 +no_pick 1 +end +arch woodfloor +x 1 +y 9 +unique 1 +end +arch altar_trigger +name New Tanning Bench 30000 Rubies +slaying ruby +msg +Removing your old cauldron. Please wait. +endmsg +exp 60 +food 30000 +x 1 +y 9 +connected 8002 +end +arch woodfloor +x 1 +y 10 +end +arch dwall_2_1_2 +x 1 +y 10 +end +arch woodfloor +x 2 +end +arch dwall_2_1_2 +x 2 +end +arch woodfloor +x 2 +y 1 +unique 1 +end +arch woodfloor +x 2 +y 2 +unique 1 +end +arch woodfloor +x 2 +y 3 +unique 1 +end +arch woodfloor +x 2 +y 4 +unique 1 +end +arch woodfloor +x 2 +y 5 +unique 1 +end +arch chair_2.4 +x 2 +y 5 +resist_physical 100 +resist_magic 100 +resist_fire 100 +resist_electricity 100 +resist_cold 100 +material 0 +no_pick 1 +end +arch woodfloor +x 2 +y 6 +unique 1 +end +arch woodfloor +x 2 +y 7 +unique 1 +end +arch woodfloor +x 2 +y 8 +unique 1 +end +arch woodfloor +x 2 +y 9 +unique 1 +end +arch woodfloor +x 2 +y 10 +end +arch dwall_2_1_2 +x 2 +y 10 +end +arch woodfloor +x 3 +end +arch dwall_2_1_2 +x 3 +end +arch woodfloor +x 3 +y 1 +unique 1 +end +arch chair_2.4 +x 3 +y 1 +resist_physical 100 +resist_magic 100 +resist_fire 100 +resist_electricity 100 +resist_cold 100 +material 0 +no_pick 1 +end +arch woodfloor +x 3 +y 2 +unique 1 +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch woodfloor +x 3 +y 4 +unique 1 +end +arch woodfloor +x 3 +y 5 +unique 1 +end +arch lightningwall_5 +sp 0 +x 3 +y 5 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 3 +y 5 +unique 1 +end +arch lightningwall_5 +x 3 +y 5 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end +arch table_burl_3 +x 3 +y 5 +no_pick 1 +end +arch woodfloor +x 3 +y 5 +unique 1 +end +arch woodfloor +x 3 +y 6 +unique 1 +end +arch woodfloor +x 3 +y 7 +unique 1 +end +arch woodfloor +x 3 +y 8 +unique 1 +end +arch woodfloor +x 3 +y 9 +unique 1 +end +arch table_3 +x 3 +y 9 +resist_physical 100 +resist_magic 100 +resist_fire 100 +resist_electricity 100 +resist_cold 100 +material 0 +no_pick 1 +end +arch woodfloor +x 3 +y 10 +end +arch dwall_2_1_2 +x 3 +y 10 +end +arch woodfloor +x 4 +end +arch dwall_2_1_2 +x 4 +end +arch woodfloor +x 4 +y 1 +unique 1 +end +arch table_3 +x 4 +y 1 +resist_physical 100 +resist_magic 100 +resist_fire 100 +resist_electricity 100 +resist_cold 100 +material 0 +no_pick 1 +end +arch light3 +x 4 +y 1 +end +arch woodfloor +x 4 +y 2 +unique 1 +end +arch woodfloor +x 4 +y 3 +unique 1 +end +arch woodfloor +x 4 +y 4 +unique 1 +end +arch woodfloor +x 4 +y 5 +unique 1 +end +arch woodfloor +x 4 +y 6 +unique 1 +end +arch woodfloor +x 4 +y 7 +unique 1 +end +arch woodfloor +x 4 +y 8 +unique 1 +end +arch woodfloor +x 4 +y 9 +unique 1 +end +arch barrel +x 4 +y 9 +material 0 +move_type 0 +move_block 0 +can_roll 0 +end +arch woodfloor +x 4 +y 10 +end +arch dwall_2_1_2 +x 4 +y 10 +end +arch woodfloor +x 5 +end +arch dwall_2_1_2 +x 5 +end +arch woodfloor +x 5 +y 1 +unique 1 +end +arch woodfloor +x 5 +y 2 +unique 1 +end +arch woodfloor +x 5 +y 3 +unique 1 +end +arch woodfloor +x 5 +y 4 +unique 1 +end +arch woodfloor +x 5 +y 5 +unique 1 +end +arch woodfloor +x 5 +y 6 +unique 1 +end +arch woodfloor +x 5 +y 7 +unique 1 +end +arch woodfloor +x 5 +y 8 +unique 1 +end +arch woodfloor +x 5 +y 9 +unique 1 +end +arch light3 +x 5 +y 9 +end +arch woodfloor +x 5 +y 10 +end +arch dwall_2_1_2 +x 5 +y 10 +end +arch woodfloor +x 6 +end +arch dwall_2_1_2 +x 6 +end +arch woodfloor +x 6 +y 1 +unique 1 +end +arch brazier +x 6 +y 1 +end +arch woodfloor +x 6 +y 2 +unique 1 +end +arch woodfloor +x 6 +y 3 +unique 1 +end +arch woodfloor +x 6 +y 4 +unique 1 +end +arch pedestal +x 6 +y 5 +invisible 1 +connected 22 +end +arch woodfloor +x 6 +y 5 +unique 1 +end +arch woodfloor +x 6 +y 6 +unique 1 +end +arch woodfloor +x 6 +y 7 +unique 1 +end +arch woodfloor +x 6 +y 8 +end +arch woodfloor +x 6 +y 9 +unique 1 +end +arch brazier +x 6 +y 9 +end +arch woodfloor +x 6 +y 10 +end +arch dwall_2_1_2 +x 6 +y 10 +end +arch woodfloor +x 7 +end +arch dwall_3_4 +x 7 +end +arch woodfloor +x 7 +y 1 +end +arch dwall_2_1_1 +x 7 +y 1 +end +arch woodfloor +x 7 +y 2 +end +arch dwall_2_1_1 +x 7 +y 2 +end +arch woodfloor +x 7 +y 3 +end +arch dwall_2_1_1 +x 7 +y 3 +end +arch woodfloor +x 7 +y 4 +end +arch dwall_1_2 +x 7 +y 4 +end +arch invis_exit +slaying secondfloor +hp 5 +sp 7 +x 7 +y 5 +end +arch dungeon_magic +x 7 +y 5 +end +arch woodfloor +x 7 +y 5 +unique 1 +end +arch grate_closed_2 +x 7 +y 5 +connected 22 +blocksview 1 +no_magic 1 +damned 1 +end +arch woodfloor +x 7 +y 6 +end +arch dwall_1_1 +x 7 +y 6 +end +arch woodfloor +x 7 +y 7 +end +arch dwall_2_1_1 +x 7 +y 7 +end +arch woodfloor +x 7 +y 8 +end +arch dwall_2_1_1 +x 7 +y 8 +end +arch woodfloor +x 7 +y 9 +end +arch dwall_2_1_1 +x 7 +y 9 +end +arch woodfloor +x 7 +y 10 +end +arch woodfloor +x 7 +y 10 +end +arch dwall_3_1 +x 7 +y 10 +end +arch woodfloor +x 8 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 8 +end +arch check_floor +slaying GuildMaster +x 8 +y 1 +connected 122 +move_block all +end +arch woodfloor +x 8 +y 1 +end +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg +x 8 +y 1 +connected 990 +end +arch woodfloor +x 8 +y 2 +end +arch woodfloor +x 8 +y 3 +end +arch woodfloor +x 8 +y 4 +end +arch woodfloor +x 8 +y 5 +end +arch woodfloor +x 8 +y 6 +end +arch woodfloor +x 8 +y 7 +end +arch woodfloor +x 8 +y 8 +end +arch woodfloor +x 8 +y 9 +no_pick 0 +end +arch woodfloor +x 8 +y 10 +end +arch woodfloor +x 8 +y 10 +end +arch dwall_2_1_2 +x 8 +y 10 +end +arch woodfloor +x 9 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +end +arch woodfloor +x 9 +y 1 +end +arch woodfloor +x 9 +y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 2 +end +arch woodfloor +x 9 +y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 3 +end +arch woodfloor +x 9 +y 4 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 4 +end +arch woodfloor +x 9 +y 5 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 5 +end +arch woodfloor +x 9 +y 6 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 6 +end +arch woodfloor +x 9 +y 7 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 7 +end +arch woodfloor +x 9 +y 8 +end +arch woodfloor +x 9 +y 9 +end +arch woodfloor +x 9 +y 10 +end +arch dwall_2_1_2 +x 9 +y 10 +end +arch woodfloor +x 10 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +end +arch woodfloor +x 10 +y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 1 +end +arch woodfloor +x 10 +y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 2 +end +arch woodfloor +x 10 +y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 3 +end +arch woodfloor +x 10 +y 4 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 4 +end +arch woodfloor +x 10 +y 5 +end +arch woodfloor +x 10 +y 6 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 6 +end +arch woodfloor +x 10 +y 7 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 7 +end +arch woodfloor +x 10 +y 8 +end +arch woodfloor +x 10 +y 9 +end +arch woodfloor +x 10 +y 10 +end +arch dwall_2_1_2 +x 10 +y 10 +end +arch woodfloor +x 11 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +end +arch woodfloor +x 11 +y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 1 +end +arch woodfloor +x 11 +y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 2 +end +arch woodfloor +x 11 +y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 3 +end +arch woodfloor +x 11 +y 4 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 4 +end +arch woodfloor +x 11 +y 5 +end +arch woodfloor +x 11 +y 6 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 6 +end +arch woodfloor +x 11 +y 7 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 7 +end +arch woodfloor +x 11 +y 8 +end +arch woodfloor +x 11 +y 9 +end +arch woodfloor +x 11 +y 10 +end +arch dwall_2_1_2 +x 11 +y 10 +end +arch woodfloor +x 12 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +end +arch woodfloor +x 12 +y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 1 +end +arch woodfloor +x 12 +y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 2 +end +arch woodfloor +x 12 +y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 3 +end +arch woodfloor +x 12 +y 4 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 4 +end +arch woodfloor +x 12 +y 5 +end +arch woodfloor +x 12 +y 6 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 6 +end +arch woodfloor +x 12 +y 7 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 7 +end +arch woodfloor +x 12 +y 8 +end +arch woodfloor +x 12 +y 9 +end +arch woodfloor +x 12 +y 10 +end +arch dwall_2_1_2 +x 12 +y 10 +end +arch woodfloor +x 13 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +end +arch woodfloor +x 13 +y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 1 +end +arch woodfloor +x 13 +y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 2 +end +arch woodfloor +x 13 +y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 3 +end +arch woodfloor +x 13 +y 4 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 4 +end +arch woodfloor +x 13 +y 5 +end +arch woodfloor +x 13 +y 6 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 6 +end +arch woodfloor +x 13 +y 7 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 7 +end +arch woodfloor +x 13 +y 8 +end +arch woodfloor +x 13 +y 9 +end +arch woodfloor +x 13 +y 10 +end +arch dwall_2_1_2 +x 13 +y 10 +end diff --git a/templates/guild/guild_thaum b/templates/guild/guild_thaum index 70a3a0a98..854d23726 100644 --- a/templates/guild/guild_thaum +++ b/templates/guild/guild_thaum @@ -1,5 +1,6 @@ arch map name Guild Thaumaturgy Lab +reset_timeout 300 difficulty 1 region Template width 14 @@ -12,6 +13,7 @@ Editor: CrossfireEditor Date: 3/19/2007 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg end arch woodfloor @@ -62,6 +64,29 @@ end arch dwall_2_1_2 x 1 end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 1 +y 1 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch magic_ear +msg +@match xyzzy +The Collosal Cave Awaits! +endmsg +x 1 +y 1 +connected 1 +end arch woodfloor x 1 y 1 @@ -81,10 +106,16 @@ y 1 connected 8002 lifesave 1 activate_on_push 0 +arch thaumaturg_desk +magic 3 +container 1000000 +end end arch thaumaturg_desk x 1 y 1 +magic 3 +container 1000000 end arch woodfloor x 1 @@ -113,6 +144,7 @@ resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor @@ -169,6 +201,7 @@ resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor @@ -208,6 +241,7 @@ resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor @@ -220,14 +254,51 @@ x 3 y 3 unique 1 end +arch lightningwall_5 +sp 0 +x 3 +y 3 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch lightningwall_5 +x 3 +y 3 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end arch table_burl_3 x 3 y 3 -resist_physical 100 -resist_magic 100 -resist_fire 100 -resist_electricity 100 -resist_cold 100 no_pick 1 end arch woodfloor @@ -248,6 +319,7 @@ resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch woodfloor @@ -277,6 +349,7 @@ resist_magic 100 resist_fire 100 resist_electricity 100 resist_cold 100 +material 0 no_pick 1 end arch light3 @@ -306,6 +379,10 @@ end arch barrel x 4 y 5 +material 0 +move_type 0 +move_block 0 +can_roll 0 end arch woodfloor x 4 @@ -326,10 +403,6 @@ x 5 y 1 unique 1 end -arch charwoman -x 5 -y 1 -end arch woodfloor x 5 y 2 @@ -506,11 +579,34 @@ y 6 end arch woodfloor x 8 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 8 +end +arch check_floor +slaying GuildMaster +x 8 +y 1 +connected 122 +move_block all end arch woodfloor x 8 y 1 end +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg +x 8 +y 1 +connected 990 +end arch woodfloor x 8 y 2 @@ -531,9 +627,65 @@ arch dwall_0 x 8 y 4 end +arch creator +other_arch thaumaturg_desk +x 8 +y 5 +connected 1 +lifesave 1 +activate_on_push 0 +arch wand +name Wand +other_arch thaumaturg_desk +hp 100 +speed 0 +connected 22 +lifesave 1 +arch angel +name Angel of Death +Con 0 +hp 1500 +maxhp 1 +exp 1 +dam 12000 +speed 5.0 +level 200 +attacktype 1048833 +pick_up 0 +will_apply 0 +move_type all +see_invisible 0 +reflect_spell 1 +run_away 0 +can_cast_spell 0 +sleep 0 +one_hit 1 +end +end +end +arch woodfloor +hp 3 +sp 3 +x 8 +y 5 +type 41 +connected 1 +unique 1 +end +arch teleporter +name leave_guild +hp 3 +sp 3 +x 8 +y 5 +speed 0.0 +invisible 1 +connected 1 +end arch woodfloor x 8 y 5 +no_pick 0 end arch woodfloor x 8 @@ -549,8 +701,12 @@ y 6 end arch woodfloor x 9 +unique 1 end -arch woodfloor +arch invis_exit +slaying secondfloor +hp 11 +sp 17 x 9 end arch woodfloor @@ -560,10 +716,26 @@ end arch woodfloor x 9 y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 2 end arch woodfloor x 9 y 3 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 9 +y 3 end arch woodfloor x 9 @@ -583,14 +755,37 @@ y 6 end arch woodfloor x 10 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 end arch woodfloor x 10 y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 1 end arch woodfloor x 10 y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 10 +y 2 end arch woodfloor x 10 @@ -614,14 +809,37 @@ y 6 end arch woodfloor x 11 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 end arch woodfloor x 11 y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 1 end arch woodfloor x 11 y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 11 +y 2 end arch woodfloor x 11 @@ -645,14 +863,37 @@ y 6 end arch woodfloor x 12 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 end arch woodfloor x 12 y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 1 end arch woodfloor x 12 y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 12 +y 2 end arch woodfloor x 12 @@ -676,14 +917,37 @@ y 6 end arch woodfloor x 13 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 end arch woodfloor x 13 y 1 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 1 end arch woodfloor x 13 y 2 +unique 1 +end +arch invis_exit +slaying secondfloor +hp 11 +sp 17 +x 13 +y 2 end arch woodfloor x 13 diff --git a/templates/guild/guild_toolshed b/templates/guild/guild_toolshed index 0b6216344..2327a2867 100644 --- a/templates/guild/guild_toolshed +++ b/templates/guild/guild_toolshed @@ -1,9 +1,10 @@ arch map name Guild Tool Shed +reset_timeout 300 difficulty 1 region Template width 28 -height 16 +height 18 enter_x 14 enter_y 4 msg @@ -12,8 +13,8 @@ Editor: CrossfireEditor Date: 3/17/2007 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 +Modified: 2009-12-12 perkins endmsg -unique 1 end arch grass end @@ -66,6 +67,12 @@ arch grass y 15 end arch grass +y 16 +end +arch grass +y 17 +end +arch grass x 1 end arch grass @@ -100,7 +107,7 @@ arch flagstone x 1 y 5 end -arch dwall_win1 +arch dwall_2_1_1 x 1 y 5 end @@ -116,9 +123,11 @@ arch flagstone x 1 y 7 end -arch dwall_2_1_1 +arch dwall_win1 x 1 y 7 +no_magic 1 +damned 1 end arch flagstone x 1 @@ -160,29 +169,47 @@ arch dwall_2_1_1 x 1 y 12 end +arch flagstone +x 1 +y 13 +end +arch dwall_2_1_1 +x 1 +y 13 +end +arch flagstone +x 1 +y 14 +end +arch dwall_2_1_1 +x 1 +y 14 +end arch dwall_win1 x 1 -y 12 +y 14 +no_magic 1 +damned 1 end arch flagstone x 1 -y 13 +y 15 end arch dwall_2_1_1 x 1 -y 13 +y 15 end arch flagstone x 1 -y 14 +y 16 end arch dwall_2_2_1 x 1 -y 14 +y 16 end arch grass x 1 -y 15 +y 17 end arch grass x 2 @@ -212,11 +239,6 @@ x 2 y 4 unique 1 end -arch firepot -x 2 -y 4 -glow_radius 4 -end arch flagstone x 2 y 5 @@ -227,19 +249,34 @@ x 2 y 6 unique 1 end +arch firepot +x 2 +y 6 +glow_radius 4 +end arch flagstone x 2 y 7 unique 1 end +arch flagstone +x 2 +y 8 +unique 1 +end +arch flagstone +x 2 +y 9 +unique 1 +end arch dungeon_magic x 2 -y 7 +y 9 end arch creator other_arch flagstone x 2 -y 7 +y 9 connected 76 arch flagstone unique 1 @@ -250,18 +287,18 @@ name drop 30,000 rubies for a forge slaying ruby food 30000 x 2 -y 7 +y 9 connected 130 unique 1 end arch flagstone x 2 -y 8 +y 10 unique 1 end arch dungeon_magic x 2 -y 8 +y 10 end arch trigger_marker slaying guild_forge121 @@ -270,71 +307,71 @@ You have one day's use of these facilities. endmsg food 504 x 2 -y 8 +y 10 connected 131 end arch dungeon_magic x 2 -y 9 +y 11 end arch flagstone x 2 -y 9 +y 11 unique 1 end arch check_floor slaying guild_forge121 x 2 -y 9 +y 11 connected 132 end arch flagstone x 2 -y 10 +y 12 unique 1 end arch grate_closed_1 x 2 -y 10 +y 12 connected 132 end arch flagstone x 2 -y 11 +y 13 unique 1 end arch pedestal x 2 -y 11 +y 13 invisible 1 connected 132 end arch flagstone x 2 -y 12 +y 14 unique 1 end arch flagstone x 2 -y 13 +y 15 unique 1 end arch firepot x 2 -y 13 +y 15 glow_radius 4 end arch flagstone x 2 -y 14 +y 16 end arch dwall_2_1_2 x 2 -y 14 +y 16 end arch grass x 2 -y 15 +y 17 end arch grass x 3 @@ -364,10 +401,6 @@ x 3 y 4 unique 1 end -arch charwoman -x 3 -y 4 -end arch flagstone x 3 y 5 @@ -376,24 +409,18 @@ end arch flagstone x 3 y 6 -end -arch dwall_2_2_2 -x 3 -y 6 +unique 1 end arch flagstone x 3 y 7 -end -arch dwall_2_1_1 -x 3 -y 7 +unique 1 end arch flagstone x 3 y 8 end -arch dwall_2_1_1 +arch dwall_2_2_2 x 3 y 8 end @@ -417,31 +444,47 @@ arch flagstone x 3 y 11 end -arch dwall_1_2 +arch dwall_2_1_1 x 3 y 11 end arch flagstone x 3 y 12 -unique 1 +end +arch dwall_2_1_1 +x 3 +y 12 end arch flagstone x 3 y 13 -unique 1 +end +arch dwall_1_2 +x 3 +y 13 end arch flagstone x 3 y 14 +unique 1 +end +arch flagstone +x 3 +y 15 +unique 1 +end +arch flagstone +x 3 +y 16 end arch dwall_2_1_2 x 3 -y 14 +y 16 end arch grass x 3 -y 15 +y 17 end arch grass x 4 @@ -479,16 +522,26 @@ end arch flagstone x 4 y 6 -end -arch dwall_2_1_2 -x 4 -y 6 +unique 1 end arch flagstone x 4 y 7 unique 1 end +arch flagstone +x 4 +y 8 +end +arch dwall_2_1_2 +x 4 +y 8 +end +arch flagstone +x 4 +y 9 +unique 1 +end arch altar_trigger name New Forge 25,000 Rubies slaying ruby @@ -498,25 +551,11 @@ endmsg exp 60 food 25000 x 4 -y 7 +y 9 connected 8004 end arch flagstone x 4 -y 8 -unique 1 -end -arch charwoman -x 4 -y 8 -end -arch flagstone -x 4 -y 9 -unique 1 -end -arch flagstone -x 4 y 10 unique 1 end @@ -525,11 +564,6 @@ x 4 y 11 unique 1 end -arch firepot -x 4 -y 11 -glow_radius 4 -end arch flagstone x 4 y 12 @@ -540,21 +574,36 @@ x 4 y 13 unique 1 end +arch firepot +x 4 +y 13 +glow_radius 4 +end +arch flagstone +x 4 +y 14 +unique 1 +end +arch flagstone +x 4 +y 15 +unique 1 +end arch longtable_0 x 4 -y 13 +y 15 end arch flagstone x 4 -y 14 +y 16 end arch dwall_2_1_2 x 4 -y 14 +y 16 end arch grass x 4 -y 15 +y 17 end arch grass x 5 @@ -592,10 +641,7 @@ end arch flagstone x 5 y 6 -end -arch dwall_win2 -x 5 -y 6 +unique 1 end arch flagstone x 5 @@ -605,39 +651,44 @@ end arch flagstone x 5 y 8 +end +arch dwall_win2 +x 5 +y 8 +no_magic 1 +damned 1 +end +arch flagstone +x 5 +y 9 +unique 1 +end +arch flagstone +x 5 +y 10 unique 1 end arch longtable_1_1 x 5 -y 8 +y 10 end arch flagstone x 5 -y 9 +y 11 unique 1 end arch longtable_2_1_1 x 5 -y 9 +y 11 end arch flagstone x 5 -y 10 +y 12 unique 1 end arch longtable_1_2 x 5 -y 10 -end -arch flagstone -x 5 -y 11 -unique 1 -end -arch flagstone -x 5 y 12 -unique 1 end arch flagstone x 5 @@ -647,14 +698,24 @@ end arch flagstone x 5 y 14 +unique 1 +end +arch flagstone +x 5 +y 15 +unique 1 +end +arch flagstone +x 5 +y 16 end arch dwall_2_1_2 x 5 -y 14 +y 16 end arch grass x 5 -y 15 +y 17 end arch grass x 6 @@ -692,31 +753,31 @@ end arch flagstone x 6 y 6 -end -arch dwall_2_1_2 -x 6 -y 6 +unique 1 end arch flagstone x 6 y 7 unique 1 end -arch firepot -x 6 -y 7 -glow_radius 4 -end arch flagstone x 6 y 8 -unique 1 +end +arch dwall_2_1_2 +x 6 +y 8 end arch flagstone x 6 y 9 unique 1 end +arch firepot +x 6 +y 9 +glow_radius 4 +end arch flagstone x 6 y 10 @@ -732,6 +793,63 @@ x 6 y 12 unique 1 end +arch woodfloor +x 6 +y 12 +unique 1 +end +arch lightningwall_5 +sp 0 +x 6 +y 12 +speed 0.0 +level 111 +invisible 1 +connected 991 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 6 +y 12 +unique 1 +end +arch lightningwall_5 +x 6 +y 12 +speed 0.0 +level 111 +invisible 1 +connected 991 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end +arch woodfloor +x 6 +y 12 +unique 1 +end +arch table_burl_3 +x 6 +y 12 +no_pick 1 +end +arch flagstone +x 6 +y 12 +unique 1 +end arch flagstone x 6 y 13 @@ -740,14 +858,26 @@ end arch flagstone x 6 y 14 +unique 1 +end +arch flagstone +x 6 +y 15 +unique 1 +end +arch flagstone +x 6 +y 16 end arch dwall_win2 x 6 -y 14 +y 16 +no_magic 1 +damned 1 end arch grass x 6 -y 15 +y 17 end arch grass x 7 @@ -768,9 +898,11 @@ arch flagstone x 7 y 3 end -arch dwall_2_1_2 +arch dwall_win2 x 7 y 3 +no_magic 1 +damned 1 end arch flagstone x 7 @@ -785,50 +917,42 @@ end arch flagstone x 7 y 6 -end -arch dwall_2_1_2 -x 7 -y 6 +unique 1 end arch flagstone x 7 y 7 unique 1 end +arch flagstone +x 7 +y 8 +end +arch dwall_2_1_2 +x 7 +y 8 +end +arch flagstone +x 7 +y 9 +unique 1 +end arch barrel x 7 -y 7 +y 9 end arch flagstone x 7 -y 8 +y 10 unique 1 end arch flagstone x 7 -y 9 +y 11 unique 1 end arch longtable_1_1 x 7 -y 9 -end -arch flagstone -x 7 -y 10 -unique 1 -end -arch longtable_2_1_1 -x 7 -y 10 -end -arch flagstone -x 7 -y 11 -unique 1 -end -arch longtable_1_2 -x 7 y 11 end arch flagstone @@ -836,22 +960,40 @@ x 7 y 12 unique 1 end +arch longtable_2_1_1 +x 7 +y 12 +end arch flagstone x 7 y 13 unique 1 end +arch longtable_1_2 +x 7 +y 13 +end arch flagstone x 7 y 14 +unique 1 +end +arch flagstone +x 7 +y 15 +unique 1 +end +arch flagstone +x 7 +y 16 end arch dwall_2_1_2 x 7 -y 14 +y 16 end arch grass x 7 -y 15 +y 17 end arch grass x 8 @@ -872,25 +1014,39 @@ arch flagstone x 8 y 3 end -arch dwall_win2 +arch dwall_2_1_2 +x 8 +y 3 +end +arch flagstone +x 8 +y 3 +end +arch dwall_3_3 x 8 y 3 end arch flagstone x 8 y 4 -unique 1 +end +arch dwall_2_1_1 +x 8 +y 4 end arch flagstone x 8 y 5 -unique 1 +end +arch dwall_2_1_1 +x 8 +y 5 end arch flagstone x 8 y 6 end -arch dwall_win2 +arch dwall_2_2_1 x 8 y 6 end @@ -902,7 +1058,12 @@ end arch flagstone x 8 y 8 -unique 1 +end +arch dwall_win2 +x 8 +y 8 +no_magic 1 +damned 1 end arch flagstone x 8 @@ -929,21 +1090,31 @@ x 8 y 13 unique 1 end -arch longtable_0 -x 8 -y 13 -end arch flagstone x 8 y 14 +unique 1 +end +arch flagstone +x 8 +y 15 +unique 1 +end +arch longtable_0 +x 8 +y 15 +end +arch flagstone +x 8 +y 16 end arch dwall_2_1_2 x 8 -y 14 +y 16 end arch grass x 8 -y 15 +y 17 end arch grass x 9 @@ -970,24 +1141,18 @@ y 3 end arch flagstone x 9 -y 3 -end -arch dwall_3_3 -x 9 -y 3 -end -arch flagstone -x 9 y 4 +no_magic 1 unique 1 end -arch flagstone -x 9 -y 4 -end -arch dwall_1_2 +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg x 9 y 4 +connected 991 end arch flagstone x 9 @@ -998,7 +1163,7 @@ arch flagstone x 9 y 6 end -arch dwall_2_1_2 +arch dwall_1_3 x 9 y 6 end @@ -1007,42 +1172,43 @@ x 9 y 7 unique 1 end +arch flagstone +x 9 +y 8 +end +arch dwall_2_1_2 +x 9 +y 8 +end +arch flagstone +x 9 +y 9 +unique 1 +end arch duplicator other_arch forge x 9 -y 7 +y 9 connected 8004 activate_on_release 0 end arch creator other_arch forge x 9 -y 7 +y 9 connected 8004 lifesave 1 activate_on_push 0 arch forge magic 4 +container 1000000 end end arch forge x 9 -y 7 +y 9 magic 4 -end -arch flagstone -x 9 -y 8 -unique 1 -end -arch flagstone -x 9 -y 9 -unique 1 -end -arch barrel -x 9 -y 9 +container 1000000 end arch flagstone x 9 @@ -1054,7 +1220,7 @@ x 9 y 11 unique 1 end -arch longtable_0 +arch barrel x 9 y 11 end @@ -1068,22 +1234,36 @@ x 9 y 13 unique 1 end -arch firepot +arch longtable_0 x 9 y 13 -glow_radius 4 end arch flagstone x 9 y 14 +unique 1 +end +arch flagstone +x 9 +y 15 +unique 1 +end +arch firepot +x 9 +y 15 +glow_radius 4 +end +arch flagstone +x 9 +y 16 end arch dwall_2_1_2 x 9 -y 14 +y 16 end arch grass x 9 -y 15 +y 17 end arch grass x 10 @@ -1111,15 +1291,9 @@ end arch flagstone x 10 y 4 +no_magic 1 unique 1 end -arch check_floor -slaying GuildMaster -x 10 -y 4 -connected 122 -move_block all -end arch button_lever name Dues msg @@ -1134,28 +1308,49 @@ x 10 y 5 unique 1 end +arch trap_blades +msg + +endmsg +Cha 127 +hp 1000 +dam 0 +x 10 +y 6 +level 100 +attacktype 0 +move_on walk fly low +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch dungeon_magic +x 10 +y 6 +end arch flagstone x 10 y 6 +unique 1 +end +arch grate_closed_1 +x 10 +y 6 +connected 918 +end +arch flagstone +x 10 +y 7 +unique 1 +end +arch flagstone +x 10 +y 8 end arch dwall_3_3 x 10 -y 6 -end -arch flagstone -x 10 -y 7 -end -arch dwall_2_1_1 -x 10 -y 7 -end -arch flagstone -x 10 -y 8 -end -arch dwall_2_1_1 -x 10 y 8 end arch flagstone @@ -1170,25 +1365,27 @@ arch flagstone x 10 y 10 end +arch dwall_2_1_1 +x 10 +y 10 +end +arch flagstone +x 10 +y 11 +end +arch dwall_2_1_1 +x 10 +y 11 +end +arch flagstone +x 10 +y 12 +end arch dwall_win1 x 10 -y 10 -end -arch flagstone -x 10 -y 11 -end -arch dwall_2_1_1 -x 10 -y 11 -end -arch flagstone -x 10 -y 12 -end -arch dwall_2_1_1 -x 10 y 12 +no_magic 1 +damned 1 end arch flagstone x 10 @@ -1202,13 +1399,29 @@ arch flagstone x 10 y 14 end +arch dwall_2_1_1 +x 10 +y 14 +end +arch flagstone +x 10 +y 15 +end +arch dwall_2_1_1 +x 10 +y 15 +end +arch flagstone +x 10 +y 16 +end arch dwall_3_1 x 10 -y 14 +y 16 end arch grass x 10 -y 15 +y 17 end arch grass x 11 @@ -1235,35 +1448,54 @@ y 3 end arch flagstone x 11 -y 3 -end -arch dwall_3_3 -x 11 -y 3 -end -arch flagstone -x 11 y 4 +no_magic 1 unique 1 end -arch flagstone -x 11 -y 4 -end -arch dwall_1_2 +arch button_lever +name Hard Reset +msg +Pull this lever to clear the room. +endmsg x 11 y 4 +connected 990 end arch flagstone x 11 y 5 unique 1 end +arch guard +x 11 +y 5 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE GuildMaster +title Python +slaying /python/guilds/clearance.py +end +end arch flagstone x 11 y 6 end -arch dwall_2_1_2 +arch dwall_1_4 x 11 y 6 end @@ -1272,38 +1504,44 @@ x 11 y 7 unique 1 end +arch flagstone +x 11 +y 8 +end +arch dwall_2_1_2 +x 11 +y 8 +end +arch flagstone +x 11 +y 9 +unique 1 +end arch duplicator other_arch workbench x 11 -y 7 +y 9 connected 8005 activate_on_release 0 end arch creator other_arch workbench x 11 -y 7 +y 9 connected 8005 lifesave 1 activate_on_push 0 arch workbench +weight 100000 magic 4 +container 1000000 end end arch workbench x 11 -y 7 -magic 4 -end -arch flagstone -x 11 -y 8 -unique 1 -end -arch flagstone -x 11 y 9 -unique 1 +magic 4 +container 1000000 end arch flagstone x 11 @@ -1325,22 +1563,32 @@ x 11 y 13 unique 1 end +arch flagstone +x 11 +y 14 +unique 1 +end +arch flagstone +x 11 +y 15 +unique 1 +end arch firepot x 11 -y 13 +y 15 glow_radius 4 end arch flagstone x 11 -y 14 +y 16 end arch dwall_2_1_2 x 11 -y 14 +y 16 end arch grass x 11 -y 15 +y 17 end arch grass x 12 @@ -1367,19 +1615,33 @@ y 3 end arch flagstone x 12 +y 3 +end +arch dwall_3_3 +x 12 +y 3 +end +arch flagstone +x 12 +y 4 +end +arch dwall_2_1_1 +x 12 y 4 -unique 1 end arch flagstone x 12 y 5 -unique 1 +end +arch dwall_2_1_1 +x 12 +y 5 end arch flagstone x 12 y 6 end -arch dwall_win2 +arch dwall_2_2_4 x 12 y 6 end @@ -1391,17 +1653,18 @@ end arch flagstone x 12 y 8 -unique 1 +end +arch dwall_win2 +x 12 +y 8 +no_magic 1 +damned 1 end arch flagstone x 12 y 9 unique 1 end -arch longtable_1_4 -x 12 -y 9 -end arch flagstone x 12 y 10 @@ -1426,21 +1689,35 @@ x 12 y 13 unique 1 end -arch longtable_0 +arch longtable_1_4 x 12 y 13 end arch flagstone x 12 y 14 +unique 1 +end +arch flagstone +x 12 +y 15 +unique 1 +end +arch longtable_0 +x 12 +y 15 +end +arch flagstone +x 12 +y 16 end arch dwall_2_1_2 x 12 -y 14 +y 16 end arch grass x 12 -y 15 +y 17 end arch grass x 13 @@ -1470,11 +1747,6 @@ x 13 y 4 unique 1 end -arch firepot -x 13 -y 4 -glow_radius 4 -end arch flagstone x 13 y 5 @@ -1483,31 +1755,32 @@ end arch flagstone x 13 y 6 +unique 1 end -arch dwall_2_1_2 +arch firepot x 13 y 6 +glow_radius 4 end arch flagstone x 13 y 7 unique 1 end -arch longtable_0 -x 13 -y 7 -end arch flagstone x 13 y 8 -unique 1 +end +arch dwall_2_1_2 +x 13 +y 8 end arch flagstone x 13 y 9 unique 1 end -arch longtable_1_3 +arch longtable_0 x 13 y 9 end @@ -1535,17 +1808,31 @@ x 13 y 13 unique 1 end +arch longtable_1_3 +x 13 +y 13 +end arch flagstone x 13 y 14 +unique 1 +end +arch flagstone +x 13 +y 15 +unique 1 +end +arch flagstone +x 13 +y 16 end arch dwall_2_1_2 x 13 -y 14 +y 16 end arch grass x 13 -y 15 +y 17 end arch grass x 14 @@ -1583,19 +1870,7 @@ sp 22 x 14 y 3 end -arch magic_mouth -msg -Did you clean up after yourself? -If not, the cleaning staff will. -endmsg -x 14 -y 4 -end arch flagstone -msg -Be sure to leave no items behind; -the cleaning service is very, very thorough! -endmsg x 14 y 4 unique 1 @@ -1605,13 +1880,22 @@ x 14 y 5 unique 1 end -arch flagstone +arch magic_mouth +msg +Did you clean up after yourself? +If not, the cleaning staff will. +endmsg x 14 y 6 end -arch dwall_2_1_2 +arch flagstone +msg +Be sure to leave no items behind; +the cleaning service is very, very thorough! +endmsg x 14 y 6 +unique 1 end arch flagstone x 14 @@ -1621,7 +1905,10 @@ end arch flagstone x 14 y 8 -unique 1 +end +arch dwall_2_1_2 +x 14 +y 8 end arch flagstone x 14 @@ -1643,6 +1930,58 @@ x 14 y 12 unique 1 end +arch woodfloor +x 14 +y 12 +unique 1 +end +arch lightningwall_5 +sp 0 +x 14 +y 12 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spell_banishment +end +end +arch woodfloor +x 14 +y 12 +unique 1 +end +arch lightningwall_5 +x 14 +y 12 +speed 0.0 +level 111 +invisible 1 +connected 990 +move_block 0 +blocksview 0 +no_damage 1 +arch spelldirect_dragonbreath +other_arch god_power +sp 0 +level 115 +duration 20 +casting_time 0 +end +end +arch woodfloor +x 14 +y 12 +unique 1 +end +arch flagstone +x 14 +y 12 +unique 1 +end arch flagstone x 14 y 13 @@ -1651,14 +1990,26 @@ end arch flagstone x 14 y 14 +unique 1 +end +arch flagstone +x 14 +y 15 +unique 1 +end +arch flagstone +x 14 +y 16 end arch dwall_win2 x 14 -y 14 +y 16 +no_magic 1 +damned 1 end arch grass x 14 -y 15 +y 17 end arch grass x 15 @@ -1688,11 +2039,6 @@ x 15 y 4 unique 1 end -arch firepot -x 15 -y 4 -glow_radius 4 -end arch flagstone x 15 y 5 @@ -1701,24 +2047,27 @@ end arch flagstone x 15 y 6 +unique 1 end -arch dwall_win2 +arch firepot x 15 y 6 +glow_radius 4 end arch flagstone x 15 y 7 unique 1 end -arch charwoman -x 15 -y 7 -end arch flagstone x 15 y 8 -unique 1 +end +arch dwall_win2 +x 15 +y 8 +no_magic 1 +damned 1 end arch flagstone x 15 @@ -1745,21 +2094,31 @@ x 15 y 13 unique 1 end -arch longtable_0 -x 15 -y 13 -end arch flagstone x 15 y 14 +unique 1 +end +arch flagstone +x 15 +y 15 +unique 1 +end +arch longtable_0 +x 15 +y 15 +end +arch flagstone +x 15 +y 16 end arch dwall_2_1_2 x 15 -y 14 +y 16 end arch grass x 15 -y 15 +y 17 end arch grass x 16 @@ -1797,16 +2156,26 @@ end arch flagstone x 16 y 6 -end -arch dwall_2_1_2 -x 16 -y 6 +unique 1 end arch flagstone x 16 y 7 unique 1 end +arch flagstone +x 16 +y 8 +end +arch dwall_2_1_2 +x 16 +y 8 +end +arch flagstone +x 16 +y 9 +unique 1 +end arch altar_trigger name New Workbench 25,000 Rubies slaying ruby @@ -1816,63 +2185,63 @@ endmsg exp 60 food 25000 x 16 -y 7 +y 9 connected 8005 end arch flagstone x 16 -y 8 +y 10 unique 1 end arch longtable_1_1 x 16 -y 8 +y 10 end arch flagstone x 16 -y 9 +y 11 unique 1 end arch longtable_1_2 x 16 -y 9 +y 11 end arch flagstone x 16 -y 10 +y 12 unique 1 end arch flagstone x 16 -y 11 +y 13 unique 1 end arch firepot x 16 -y 11 +y 13 glow_radius 4 end arch flagstone x 16 -y 12 -unique 1 -end -arch flagstone -x 16 -y 13 -unique 1 -end -arch flagstone -x 16 y 14 +unique 1 +end +arch flagstone +x 16 +y 15 +unique 1 +end +arch flagstone +x 16 +y 16 end arch dwall_2_1_2 x 16 -y 14 +y 16 end arch grass x 16 -y 15 +y 17 end arch grass x 17 @@ -1902,10 +2271,6 @@ x 17 y 4 unique 1 end -arch charwoman -x 17 -y 4 -end arch flagstone x 17 y 5 @@ -1914,25 +2279,19 @@ end arch flagstone x 17 y 6 +unique 1 +end +arch flagstone +x 17 +y 7 +unique 1 +end +arch flagstone +x 17 +y 8 end arch dwall_2_2_3 x 17 -y 6 -end -arch flagstone -x 17 -y 7 -end -arch dwall_2_1_1 -x 17 -y 7 -end -arch flagstone -x 17 -y 8 -end -arch dwall_2_1_1 -x 17 y 8 end arch flagstone @@ -1955,31 +2314,47 @@ arch flagstone x 17 y 11 end -arch dwall_1_2 +arch dwall_2_1_1 x 17 y 11 end arch flagstone x 17 y 12 -unique 1 +end +arch dwall_2_1_1 +x 17 +y 12 end arch flagstone x 17 y 13 -unique 1 +end +arch dwall_1_2 +x 17 +y 13 end arch flagstone x 17 y 14 +unique 1 +end +arch flagstone +x 17 +y 15 +unique 1 +end +arch flagstone +x 17 +y 16 end arch dwall_2_1_2 x 17 -y 14 +y 16 end arch grass x 17 -y 15 +y 17 end arch grass x 18 @@ -2024,14 +2399,24 @@ x 18 y 7 unique 1 end +arch flagstone +x 18 +y 8 +unique 1 +end +arch flagstone +x 18 +y 9 +unique 1 +end arch dungeon_magic x 18 -y 7 +y 9 end arch creator other_arch flagstone x 18 -y 7 +y 9 connected 76 arch flagstone unique 1 @@ -2042,18 +2427,18 @@ name drop 30,000 rubies for a workbench slaying ruby food 30000 x 18 -y 7 +y 9 connected 120 unique 1 end arch flagstone x 18 -y 8 +y 10 unique 1 end arch dungeon_magic x 18 -y 8 +y 10 end arch trigger_marker slaying guild_boyer121 @@ -2062,42 +2447,22 @@ You have one day's use of these facilities. endmsg food 504 x 18 -y 8 +y 10 connected 121 end arch dungeon_magic x 18 -y 9 +y 11 end arch flagstone x 18 -y 9 +y 11 unique 1 end arch check_floor slaying guild_boyer121 x 18 -y 9 -connected 122 -end -arch flagstone -x 18 -y 10 -unique 1 -end -arch grate_closed_1 -x 18 -y 10 -connected 122 -end -arch flagstone -x 18 y 11 -end -arch pedestal -x 18 -y 11 -invisible 1 connected 122 end arch flagstone @@ -2105,27 +2470,47 @@ x 18 y 12 unique 1 end +arch grate_closed_1 +x 18 +y 12 +connected 122 +end arch flagstone x 18 y 13 +end +arch pedestal +x 18 +y 13 +invisible 1 +connected 122 +end +arch flagstone +x 18 +y 14 +unique 1 +end +arch flagstone +x 18 +y 15 unique 1 end arch firepot x 18 -y 13 +y 15 glow_radius 4 end arch flagstone x 18 -y 14 +y 16 end arch dwall_2_1_2 x 18 -y 14 +y 16 end arch grass x 18 -y 15 +y 17 end arch grass x 19 @@ -2173,7 +2558,7 @@ arch flagstone x 19 y 5 end -arch dwall_win1 +arch dwall_2_1_1 x 19 y 5 end @@ -2189,9 +2574,11 @@ arch flagstone x 19 y 7 end -arch dwall_3_2 +arch dwall_win1 x 19 y 7 +no_magic 1 +damned 1 end arch flagstone x 19 @@ -2205,7 +2592,7 @@ arch flagstone x 19 y 9 end -arch dwall_2_1_1 +arch dwall_3_2 x 19 y 9 end @@ -2213,7 +2600,7 @@ arch flagstone x 19 y 10 end -arch dwall_3_2 +arch dwall_2_1_1 x 19 y 10 end @@ -2229,29 +2616,47 @@ arch flagstone x 19 y 12 end +arch dwall_3_2 +x 19 +y 12 +end +arch flagstone +x 19 +y 13 +end +arch dwall_2_1_1 +x 19 +y 13 +end +arch flagstone +x 19 +y 14 +end arch dwall_win1 x 19 -y 12 +y 14 +no_magic 1 +damned 1 end arch flagstone x 19 -y 13 +y 15 end arch dwall_2_1_1 x 19 -y 13 +y 15 end arch flagstone x 19 -y 14 +y 16 end arch dwall_2_2_4 x 19 -y 14 +y 16 end arch grass x 19 -y 15 +y 17 end arch grass x 20 @@ -2284,36 +2689,36 @@ arch grass x 20 y 6 end -arch flagstone +arch grass x 20 y 7 end +arch grass +x 20 +y 8 +end +arch flagstone +x 20 +y 9 +end arch dwall_1_3 x 20 -y 7 -end -arch flagstone -x 20 -y 8 -end -arch flagstone -x 20 y 9 end arch flagstone x 20 y 10 end +arch flagstone +x 20 +y 11 +end +arch flagstone +x 20 +y 12 +end arch dwall_1_3 x 20 -y 10 -end -arch grass -x 20 -y 11 -end -arch grass -x 20 y 12 end arch grass @@ -2328,9 +2733,33 @@ arch grass x 20 y 15 end +arch grass +x 20 +y 16 +end +arch grass +x 20 +y 17 +end arch blocked x 21 end +arch dungeon_magic +x 21 +end +arch grass +x 21 +end +arch swall_2_1_2 +x 21 +end +arch blocked +x 21 +end +arch button_small +x 21 +connected 9991 +end arch blocked x 21 y 1 @@ -2454,26 +2883,82 @@ arch blocked x 22 y 15 end -arch blocked +arch lightningwall_5 +x 23 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 x 23 end -arch blocked +arch detector +slaying lightning x 23 y 1 +speed 1.0 +connected 918 end -arch blocked +arch lightningwall_5 +sp 1 +x 23 +y 2 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 23 y 2 end -arch blocked +arch lightningwall_5 +sp 1 +x 23 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 23 y 3 end -arch blocked +arch lightningwall_5 +sp 1 +x 23 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 23 y 4 end -arch blocked +arch lightningwall_5 +sp 1 +x 23 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 23 y 5 end @@ -2481,41 +2966,88 @@ arch blocked x 23 y 6 end +arch lightningwall_5 +sp 1 +x 23 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 23 +y 6 +end arch blocked x 23 y 7 end +arch lightningwall_5 +sp 1 +x 23 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 23 +y 7 +end arch blocked x 23 y 8 end -arch blocked +arch lightningwall_5 +sp 1 +x 23 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 23 +y 8 +end +arch lightningwall_5 +sp 1 +x 23 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 23 y 9 end -arch blocked +arch lightningwall_5 +sp 1 x 23 y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning end -arch blocked -x 23 -y 11 end -arch blocked +arch director_1 x 23 -y 12 -end -arch blocked -x 23 -y 13 -end -arch blocked -x 23 -y 14 -end -arch blocked -x 23 -y 15 +y 10 end arch blocked x 24 diff --git a/templates/guild/guildman_lounge b/templates/guild/guildman_lounge index dd97435e8..78caf584e 100644 --- a/templates/guild/guildman_lounge +++ b/templates/guild/guildman_lounge @@ -1,12 +1,14 @@ arch map name Guildman's Lounge +reset_timeout 300 difficulty 1 -width 18 +width 22 height 18 enter_x 1 enter_y 8 msg Created: 2004-05-12 +Modified: 2009-12-12 perkins endmsg end arch woodfloor @@ -96,15 +98,29 @@ arch wall_2_1_1 y 9 end arch woodfloor -y 10 +y 9 type 71 unique 1 end arch wall_3_2 -y 10 +y 9 type 77 end arch woodfloor +y 10 +type 71 +unique 1 +end +arch woodfloor +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_1 +y 10 +end +arch woodfloor y 11 type 71 unique 1 @@ -274,9 +290,34 @@ type 71 unique 1 end arch stair_up +slaying novice_lounge +hp 1 +sp 10 x 1 y 8 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 1 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 1 +y 9 +type 71 +unique 1 +end arch woodfloor x 1 y 9 @@ -284,6 +325,16 @@ type 71 unique 1 is_buildable 1 end +arch wall_2_1_2 +x 1 +y 9 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +end arch woodfloor x 1 y 10 @@ -291,12 +342,24 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch woodfloor x 1 y 10 -type 77 +type 71 +unique 1 is_buildable 1 end +arch stair_down_2 +slaying journeyman_lounge +x 1 +y 10 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end arch woodfloor x 1 y 11 @@ -312,6 +375,34 @@ is_buildable 1 end arch woodfloor x 1 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 1 +y 11 +type 77 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 11 +end +arch woodfloor +x 1 y 12 type 71 unique 1 @@ -499,20 +590,78 @@ x 2 y 9 type 71 unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 2 +y 9 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 2 +y 9 +end +arch button_small +x 2 +y 10 +connected 9998 +end arch woodfloor x 2 y 10 type 71 unique 1 -is_buildable 1 +end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 2 +y 10 +level 100 +attacktype 0 +arch event_trigger +name LaughingSkulls Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch wall_3_3 x 2 -y 10 +y 11 type 77 -is_buildable 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch woodfloor x 2 @@ -521,12 +670,27 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_1_3 x 2 y 11 -type 77 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_2_1_2 +x 2 +y 11 +end arch woodfloor x 2 y 12 @@ -734,16 +898,47 @@ is_buildable 1 end arch woodfloor x 3 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 3 +y 9 +end +arch woodfloor +x 3 y 10 type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch dungeon_magic x 3 y 10 +end +arch grate_closed_2 +x 3 +y 10 +connected 9998 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 3 +y 11 type 77 -is_buildable 1 end arch woodfloor x 3 @@ -752,12 +947,23 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch woodfloor x 3 y 11 -type 77 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 3 +y 11 +end arch woodfloor x 3 y 12 @@ -937,20 +1143,20 @@ is_buildable 1 end arch woodfloor x 4 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_3_2 +arch wall_3_1 x 4 -y 8 +y 7 type 77 is_buildable 1 end arch woodfloor x 4 -y 9 +y 8 type 71 unique 1 is_buildable 1 @@ -962,11 +1168,30 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_2 +arch guard x 4 y 9 -type 77 -is_buildable 1 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name LaughingSkulls Journeyman +title Python +slaying /python/guilds/clearance.py +end end arch woodfloor x 4 @@ -975,12 +1200,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 4 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 4 y 11 @@ -988,7 +1207,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_3 x 4 y 11 type 77 @@ -1173,15 +1392,22 @@ is_buildable 1 end arch woodfloor x 5 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_1 +x 5 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor x 5 y 8 -type 77 +type 71 +unique 1 is_buildable 1 end arch woodfloor @@ -1191,12 +1417,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 9 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 10 @@ -1204,25 +1424,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_2 -x 5 -y 10 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 10 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 -x 5 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 11 @@ -1230,20 +1431,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 11 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 11 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 +arch wall_3_3 x 5 y 11 type 77 @@ -1433,7 +1621,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 8 type 77 @@ -1446,7 +1634,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 9 type 77 @@ -1459,7 +1647,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 10 type 77 @@ -4041,3 +4229,234 @@ x 17 y 17 type 77 end +arch blocked +x 18 +end +arch blocked +x 18 +y 1 +end +arch blocked +x 18 +y 2 +end +arch blocked +x 18 +y 3 +end +arch blocked +x 18 +y 4 +end +arch blocked +x 18 +y 5 +end +arch blocked +x 18 +y 6 +end +arch blocked +x 18 +y 7 +end +arch blocked +x 18 +y 8 +end +arch blocked +x 18 +y 9 +end +arch blocked +x 18 +y 10 +end +arch blocked +x 18 +y 11 +end +arch blocked +x 18 +y 12 +end +arch blocked +x 18 +y 13 +end +arch blocked +x 18 +y 14 +end +arch blocked +x 18 +y 15 +end +arch blocked +x 18 +y 16 +end +arch blocked +x 18 +y 17 +end +arch button_small +x 21 +connected 9991 +end +arch lightningwall_5 +x 21 +y 1 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 21 +y 1 +end +arch detector +slaying lightning +x 21 +y 2 +speed 1.0 +connected 9998 +end +arch lightningwall_5 +sp 1 +x 21 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 3 +end +arch lightningwall_5 +sp 1 +x 21 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 4 +end +arch lightningwall_5 +sp 1 +x 21 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 5 +end +arch lightningwall_5 +sp 1 +x 21 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 6 +end +arch lightningwall_5 +sp 1 +x 21 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 7 +end +arch lightningwall_5 +sp 1 +x 21 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 8 +end +arch lightningwall_5 +sp 1 +x 21 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 9 +end +arch lightningwall_5 +sp 1 +x 21 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 10 +end +arch lightningwall_5 +sp 1 +x 21 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 11 +end diff --git a/templates/guild/guildmaster_lounge b/templates/guild/guildmaster_lounge index 1f56012d3..076c1643b 100644 --- a/templates/guild/guildmaster_lounge +++ b/templates/guild/guildmaster_lounge @@ -1,5 +1,6 @@ arch map name GuildMaster's Lounge +reset_timeout 300 difficulty 1 width 18 height 18 @@ -7,6 +8,7 @@ enter_x 1 enter_y 8 msg Created: 2004-05-12 +Modified: 2009-12-12 perkins endmsg end arch woodfloor @@ -274,9 +276,28 @@ type 71 unique 1 end arch stair_up +slaying master_lounge +hp 1 +sp 10 x 1 y 8 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 1 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch woodfloor x 1 y 9 @@ -284,6 +305,22 @@ type 71 unique 1 is_buildable 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 1 +y 9 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch woodfloor x 1 y 10 @@ -494,6 +531,22 @@ type 71 unique 1 is_buildable 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 2 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch woodfloor x 2 y 9 @@ -501,6 +554,22 @@ type 71 unique 1 is_buildable 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 2 +y 9 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch woodfloor x 2 y 10 diff --git a/templates/guild/hallofjoining b/templates/guild/hallofjoining index 85b887822..2d6dd4d3e 100644 --- a/templates/guild/hallofjoining +++ b/templates/guild/hallofjoining @@ -1,9 +1,10 @@ arch map name The Grand Hall +reset_timeout 300 difficulty 1 region Template darkness 1 -width 20 +width 22 height 26 enter_x 15 enter_y 2 @@ -13,7 +14,7 @@ CF Java Map Editor Date: 6/14/2003 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 -Modified: 2008-05-30 Andreas Kirschbaum +Modified: 2009-12-12 perkins endmsg end arch flagstone @@ -859,10 +860,6 @@ arch swall_2_1_2 x 4 y 7 end -arch dungeon_magic -x 4 -y 7 -end arch flagstone x 4 y 8 @@ -2106,16 +2103,6 @@ x 9 y 11 unique 1 end -arch button_handle -name GuildMaster -msg -Throw this to make the person in the chair a guild master. -endmsg -x 9 -y 11 -connected 111 -activate_on_release 0 -end arch flagstone x 9 y 12 @@ -2164,19 +2151,13 @@ x 9 y 15 connected 5 end -arch marble +arch dungeon_magic x 9 y 16 end -arch trigger_marker -slaying GuildMaster -msg -You have one day's use of these facilities. -endmsg -food 504 +arch marble x 9 y 16 -connected 111 end arch chair_3.2 name Seat of Peril @@ -2185,10 +2166,6 @@ y 16 material 0 no_pick 1 end -arch dungeon_magic -x 9 -y 16 -end arch marble x 9 y 17 @@ -3919,11 +3896,6 @@ end arch flagstone x 16 y 12 -unique 1 -end -arch dungeon_magic -x 16 -y 12 end arch dwall_2_2_2 x 16 @@ -3932,57 +3904,42 @@ end arch flagstone x 16 y 13 +end +arch dwall_2_1_1 +x 16 +y 13 +end +arch flagstone +x 16 +y 14 +end +arch dwall_2_1_1 +x 16 +y 14 +end +arch flagstone +x 16 +y 15 +end +arch dwall_3_2 +x 16 +y 15 +end +arch flagstone +x 16 +y 16 unique 1 end arch dungeon_magic x 16 -y 13 +y 16 end arch swall_1_1 x 16 -y 13 +y 16 end arch dwall_1_2 x 16 -y 13 -end -arch flagstone -x 16 -y 14 -unique 1 -end -arch dungeon_magic -x 16 -y 14 -end -arch swall_2_1_1 -x 16 -y 14 -end -arch flagstone -x 16 -y 15 -unique 1 -end -arch dungeon_magic -x 16 -y 15 -end -arch swall_2_1_1 -x 16 -y 15 -end -arch flagstone -x 16 -y 16 -unique 1 -end -arch dungeon_magic -x 16 -y 16 -end -arch swall_2_1_1 -x 16 y 16 end arch flagstone @@ -4198,16 +4155,37 @@ arch dungeon_magic x 17 y 11 end +arch guard +x 17 +y 11 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE Novice +title Python +slaying /python/guilds/clearance.py +end +end arch flagstone x 17 y 12 unique 1 end -arch dungeon_magic -x 17 -y 12 -end -arch dwall_win2 +arch dwall_1_3 x 17 y 12 end @@ -4216,16 +4194,32 @@ x 17 y 13 unique 1 end +arch dungeon_magic +x 17 +y 13 +end arch flagstone x 17 y 14 unique 1 end +arch dungeon_magic +x 17 +y 14 +end arch flagstone x 17 y 15 unique 1 end +arch dungeon_magic +x 17 +y 15 +end +arch dwall_win2 +x 17 +y 15 +end arch flagstone x 17 y 16 @@ -4282,309 +4276,703 @@ end arch flagstone x 18 end -arch dwall_2_2_3 +arch dwall_2_1_2 x 18 end arch flagstone x 18 y 1 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 1 end arch flagstone x 18 y 2 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 2 end arch flagstone x 18 y 3 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 3 end arch flagstone x 18 y 4 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 4 end arch flagstone x 18 y 5 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 5 end arch flagstone x 18 y 6 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 6 end arch flagstone x 18 y 7 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 7 end arch flagstone x 18 y 8 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 8 end arch flagstone x 18 y 9 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 9 end arch flagstone x 18 y 10 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 10 end arch flagstone x 18 y 11 +unique 1 end -arch dwall_2_1_1 +arch dungeon_magic x 18 y 11 end +arch dungeon_magic +x 18 +y 12 +end +arch button_trigger +x 18 +y 12 +connected 9999 +end arch flagstone x 18 y 12 +unique 1 +end +arch odoorn2_closed_1 +x 18 +y 12 +connected 9999 +end +arch button_trigger +x 18 +y 13 +connected 9999 +end +arch flagstone +x 18 +y 13 +unique 1 +end +arch dungeon_magic +x 18 +y 13 +end +arch dungeon_magic +x 18 +y 14 +end +arch flagstone +x 18 +y 14 +unique 1 +end +arch stair_down_1 +slaying novice_lounge +x 18 +y 14 +end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 18 +y 14 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch flagstone +x 18 +y 15 +unique 1 +end +arch dungeon_magic +x 18 +y 15 +end +arch dwall_win2 +x 18 +y 15 +end +arch flagstone +x 18 +y 16 +unique 1 +end +arch flagstone +x 18 +y 17 +unique 1 +end +arch flagstone +x 18 +y 18 +unique 1 +end +arch flagstone +x 18 +y 19 +unique 1 +end +arch flagstone +x 18 +y 20 +unique 1 +end +arch flagstone +x 18 +y 21 +unique 1 +end +arch flagstone +x 18 +y 22 +unique 1 +end +arch flagstone +x 18 +y 23 +unique 1 +end +arch flagstone +x 18 +y 24 +unique 1 +end +arch flagstone +x 18 +y 25 +end +arch dwall_2_1_2 +x 18 +y 25 +end +arch flagstone +x 19 +end +arch dwall_2_2_3 +x 19 +end +arch flagstone +x 19 +y 1 +end +arch dwall_2_1_1 +x 19 +y 1 +end +arch flagstone +x 19 +y 2 +end +arch dwall_2_1_1 +x 19 +y 2 +end +arch flagstone +x 19 +y 3 +end +arch dwall_2_1_1 +x 19 +y 3 +end +arch flagstone +x 19 +y 4 +end +arch dwall_2_1_1 +x 19 +y 4 +end +arch flagstone +x 19 +y 5 +end +arch dwall_2_1_1 +x 19 +y 5 +end +arch flagstone +x 19 +y 6 +end +arch dwall_2_1_1 +x 19 +y 6 +end +arch flagstone +x 19 +y 7 +end +arch dwall_2_1_1 +x 19 +y 7 +end +arch flagstone +x 19 +y 8 +end +arch dwall_2_1_1 +x 19 +y 8 +end +arch flagstone +x 19 +y 9 +end +arch dwall_2_1_1 +x 19 +y 9 +end +arch flagstone +x 19 +y 10 +end +arch dwall_2_1_1 +x 19 +y 10 +end +arch flagstone +x 19 +y 11 +end +arch dwall_2_1_1 +x 19 +y 11 +end +arch flagstone +x 19 +y 12 +end +arch dwall_2_1_1 +x 19 +y 12 +end +arch flagstone +x 19 +y 13 +end +arch dwall_2_1_1 +x 19 +y 13 +end +arch flagstone +x 19 +y 14 +end +arch dwall_2_1_1 +x 19 +y 14 +end +arch flagstone +x 19 +y 15 end arch dwall_3_4 -x 18 -y 12 -end -arch flagstone -x 18 -y 13 -end -arch dwall_2_1_1 -x 18 -y 13 -end -arch flagstone -x 18 -y 14 -end -arch dwall_2_1_1 -x 18 -y 14 -end -arch flagstone -x 18 -y 15 -end -arch dwall_2_1_1 -x 18 +x 19 y 15 end arch flagstone -x 18 +x 19 y 16 end arch dwall_2_1_1 -x 18 +x 19 y 16 end arch flagstone -x 18 +x 19 y 17 end arch dwall_2_1_1 -x 18 +x 19 y 17 end arch flagstone -x 18 +x 19 y 18 end arch dwall_2_1_1 -x 18 +x 19 y 18 end arch flagstone -x 18 +x 19 y 19 end arch dwall_2_1_1 -x 18 +x 19 y 19 end arch flagstone -x 18 +x 19 y 20 end arch dwall_2_1_1 -x 18 +x 19 y 20 end arch flagstone -x 18 +x 19 y 21 end arch dwall_2_1_1 -x 18 +x 19 y 21 end arch flagstone -x 18 +x 19 y 22 end arch dwall_2_1_1 -x 18 +x 19 y 22 end arch flagstone -x 18 +x 19 y 23 end arch dwall_2_1_1 -x 18 +x 19 y 23 end arch flagstone -x 18 +x 19 y 24 end arch dwall_2_1_1 -x 18 +x 19 y 24 end arch flagstone -x 18 +x 19 y 25 end arch dwall_2_2_4 -x 18 +x 19 y 25 end arch blocked -x 19 +x 20 end arch blocked -x 19 +x 20 y 1 end arch blocked -x 19 +x 20 y 2 end arch blocked -x 19 +x 20 y 3 end arch blocked -x 19 +x 20 y 4 end arch blocked -x 19 +x 20 y 5 end arch blocked -x 19 +x 20 y 6 end arch blocked -x 19 +x 20 y 7 end arch blocked -x 19 +x 20 y 8 end arch blocked -x 19 +x 20 y 9 end arch blocked -x 19 +x 20 y 10 end arch blocked -x 19 +x 20 y 11 end arch blocked -x 19 +x 20 y 12 end arch blocked -x 19 +x 20 y 13 end arch blocked -x 19 +x 20 y 14 end arch blocked -x 19 +x 20 y 15 end arch blocked -x 19 +x 20 y 16 end arch blocked -x 19 +x 20 y 17 end arch blocked -x 19 +x 20 y 18 end arch blocked -x 19 +x 20 y 19 end arch blocked -x 19 +x 20 y 20 end arch blocked -x 19 +x 20 y 21 end arch blocked -x 19 +x 20 y 22 end arch blocked -x 19 +x 20 y 23 end arch blocked -x 19 +x 20 y 24 end arch blocked -x 19 +x 20 y 25 end +arch button_small +x 21 +connected 9991 +end +arch lightningwall_5 +x 21 +y 1 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 21 +y 1 +end +arch detector +slaying lightning +x 21 +y 2 +speed 1.0 +connected 9999 +end +arch lightningwall_5 +sp 1 +x 21 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 3 +end +arch lightningwall_5 +sp 1 +x 21 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 4 +end +arch lightningwall_5 +sp 1 +x 21 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 5 +end +arch lightningwall_5 +sp 1 +x 21 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 6 +end +arch lightningwall_5 +sp 1 +x 21 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 7 +end +arch lightningwall_5 +sp 1 +x 21 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 8 +end +arch lightningwall_5 +sp 1 +x 21 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 9 +end +arch lightningwall_5 +sp 1 +x 21 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 10 +end +arch lightningwall_5 +sp 1 +x 21 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 11 +end diff --git a/templates/guild/journeyman_lounge b/templates/guild/journeyman_lounge index b1fb3a988..1bee356f9 100644 --- a/templates/guild/journeyman_lounge +++ b/templates/guild/journeyman_lounge @@ -1,12 +1,14 @@ arch map name Journeyman's Lounge +reset_timeout 300 difficulty 1 -width 18 +width 22 height 18 enter_x 1 enter_y 8 msg Created: 2004-05-12 +Modified: 2009-12-12 perkins endmsg end arch woodfloor @@ -96,15 +98,29 @@ arch wall_2_1_1 y 9 end arch woodfloor -y 10 +y 9 type 71 unique 1 end arch wall_3_2 -y 10 +y 9 type 77 end arch woodfloor +y 10 +type 71 +unique 1 +end +arch woodfloor +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_1 +y 10 +end +arch woodfloor y 11 type 71 unique 1 @@ -274,9 +290,34 @@ type 71 unique 1 end arch stair_up +slaying guildman_lounge +hp 1 +sp 10 x 1 y 8 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 1 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 1 +y 9 +type 71 +unique 1 +end arch woodfloor x 1 y 9 @@ -284,6 +325,16 @@ type 71 unique 1 is_buildable 1 end +arch wall_2_1_2 +x 1 +y 9 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +end arch woodfloor x 1 y 10 @@ -291,12 +342,24 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch woodfloor x 1 y 10 -type 77 +type 71 +unique 1 is_buildable 1 end +arch stair_down_2 +slaying master_lounge +x 1 +y 10 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end arch woodfloor x 1 y 11 @@ -312,6 +375,34 @@ is_buildable 1 end arch woodfloor x 1 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 1 +y 11 +type 77 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 11 +end +arch woodfloor +x 1 y 12 type 71 unique 1 @@ -499,20 +590,78 @@ x 2 y 9 type 71 unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 2 +y 9 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 2 +y 9 +end +arch button_small +x 2 +y 10 +connected 9998 +end arch woodfloor x 2 y 10 type 71 unique 1 -is_buildable 1 +end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 2 +y 10 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch wall_3_3 x 2 -y 10 +y 11 type 77 -is_buildable 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch woodfloor x 2 @@ -521,12 +670,27 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_1_3 x 2 y 11 -type 77 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_2_1_2 +x 2 +y 11 +end arch woodfloor x 2 y 12 @@ -734,16 +898,47 @@ is_buildable 1 end arch woodfloor x 3 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 3 +y 9 +end +arch woodfloor +x 3 y 10 type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch dungeon_magic x 3 y 10 +end +arch grate_closed_2 +x 3 +y 10 +connected 9998 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 3 +y 11 type 77 -is_buildable 1 end arch woodfloor x 3 @@ -752,12 +947,23 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch woodfloor x 3 y 11 -type 77 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 3 +y 11 +end arch woodfloor x 3 y 12 @@ -937,20 +1143,20 @@ is_buildable 1 end arch woodfloor x 4 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_3_2 +arch wall_3_1 x 4 -y 8 +y 7 type 77 is_buildable 1 end arch woodfloor x 4 -y 9 +y 8 type 71 unique 1 is_buildable 1 @@ -962,11 +1168,30 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_2 +arch guard x 4 y 9 -type 77 -is_buildable 1 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE Master +title Python +slaying /python/guilds/clearance.py +end end arch woodfloor x 4 @@ -975,12 +1200,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 4 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 4 y 11 @@ -988,7 +1207,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_3 x 4 y 11 type 77 @@ -1173,15 +1392,22 @@ is_buildable 1 end arch woodfloor x 5 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_1 +x 5 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor x 5 y 8 -type 77 +type 71 +unique 1 is_buildable 1 end arch woodfloor @@ -1191,12 +1417,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 9 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 10 @@ -1204,25 +1424,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_2 -x 5 -y 10 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 10 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 -x 5 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 11 @@ -1230,20 +1431,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 11 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 11 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 +arch wall_3_3 x 5 y 11 type 77 @@ -1433,7 +1621,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 8 type 77 @@ -1446,7 +1634,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 9 type 77 @@ -1459,7 +1647,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 10 type 77 @@ -4041,3 +4229,234 @@ x 17 y 17 type 77 end +arch blocked +x 18 +end +arch blocked +x 18 +y 1 +end +arch blocked +x 18 +y 2 +end +arch blocked +x 18 +y 3 +end +arch blocked +x 18 +y 4 +end +arch blocked +x 18 +y 5 +end +arch blocked +x 18 +y 6 +end +arch blocked +x 18 +y 7 +end +arch blocked +x 18 +y 8 +end +arch blocked +x 18 +y 9 +end +arch blocked +x 18 +y 10 +end +arch blocked +x 18 +y 11 +end +arch blocked +x 18 +y 12 +end +arch blocked +x 18 +y 13 +end +arch blocked +x 18 +y 14 +end +arch blocked +x 18 +y 15 +end +arch blocked +x 18 +y 16 +end +arch blocked +x 18 +y 17 +end +arch button_small +x 21 +connected 9991 +end +arch lightningwall_5 +x 21 +y 1 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 21 +y 1 +end +arch detector +slaying lightning +x 21 +y 2 +speed 1.0 +connected 9998 +end +arch lightningwall_5 +sp 1 +x 21 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 3 +end +arch lightningwall_5 +sp 1 +x 21 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 4 +end +arch lightningwall_5 +sp 1 +x 21 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 5 +end +arch lightningwall_5 +sp 1 +x 21 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 6 +end +arch lightningwall_5 +sp 1 +x 21 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 7 +end +arch lightningwall_5 +sp 1 +x 21 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 8 +end +arch lightningwall_5 +sp 1 +x 21 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 9 +end +arch lightningwall_5 +sp 1 +x 21 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 10 +end +arch lightningwall_5 +sp 1 +x 21 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 11 +end diff --git a/templates/guild/mainfloor b/templates/guild/mainfloor index ae1970eb0..3aebcb323 100644 --- a/templates/guild/mainfloor +++ b/templates/guild/mainfloor @@ -1,9 +1,9 @@ arch map name Main Floor -reset_timeout 7200 +reset_timeout 300 difficulty 1 region Template -width 36 +width 41 height 30 enter_x 15 enter_y 28 @@ -15,7 +15,7 @@ Avion Date: 11/19/2004 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 -Modified: 2009-07-12 Andreas Kirschbaum +Modified: 2009-12-12 perkins endmsg outdoor 1 end @@ -664,12 +664,6 @@ arch dungeon_magic x 2 y 24 end -arch creator -other_arch flagstone -x 2 -y 24 -connected 76 -end arch goldfloor name drop 30,000 rubies for a forge slaying ruby @@ -1032,6 +1026,15 @@ x 4 y 4 unique 1 end +arch button_lever +name BBQ Reset Access +msg +Pull to let unwanted guests out. +endmsg +x 4 +y 4 +connected 7200 +end arch dungeon_magic x 4 y 5 @@ -1050,6 +1053,7 @@ x 4 y 5 connected 999 arch event_apply +name GUILD_TEMPLATE title Python slaying /python/guilds/guild_dues.py end @@ -1087,6 +1091,7 @@ friendly 1 sleep 0 stand_still 1 arch event_say +name GUILD_TEMPLATE title Python slaying /python/guilds/guild_dues.py end @@ -1226,10 +1231,10 @@ y 21 unique 1 end arch check_floor -slaying Tool_Token +slaying GUILD_TEMPLATE_Tool_Token x 4 y 21 -connected 73 +connected 73000 end arch grass x 4 @@ -1640,16 +1645,10 @@ end arch woodfloor x 6 y 4 -unique 1 -end -arch check_floor -slaying GuildMaster -x 6 -y 4 -connected 79 -move_block all +unique 0 end arch grate_closed_2 +name Guild Master Area Gate x 6 y 4 connected 79 @@ -1838,7 +1837,7 @@ x 6 y 21 type 17 invisible 1 -connected 73 +connected 73000 end arch grass x 6 @@ -1929,11 +1928,17 @@ end arch woodfloor x 7 y 3 -unique 1 +unique 0 end arch statue2 +name Guard Statue x 7 y 3 +arch event_say +name GUILD_TEMPLATE GuildMaster +title Python +slaying /python/guilds/clearance.py +end end arch dungeon_magic x 7 @@ -1944,12 +1949,6 @@ x 7 y 4 unique 1 end -arch check_floor -slaying GuildMaster -x 7 -y 4 -connected 79 -end arch dungeon_magic x 7 y 5 @@ -1960,6 +1959,7 @@ y 5 unique 1 end arch statue2 +name Guard Statue x 7 y 5 end @@ -2471,12 +2471,6 @@ arch dungeon_magic x 8 y 24 end -arch creator -other_arch flagstone -x 8 -y 24 -connected 76 -end arch goldfloor name drop 30,000 rubies for a workbench slaying ruby @@ -3340,6 +3334,7 @@ end arch grass x 11 y 21 +unique 1 end arch grass x 11 @@ -3523,7 +3518,7 @@ arch creator other_arch woodfloor x 12 y 10 -connected 60 +connected 9999 end arch dungeon_magic x 12 @@ -3538,6 +3533,21 @@ y 10 connected 9999 unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 12 +y 11 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 12 y 11 @@ -3556,6 +3566,19 @@ x 12 y 12 unique 1 end +arch rune_heal +hp 100000 +x 12 +y 12 +invisible 0 +arch spell_heal +end +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 12 y 13 @@ -3578,8 +3601,14 @@ arch book_clasp name Owners Guide msg Welcome to your new Guild House! -A few things to note, bugs should be reported to jehloq@yahoo.com. -In the upper left corner, there are two levers, the left one pays out fees and dues, fees are dropped onto the floor and dues go straight into your inventory. The one on the right sets what happens if a non member tries to enter. In the left position, they are held in a prison and must wait for the guild master, get a DM to help, or step into chaos long enough to word of recall out. In the right position, it simply throws them out of the entry portal. The work rooms are not player unique maps, so multiple people can enter the same work room. The maps also do not reset, there is a small fee for using the maps, that the guild masters collect, use the funds from it to replace broken equipment. To control who has access to the rooms, in the basement there are tokens, one of each kind is free, further ones must be purchased at ten gold apeice. Once in a while the mechanish malfunctions and eats your money, just like a real vending machine, if this happns, sorry, just put more in and it should work. You may buy four aditional tokens per map reset, if you buy a fifth, it will refund your money and tell you it is sold out, putting more money in is simply eaten by the machine. Questions or comments, please send them to jehloq@yahoo.com +A few things to note, bugs should be reported to alestan@meflin.com. +In the upper left corner, there are two levers, the left one pays out fees and dues, fees are dropped onto the floor and dues go straight into your inventory. The one on the right sets what happens if a non member tries to enter. In the left position, they are held in a prison and must wait for the guild master, get a DM to help, or step into chaos long enough to word of recall out. In the right position, it simply throws them out of the entry portal. The work rooms are not player unique maps, so multiple people can enter the same work room. The maps also do not reset, there is a small fee for using the maps, that the guild masters collect, use the funds from it to replace broken equipment. To control who has access to the rooms, in the basement there are tokens, one of each kind is free, further ones must be purchased at ten gold apeice. Once in a while the mechanish malfunctions and eats your money, just like a real vending machine, if this happns, sorry, just put more in and it should work. You may buy four aditional tokens per map reset, if you buy a fifth, it will refund your money and tell you it is sold out, putting more money in is simply eaten by the machine. Questions or comments, please send them to alestan@meflin.com + +New in this update: Security system for the guild. It's not perfect yet, but it catches most people trying to sneak into the guild. Guild Storage room, the old storage hall is set up, thanks to Chad, to be a sorting/staging room. It is not secure, so it is suggested that valueable items are not left unattended in it. Also, if the gates are up in front of the stairs and you jump down one of the holes, a guildmaster will have to come rescue you because there is no way out. New guild storage area is added under the guild. The entrance is through the basement to the north. This one splits up whos allowed to enter by guild rank. Play around with it, most of the bugs should have been fixed already. + +Known bugs: Some areas may be accessible by dimension door that should not be accessable. Some of the floor in the storage rooms beneath the guild hall may not be buildable. Those are the major ones. + +P.S. This latest version now includes a security system. Anyone caught on the mainfloor who does not belong is jailed for a random length of time between 15 minutes and four hours, or life. Anyone caught entering the GM only area in the guild_hq, will be given one of 9 random curses. At present, they must see a DM to have it removed. Alestan endmsg @@ -3662,6 +3691,7 @@ end arch grass x 12 y 21 +unique 1 end arch dungeon_magic x 12 @@ -3954,6 +3984,21 @@ x 13 y 19 unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 13 +y 20 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 13 y 20 @@ -3966,7 +4011,7 @@ end arch woodfloor x 13 y 20 -unique 1 +unique 0 end arch mdoor_closed_1 x 13 @@ -3989,6 +4034,7 @@ end arch footpath_2_1_1 x 13 y 21 +unique 1 end arch dungeon_magic x 13 @@ -3997,6 +4043,7 @@ end arch footpath_2_2_1 x 13 y 22 +unique 1 end arch dungeon_magic x 13 @@ -4242,10 +4289,25 @@ x 14 y 19 unique 1 end +arch lightningwall_5 +sp 7 +x 14 +y 20 +speed 0.1 +invisible 1 +arch spell_strength +duration 1 +arch event_apply +name GUILD_TEMPATE Initiate +title Python +slaying /python/guilds/arrest.py +end +end +end arch woodfloor x 14 y 20 -unique 1 +unique 0 end arch dwall_1_4 x 14 @@ -4265,8 +4327,9 @@ arch creator other_arch grass x 14 y 21 -connected 81 +connected 122 arch grass +unique 1 end end arch goldfloor @@ -4285,6 +4348,7 @@ end arch footpath_2_1_2 x 14 y 22 +unique 1 end arch dungeon_magic x 14 @@ -4334,6 +4398,15 @@ arch grass x 14 y 26 end +arch sign +name Posted: No Tresspassing +msg +Violators will be jailed, if they live that long. +In all seriousness, permenant character damage can result from trying to break into the guild. +endmsg +x 14 +y 26 +end arch dungeon_magic x 14 y 27 @@ -4569,7 +4642,7 @@ move_block swim boat unique 1 end arch check_floor -slaying Kennel_Token +slaying GUILD_TEMPLATE_Kennel_Token x 15 y 21 connected 998 @@ -4581,16 +4654,12 @@ end arch footpath_2_2_3 x 15 y 22 +unique 1 end arch dungeon_magic x 15 y 23 end -arch pedestal_trigger -x 15 -y 23 -connected 454 -end arch magic_mouth msg Guardian says: Goodbye my child. @@ -4598,19 +4667,15 @@ endmsg x 15 y 23 end +arch button_small +x 15 +y 23 +connected 99919 +end arch footpath_2_1_1 x 15 y 23 -end -arch teleporter -name leave_guild -hp 15 -sp 26 -x 15 -y 23 -speed 0.0 -invisible 1 -connected 454 +unique 0 end arch dungeon_magic x 15 @@ -4620,11 +4685,10 @@ arch footpath_2_1_1 x 15 y 24 end -arch dun0 -name Guardian -face guildmaste.111 +arch grate_closed_1 x 15 y 24 +connected 454 end arch dungeon_magic x 15 @@ -4689,9 +4753,9 @@ x 15 y 29 end arch exit -slaying /Edit/This/Exit/Path -hp 13 -sp 20 +slaying ../../lone_town/town +hp 12 +sp 17 x 15 y 29 invisible 1 @@ -4999,6 +5063,10 @@ arch river_ne-w x 16 y 25 end +arch footpath_2_1_1 +x 16 +y 26 +end arch dungeon_magic x 16 y 26 @@ -5007,6 +5075,12 @@ arch grass x 16 y 26 end +arch dun0 +name Guardian +face guildmaste.111 +x 16 +y 26 +end arch dungeon_magic x 16 y 27 @@ -5383,10 +5457,10 @@ y 4 unique 1 end arch check_floor -slaying Gard_Token +slaying GUILD_TEMPLATE_Gard_Token x 18 y 4 -connected 72 +connected 72000 end arch dungeon_magic x 18 @@ -5715,6 +5789,21 @@ y 21 move_block swim boat unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 18 +y 21 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 18 y 22 @@ -5835,10 +5924,26 @@ arch dwall_1_2 x 19 y 3 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 19 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch woodfloor x 19 y 4 -unique 1 +unique 0 end arch igate_closed_2 x 19 @@ -6163,7 +6268,7 @@ end arch pedestal_trigger x 20 y 4 -connected 72 +connected 72000 end arch dungeon_magic x 20 @@ -6425,6 +6530,10 @@ arch swall_2_1_2 x 20 y 29 end +arch button_small +x 21 +connected 9991 +end arch dungeon_magic x 21 end @@ -6621,6 +6730,7 @@ end arch evergreen x 21 y 22 +move_block all end arch dungeon_magic x 21 @@ -6630,6 +6740,18 @@ arch grass x 21 y 23 end +arch button_lever +name BBQ Reset. +slaying guild_bbq +msg +Careful, make sure no one you care about is in there. +endmsg +hp 0 +sp 1 +x 21 +y 23 +type 66 +end arch dungeon_magic x 21 y 24 @@ -6903,43 +7025,45 @@ end arch grass x 22 y 22 -move_block swim boat -unique 1 end arch dungeon_magic x 22 y 22 end -arch creator -other_arch grass -x 22 -y 22 -connected 779 -arch grass -end -end -arch goldfloor -name drop 30,000 rubies for stove -slaying ruby -food 30000 -x 22 -y 22 -connected 110 -unique 1 -end -arch grass -x 22 -y 23 -end -arch dungeon_magic -x 22 -y 23 -end arch ytree_2 x 22 -y 23 +y 22 move_block all end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 22 +y 23 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate +title Python +slaying /python/guilds/arrest.py +end +end +arch dungeon_magic +x 22 +y 23 +end +arch grass +x 22 +y 23 +end +arch igate_closed_2 +x 22 +y 23 +connected 7200 +end arch dungeon_magic x 22 y 24 @@ -7215,7 +7339,12 @@ end arch flagstone x 23 y 24 -unique 1 +unique 0 +end +arch pedestal_trigger +x 23 +y 24 +connected 112 end arch ggate_closed x 23 @@ -7742,6 +7871,33 @@ arch grass x 25 y 22 end +arch grass +x 25 +y 22 +move_block swim boat +unique 1 +end +arch dungeon_magic +x 25 +y 22 +end +arch creator +other_arch grass +x 25 +y 22 +connected 110 +arch grass +end +end +arch goldfloor +name drop 30,000 rubies for stove +slaying ruby +food 30000 +x 25 +y 22 +connected 110 +unique 1 +end arch dungeon_magic x 25 y 23 @@ -7749,7 +7905,6 @@ end arch grass x 25 y 23 -unique 1 end arch trigger_marker slaying guild_bbq111 @@ -7759,7 +7914,7 @@ endmsg food 504 x 25 y 23 -connected 111 +connected 11100 end arch dungeon_magic x 25 @@ -9049,15 +9204,6 @@ y 2 speed 0.0 connected 130 end -arch altar_trigger -name Drop 100 platinum to enter -slaying platinacoin -food 100 -x 30 -y 2 -last_sp 1 -connected 131 -end arch teleporter hp 9 sp 23 @@ -9066,15 +9212,6 @@ y 3 speed 0.0 connected 120 end -arch altar_trigger -name Drop 100 platinum to enter -slaying platinacoin -food 100 -x 30 -y 3 -last_sp 1 -connected 121 -end arch teleporter hp 25 sp 23 @@ -9090,7 +9227,7 @@ food 100 x 30 y 4 last_sp 1 -connected 111 +connected 11100 end arch grass x 30 @@ -9359,14 +9496,6 @@ arch grass x 31 y 4 end -arch teleporter -hp 4 -sp 21 -x 31 -y 4 -speed 0.0 -connected 60 -end arch pedestal x 31 y 4 @@ -9377,14 +9506,6 @@ arch grass x 31 y 5 end -arch teleporter -hp 18 -sp 4 -x 31 -y 5 -speed 0.0 -connected 81 -end arch pedestal_trigger x 31 y 5 @@ -9449,6 +9570,8 @@ arch lightningwall_5 x 31 y 9 speed 100 +arch spell_sm_lightning +end end arch woodfloor2 x 31 @@ -9615,25 +9738,7 @@ other_arch jadecoin hp -1 x 32 y 1 -connected 111 -lifesave 1 -activate_on_release 0 -end -arch creator -other_arch jadecoin -hp -1 -x 32 -y 1 -connected 13100 -lifesave 1 -activate_on_release 0 -end -arch creator -other_arch jadecoin -hp -1 -x 32 -y 1 -connected 12100 +connected 11100 lifesave 1 activate_on_release 0 end @@ -9645,6 +9750,32 @@ y 1 speed 0.0 connected 999 end +arch grass +x 32 +y 3 +end +arch button_lever +name The Big Lever +msg +Pull to establish this guild. +endmsg +x 32 +y 3 +connected 77 +end +arch grass +x 32 +y 4 +end +arch button_lever +name bbq +msg +Pull to establish this guild. +endmsg +x 32 +y 4 +connected 110 +end arch blocked x 32 y 8 @@ -9667,6 +9798,10 @@ y 12 end arch blocked x 32 +y 13 +end +arch blocked +x 32 y 14 end arch major_chaos @@ -9844,7 +9979,7 @@ y 28 connected 334 activate_on_release 0 arch event_apply -name TEST +name PrupleButterfly title Python slaying /python/guilds/guildbuy.py end @@ -9904,6 +10039,8 @@ arch lightningwall_5 x 33 y 9 speed 100 +arch spell_sm_lightning +end end arch grass x 33 @@ -10102,6 +10239,8 @@ end arch lightningwall_5 x 34 speed -0.2 +arch spell_sm_lightning +end end arch woodfloor2 x 34 @@ -10165,10 +10304,6 @@ arch blocked x 34 y 14 end -arch magma -x 34 -y 15 -end arch blocked x 34 y 15 @@ -10182,6 +10317,7 @@ x 34 y 16 end arch exit +slaying ./mainfloor msg Say Sorry! endmsg @@ -10189,6 +10325,7 @@ hp 32 sp 16 x 34 y 16 +move_on walk end arch blocked x 34 @@ -10242,56 +10379,294 @@ arch dun_2_2_4 x 34 y 29 end -arch blocked +arch lightningwall_5 +x 35 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 x 35 end -arch blocked +arch detector +slaying lightning x 35 y 1 +speed 1.0 +connected 454 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 2 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 2 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 3 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 3 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 4 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 4 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 5 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 5 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 6 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 6 end -arch blocked +arch lightningwall_5 +sp 1 +x 35 +y 7 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 7 end arch blocked x 35 +y 7 +end +arch lightningwall_5 +sp 1 +x 35 +y 8 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 y 8 end -arch magma +arch lightningwall_5 +sp 1 +x 35 +y 9 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 9 +end +arch lightningwall_5 +sp 1 +x 35 +y 10 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 10 +end +arch lightningwall_5 +x 35 +y 12 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 35 +y 12 +end +arch detector +slaying lightning +x 35 +y 13 +speed 1.0 +connected 73 +end +arch lightningwall_5 +sp 1 +x 35 +y 14 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 14 +end +arch lightningwall_5 +sp 1 +x 35 +y 15 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 x 35 y 15 end -arch blocked +arch lightningwall_5 +sp 1 x 35 -y 15 +y 16 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning end -arch blocked +end +arch director_1 x 35 y 16 end -arch blocked +arch lightningwall_5 +sp 1 x 35 y 17 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 17 +end +arch lightningwall_5 +sp 1 +x 35 +y 18 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 18 +end +arch lightningwall_5 +sp 1 +x 35 +y 19 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 19 +end +arch lightningwall_5 +sp 1 +x 35 +y 20 +speed 0.0 +level 100 +connected 73000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 35 +y 20 +end +arch button_small +x 35 +y 24 +connected 99919 end arch blocked x 35 @@ -10317,3 +10692,926 @@ arch blocked x 35 y 29 end +arch woodfloor2 +x 36 +end +arch woodfloor2 +x 36 +y 1 +end +arch detector +slaying lightning +x 36 +y 1 +speed 1.0 +connected 1 +end +arch blocked +x 36 +y 2 +end +arch pit_open +hp 9 +sp 3 +x 36 +y 3 +end +arch pit_open +hp 11 +sp 9 +x 36 +y 4 +end +arch pit_open +hp 16 +sp 14 +x 36 +y 5 +end +arch pit_open +hp 24 +sp 19 +x 36 +y 6 +end +arch pit_open +hp 3 +sp 18 +x 36 +y 7 +end +arch blocked +x 36 +y 8 +end +arch creator +x 36 +y 10 +connected 1 +lifesave 1 +arch rune_restoration +msg + +endmsg +animation trap_blades +Cha 200000 +hp 1000 +dam 0 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate +title Python +slaying /python/guilds/arrest.py +end +end +end +arch pit_open +hp 40 +sp 14 +x 36 +y 10 +end +arch dungeon_magic +x 36 +y 12 +end +arch grass +x 36 +y 12 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 12 +move_on all +end +arch dungeon_magic +x 36 +y 13 +end +arch grass +x 36 +y 13 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 13 +move_on all +end +arch dungeon_magic +x 36 +y 14 +end +arch grass +x 36 +y 14 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 14 +move_on all +end +arch dungeon_magic +x 36 +y 15 +end +arch grass +x 36 +y 15 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 15 +move_on all +end +arch dungeon_magic +x 36 +y 16 +end +arch grass +x 36 +y 16 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 16 +move_on all +end +arch dungeon_magic +x 36 +y 17 +end +arch grass +x 36 +y 17 +end +arch exit +slaying ./mainfloor +msg +Say Sorry! +endmsg +hp 32 +sp 16 +x 36 +y 17 +move_on all +end +arch button_small +x 36 +y 20 +connected 99919 +end +arch blocked +x 37 +y 2 +end +arch pit_open +hp 14 +sp 5 +x 37 +y 3 +end +arch pit_open +hp 16 +sp 9 +x 37 +y 4 +end +arch pit_open +hp 24 +sp 14 +x 37 +y 5 +end +arch pit_open +hp 15 +sp 22 +x 37 +y 6 +end +arch pit_open +hp 9 +sp 5 +x 37 +y 7 +end +arch blocked +x 37 +y 8 +end +arch blocked +x 37 +y 11 +end +arch blocked +x 37 +y 12 +end +arch blocked +x 37 +y 13 +end +arch blocked +x 37 +y 14 +end +arch blocked +x 37 +y 15 +end +arch blocked +x 37 +y 16 +end +arch blocked +x 37 +y 17 +end +arch lightningwall_5 +x 37 +y 18 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 37 +y 18 +end +arch detector +slaying lightning +x 37 +y 19 +speed 1.0 +connected 79 +end +arch lightningwall_5 +sp 1 +x 37 +y 20 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 20 +end +arch lightningwall_5 +sp 1 +x 37 +y 21 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 21 +end +arch lightningwall_5 +sp 1 +x 37 +y 22 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 22 +end +arch lightningwall_5 +sp 1 +x 37 +y 23 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 23 +end +arch blocked +x 37 +y 24 +end +arch lightningwall_5 +sp 1 +x 37 +y 24 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 24 +end +arch blocked +x 37 +y 25 +end +arch lightningwall_5 +sp 1 +x 37 +y 25 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 25 +end +arch blocked +x 37 +y 26 +end +arch lightningwall_5 +sp 1 +x 37 +y 26 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 26 +end +arch lightningwall_5 +sp 1 +x 37 +y 27 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 27 +end +arch lightningwall_5 +sp 1 +x 37 +y 28 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 37 +y 28 +end +arch blocked +x 38 +y 2 +end +arch pit_open +hp 19 +sp 5 +x 38 +y 3 +end +arch pit_open +hp 24 +sp 8 +x 38 +y 4 +end +arch pit_open +hp 6 +sp 19 +x 38 +y 5 +end +arch pit_open +hp 13 +sp 17 +x 38 +y 6 +end +arch pit_open +hp 12 +sp 7 +x 38 +y 7 +end +arch blocked +x 38 +y 8 +end +arch blocked +x 38 +y 11 +end +arch blocked +x 38 +y 12 +end +arch blocked +x 38 +y 13 +end +arch blocked +x 38 +y 14 +end +arch blocked +x 38 +y 15 +end +arch blocked +x 38 +y 16 +end +arch blocked +x 38 +y 17 +end +arch lightningwall_5 +x 38 +y 20 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 38 +y 20 +end +arch detector +slaying lightning +x 38 +y 21 +speed 1.0 +connected 72 +end +arch lightningwall_5 +sp 1 +x 38 +y 22 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 22 +end +arch lightningwall_5 +sp 1 +x 38 +y 23 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 23 +end +arch lightningwall_5 +sp 1 +x 38 +y 24 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 24 +end +arch lightningwall_5 +sp 1 +x 38 +y 25 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 25 +end +arch lightningwall_5 +sp 1 +x 38 +y 26 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 26 +end +arch lightningwall_5 +sp 1 +x 38 +y 27 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 27 +end +arch lightningwall_5 +sp 1 +x 38 +y 28 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 28 +end +arch lightningwall_5 +sp 1 +x 38 +y 29 +speed 0.0 +level 100 +connected 72000 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 29 +end +arch blocked +x 39 +end +arch blocked +x 39 +y 1 +end +arch blocked +x 39 +y 2 +end +arch pit_open +hp 24 +sp 3 +x 39 +y 3 +end +arch pit_open +hp 6 +sp 14 +x 39 +y 4 +end +arch pit_open +hp 11 +sp 19 +x 39 +y 5 +end +arch pit_open +hp 16 +sp 17 +x 39 +y 6 +end +arch pit_open +hp 15 +sp 22 +x 39 +y 7 +end +arch blocked +x 39 +y 8 +end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 39 +y 9 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch blocked +x 39 +y 11 +end +arch blocked +x 39 +y 12 +end +arch grass +x 39 +y 13 +end +arch teleporter +name ancient pupland portal +hp 4 +sp 3 +x 39 +y 13 +speed 1 +end +arch grass +x 39 +y 14 +end +arch teleporter +name ancient pupland portal +hp 4 +sp 4 +x 39 +y 14 +speed 1 +end +arch grass +x 39 +y 15 +end +arch teleporter +name ancient pupland portal +hp 4 +sp 5 +x 39 +y 15 +speed 1 +end +arch blocked +x 39 +y 16 +end +arch blocked +x 39 +y 17 +end +arch blocked +x 39 +y 18 +end +arch blocked +x 39 +y 19 +end +arch blocked +x 39 +y 20 +end +arch blocked +x 39 +y 21 +end +arch blocked +x 39 +y 22 +end +arch blocked +x 39 +y 23 +end +arch blocked +x 39 +y 24 +end +arch blocked +x 40 +y 2 +end +arch pit_open +hp 6 +sp 9 +x 40 +y 3 +end +arch pit_open +hp 11 +sp 14 +x 40 +y 4 +end +arch pit_open +hp 16 +sp 19 +x 40 +y 5 +end +arch pit_open +hp 8 +sp 17 +x 40 +y 6 +end +arch pit_open +hp 15 +sp 22 +x 40 +y 7 +end +arch blocked +x 40 +y 8 +end +arch blocked +x 40 +y 11 +end +arch blocked +x 40 +y 12 +end +arch grass +x 40 +y 13 +end +arch teleporter +name ancient pupland portal +hp 5 +sp 5 +x 40 +y 13 +speed 1 +end +arch grass +x 40 +y 14 +end +arch teleporter +name ancient pupland portal +hp 5 +sp 4 +x 40 +y 14 +speed 1 +end +arch grass +x 40 +y 15 +end +arch teleporter +name ancient pupland portal +hp 5 +sp 3 +x 40 +y 15 +speed 1 +end +arch blocked +x 40 +y 16 +end +arch blocked +x 40 +y 17 +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 1 +x 40 +y 18 +move_block all +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 3 +x 40 +y 19 +move_block all +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 5 +x 40 +y 20 +move_block all +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 9 +x 40 +y 21 +move_block all +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 11 +x 40 +y 22 +move_block all +end +arch teleporter +slaying /scorn/misc/jail +hp 14 +sp 13 +x 40 +y 23 +move_block all +end +arch blocked +x 40 +y 24 +end diff --git a/templates/guild/master_lounge b/templates/guild/master_lounge new file mode 100644 index 000000000..ec8bfab1a --- /dev/null +++ b/templates/guild/master_lounge @@ -0,0 +1,4430 @@ +arch map +name Masters' Lounge +reset_timeout 300 +difficulty 1 +width 22 +height 18 +enter_x 1 +enter_y 8 +msg +Created: 2004-05-12 +Modified: 2009-05-08 Logan Perkins +endmsg +end +arch woodfloor +type 71 +unique 1 +end +arch wall_2_2_2 +type 77 +end +arch woodfloor +y 1 +type 71 +unique 1 +end +arch wall_3_2 +y 1 +type 77 +end +arch woodfloor +y 2 +type 71 +unique 1 +end +arch wall_3_2 +y 2 +type 77 +end +arch woodfloor +y 3 +type 71 +unique 1 +end +arch wall_3_2 +y 3 +type 77 +end +arch woodfloor +y 4 +type 71 +unique 1 +end +arch wall_3_2 +y 4 +type 77 +end +arch woodfloor +y 5 +type 71 +unique 1 +end +arch wall_3_2 +y 5 +type 77 +end +arch woodfloor +y 6 +type 71 +unique 1 +end +arch wall_3_2 +y 6 +type 77 +end +arch woodfloor +y 7 +type 71 +unique 1 +end +arch wall_3_2 +y 7 +type 77 +end +arch woodfloor +y 8 +type 71 +end +arch wall_2_1_1 +y 8 +end +arch woodfloor +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_1 +y 9 +end +arch woodfloor +y 9 +type 71 +unique 1 +end +arch wall_3_2 +y 9 +type 77 +end +arch woodfloor +y 10 +type 71 +unique 1 +end +arch woodfloor +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_1 +y 10 +end +arch woodfloor +y 11 +type 71 +unique 1 +end +arch wall_3_2 +y 11 +type 77 +end +arch woodfloor +y 12 +type 71 +unique 1 +end +arch wall_3_2 +y 12 +type 77 +end +arch woodfloor +y 13 +type 71 +unique 1 +end +arch wall_3_2 +y 13 +type 77 +end +arch woodfloor +y 14 +type 71 +unique 1 +end +arch wall_3_2 +y 14 +type 77 +end +arch woodfloor +y 15 +type 71 +unique 1 +end +arch wall_3_2 +y 15 +type 77 +end +arch woodfloor +y 16 +type 71 +unique 1 +end +arch wall_3_2 +y 16 +type 77 +end +arch woodfloor +y 17 +type 71 +unique 1 +end +arch wall_2_2_1 +y 17 +type 77 +end +arch woodfloor +x 1 +type 71 +unique 1 +end +arch wall_3_3 +x 1 +type 77 +end +arch woodfloor +x 1 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 1 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 8 +type 71 +unique 1 +end +arch stair_up +slaying journeyman_lounge +hp 1 +sp 10 +x 1 +y 8 +end +arch woodfloor +x 1 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 9 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch stair_down_2 +slaying guildmaster_lounge +x 1 +y 10 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 1 +y 11 +type 77 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 11 +end +arch woodfloor +x 1 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 1 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 1 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 1 +y 17 +type 77 +end +arch woodfloor +x 2 +type 71 +unique 1 +end +arch wall_3_3 +x 2 +type 77 +end +arch woodfloor +x 2 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 2 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 2 +y 9 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 2 +y 9 +end +arch button_small +x 2 +y 10 +connected 9998 +end +arch woodfloor +x 2 +y 10 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 2 +y 11 +type 77 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 2 +y 11 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 2 +y 11 +end +arch woodfloor +x 2 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 2 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 2 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 2 +y 17 +type 77 +end +arch woodfloor +x 3 +type 71 +unique 1 +end +arch wall_3_3 +x 3 +type 77 +end +arch woodfloor +x 3 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 3 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch book_clasp +name Note to the Lucky Owners +msg +As you are certainly aware, we at Guild Houses Inc. take great care of our customer's satisfaction. +Unfortunately this is not the case of all our suppliers. +Thus the roof of the Big Storage Room collapsed last time a dragon flew too low. +While we sue the indelicate supplier who made the roof up to his last silver coin, and the dragon to its last scale, we decided to let you, the Customer, pay for the repairs. You will, this way, be able to customize this Big Storage Room to your tastes, and pay our partner organization Acme Inc. many building fees. +We hope you will enjoy building this place! +endmsg +x 3 +y 8 +value 0 +identified 1 +end +arch woodfloor +x 3 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 3 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 3 +y 9 +end +arch woodfloor +x 3 +y 10 +type 71 +unique 0 +is_buildable 1 +end +arch dungeon_magic +x 3 +y 10 +end +arch grate_closed_2 +x 3 +y 10 +connected 9998 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 3 +y 11 +type 77 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_1_3 +x 3 +y 11 +end +arch woodfloor +x 3 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 3 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 3 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 3 +y 17 +type 77 +end +arch woodfloor +x 4 +type 71 +unique 1 +end +arch wall_3_3 +x 4 +type 77 +end +arch woodfloor +x 4 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 4 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 4 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch guard +x 4 +y 9 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE GuildMaster +title Python +slaying /python/guilds/clearance.py +end +end +arch woodfloor +x 4 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 4 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_3 +x 4 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 4 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 4 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 4 +y 17 +type 77 +end +arch woodfloor +x 5 +type 71 +unique 1 +end +arch wall_3_3 +x 5 +type 77 +end +arch woodfloor +x 5 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 5 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 5 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 5 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch woodfloor +x 5 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_3 +x 5 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 5 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 5 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 5 +y 17 +type 77 +end +arch woodfloor +x 6 +type 71 +unique 1 +end +arch wall_3_3 +x 6 +type 77 +end +arch woodfloor +x 6 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_2 +x 6 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_2 +x 6 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_2 +x 6 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 6 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 6 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 6 +y 17 +type 77 +end +arch woodfloor +x 7 +type 71 +unique 1 +end +arch wall_3_3 +x 7 +type 77 +end +arch woodfloor +x 7 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 7 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 7 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 7 +y 17 +type 77 +end +arch woodfloor +x 8 +type 71 +unique 1 +end +arch wall_3_3 +x 8 +type 77 +end +arch woodfloor +x 8 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 8 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 8 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 8 +y 17 +type 77 +end +arch woodfloor +x 9 +type 71 +unique 1 +end +arch wall_3_3 +x 9 +type 77 +end +arch woodfloor +x 9 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 9 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 9 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 9 +y 17 +type 77 +end +arch woodfloor +x 10 +type 71 +unique 1 +end +arch wall_3_3 +x 10 +type 77 +end +arch woodfloor +x 10 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 10 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 10 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 10 +y 17 +type 77 +end +arch woodfloor +x 11 +type 71 +unique 1 +end +arch wall_3_3 +x 11 +type 77 +end +arch woodfloor +x 11 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 11 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 11 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 11 +y 17 +type 77 +end +arch woodfloor +x 12 +type 71 +unique 1 +end +arch wall_3_3 +x 12 +type 77 +end +arch woodfloor +x 12 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 12 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 12 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 12 +y 17 +type 77 +end +arch woodfloor +x 13 +type 71 +unique 1 +end +arch wall_3_3 +x 13 +type 77 +end +arch woodfloor +x 13 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 13 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 13 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 13 +y 17 +type 77 +end +arch woodfloor +x 14 +type 71 +unique 1 +end +arch wall_3_3 +x 14 +type 77 +end +arch woodfloor +x 14 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 14 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 14 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 14 +y 17 +type 77 +end +arch woodfloor +x 15 +type 71 +unique 1 +end +arch wall_3_3 +x 15 +type 77 +end +arch woodfloor +x 15 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 15 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 15 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 15 +y 17 +type 77 +end +arch woodfloor +x 16 +type 71 +unique 1 +end +arch wall_3_3 +x 16 +type 77 +end +arch woodfloor +x 16 +y 1 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 1 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 2 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 2 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 3 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 3 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 4 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 4 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 5 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 5 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 6 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 6 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 7 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 8 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 8 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 9 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 10 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 11 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 12 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 12 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 13 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 13 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 14 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 14 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 15 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 15 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 16 +type 71 +unique 1 +is_buildable 1 +end +arch wall_4 +x 16 +y 16 +type 77 +is_buildable 1 +end +arch woodfloor +x 16 +y 17 +type 71 +unique 1 +is_buildable 1 +end +arch wall_3_1 +x 16 +y 17 +type 77 +end +arch woodfloor +x 17 +type 71 +unique 1 +end +arch wall_2_2_3 +x 17 +type 77 +end +arch woodfloor +x 17 +y 1 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 1 +type 77 +end +arch woodfloor +x 17 +y 2 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 2 +type 77 +end +arch woodfloor +x 17 +y 3 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 3 +type 77 +end +arch woodfloor +x 17 +y 4 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 4 +type 77 +end +arch woodfloor +x 17 +y 5 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 5 +type 77 +end +arch woodfloor +x 17 +y 6 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 6 +type 77 +end +arch woodfloor +x 17 +y 7 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 7 +type 77 +end +arch woodfloor +x 17 +y 8 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 8 +type 77 +end +arch woodfloor +x 17 +y 9 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 9 +type 77 +end +arch woodfloor +x 17 +y 10 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 10 +type 77 +end +arch woodfloor +x 17 +y 11 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 11 +type 77 +end +arch woodfloor +x 17 +y 12 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 12 +type 77 +end +arch woodfloor +x 17 +y 13 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 13 +type 77 +end +arch woodfloor +x 17 +y 14 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 14 +type 77 +end +arch woodfloor +x 17 +y 15 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 15 +type 77 +end +arch woodfloor +x 17 +y 16 +type 71 +unique 1 +end +arch wall_3_4 +x 17 +y 16 +type 77 +end +arch woodfloor +x 17 +y 17 +type 71 +unique 1 +end +arch wall_2_2_4 +x 17 +y 17 +type 77 +end +arch blocked +x 18 +end +arch blocked +x 18 +y 1 +end +arch blocked +x 18 +y 2 +end +arch blocked +x 18 +y 3 +end +arch blocked +x 18 +y 4 +end +arch blocked +x 18 +y 5 +end +arch blocked +x 18 +y 6 +end +arch blocked +x 18 +y 7 +end +arch blocked +x 18 +y 8 +end +arch blocked +x 18 +y 9 +end +arch blocked +x 18 +y 10 +end +arch blocked +x 18 +y 11 +end +arch blocked +x 18 +y 12 +end +arch blocked +x 18 +y 13 +end +arch blocked +x 18 +y 14 +end +arch blocked +x 18 +y 15 +end +arch blocked +x 18 +y 16 +end +arch blocked +x 18 +y 17 +end +arch button_small +x 21 +connected 9991 +end +arch lightningwall_5 +x 21 +y 1 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 21 +y 1 +end +arch detector +slaying lightning +x 21 +y 2 +speed 1.0 +connected 9998 +end +arch lightningwall_5 +sp 1 +x 21 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 3 +end +arch lightningwall_5 +sp 1 +x 21 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 4 +end +arch lightningwall_5 +sp 1 +x 21 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 5 +end +arch lightningwall_5 +sp 1 +x 21 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 6 +end +arch lightningwall_5 +sp 1 +x 21 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 7 +end +arch lightningwall_5 +sp 1 +x 21 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 8 +end +arch lightningwall_5 +sp 1 +x 21 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 9 +end +arch lightningwall_5 +sp 1 +x 21 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 10 +end +arch lightningwall_5 +sp 1 +x 21 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 11 +end diff --git a/templates/guild/novice_lounge b/templates/guild/novice_lounge index 7702c88d8..f4f565deb 100644 --- a/templates/guild/novice_lounge +++ b/templates/guild/novice_lounge @@ -1,12 +1,14 @@ arch map name Novice's Lounge +reset_timeout 300 difficulty 1 -width 18 +width 22 height 18 enter_x 1 enter_y 8 msg Created: 2004-05-12 +Modified: 2009-05-08 Logan Perkins endmsg end arch woodfloor @@ -96,15 +98,29 @@ arch wall_2_1_1 y 9 end arch woodfloor -y 10 +y 9 type 71 unique 1 end arch wall_3_2 -y 10 +y 9 type 77 end arch woodfloor +y 10 +type 71 +unique 1 +end +arch woodfloor +y 10 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_1 +y 10 +end +arch woodfloor y 11 type 71 unique 1 @@ -274,6 +290,9 @@ type 71 unique 1 end arch stair_up +slaying hallofjoining +hp 17 +sp 14 x 1 y 8 end @@ -282,6 +301,29 @@ x 1 y 9 type 71 unique 1 +end +arch woodfloor +x 1 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 9 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 10 +type 71 +unique 1 is_buildable 1 end arch woodfloor @@ -291,11 +333,16 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch stair_down_2 +slaying guildman_lounge x 1 y 10 -type 77 -is_buildable 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 end arch woodfloor x 1 @@ -312,6 +359,34 @@ is_buildable 1 end arch woodfloor x 1 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 1 +y 11 +type 77 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 1 +y 11 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 1 +y 11 +end +arch woodfloor +x 1 y 12 type 71 unique 1 @@ -499,20 +574,62 @@ x 2 y 9 type 71 unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 2 +y 9 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 9 +type 71 +unique 1 +is_buildable 1 +end +arch wall_2_1_2 +x 2 +y 9 +end +arch button_small +x 2 +y 10 +connected 9998 +end arch woodfloor x 2 y 10 type 71 unique 1 -is_buildable 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch wall_3_3 x 2 -y 10 +y 11 type 77 -is_buildable 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 end arch woodfloor x 2 @@ -521,12 +638,27 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_1_3 x 2 y 11 -type 77 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 +end +arch woodfloor +x 2 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_2_1_2 +x 2 +y 11 +end arch woodfloor x 2 y 12 @@ -734,16 +866,47 @@ is_buildable 1 end arch woodfloor x 3 -y 10 +y 9 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 9 type 71 unique 1 is_buildable 1 end -arch wall_3_3 +arch wall_1_3 +x 3 +y 9 +end +arch woodfloor x 3 y 10 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 3 +y 10 +end +arch grate_closed_2 +x 3 +y 10 +connected 9998 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 +end +arch wall_3_3 +x 3 +y 11 type 77 -is_buildable 1 end arch woodfloor x 3 @@ -752,12 +915,23 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch woodfloor x 3 y 11 -type 77 +type 71 +unique 1 +end +arch woodfloor +x 3 +y 11 +type 71 +unique 1 is_buildable 1 end +arch wall_1_3 +x 3 +y 11 +end arch woodfloor x 3 y 12 @@ -937,20 +1111,20 @@ is_buildable 1 end arch woodfloor x 4 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_3_2 +arch wall_3_1 x 4 -y 8 +y 7 type 77 is_buildable 1 end arch woodfloor x 4 -y 9 +y 8 type 71 unique 1 is_buildable 1 @@ -959,14 +1133,33 @@ arch woodfloor x 4 y 9 type 71 -unique 1 +unique 0 is_buildable 1 end -arch wall_3_2 +arch guard x 4 y 9 -type 77 -is_buildable 1 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE Guildman +title Python +slaying /python/guilds/clearance.py +end end arch woodfloor x 4 @@ -975,12 +1168,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 4 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 4 y 11 @@ -988,7 +1175,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_3 x 4 y 11 type 77 @@ -1173,15 +1360,22 @@ is_buildable 1 end arch woodfloor x 5 -y 8 +y 7 type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_1 +x 5 +y 7 +type 77 +is_buildable 1 +end +arch woodfloor x 5 y 8 -type 77 +type 71 +unique 1 is_buildable 1 end arch woodfloor @@ -1191,12 +1385,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 9 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 10 @@ -1204,25 +1392,6 @@ type 71 unique 1 is_buildable 1 end -arch wall_3_2 -x 5 -y 10 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 10 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 -x 5 -y 10 -type 77 -is_buildable 1 -end arch woodfloor x 5 y 11 @@ -1230,20 +1399,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 -x 5 -y 11 -type 77 -is_buildable 1 -end -arch woodfloor -x 5 -y 11 -type 71 -unique 1 -is_buildable 1 -end -arch wall_4 +arch wall_3_3 x 5 y 11 type 77 @@ -1433,7 +1589,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 8 type 77 @@ -1446,7 +1602,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 9 type 77 @@ -1459,7 +1615,7 @@ type 71 unique 1 is_buildable 1 end -arch wall_4 +arch wall_3_2 x 6 y 10 type 77 @@ -4041,3 +4197,234 @@ x 17 y 17 type 77 end +arch blocked +x 18 +end +arch blocked +x 18 +y 1 +end +arch blocked +x 18 +y 2 +end +arch blocked +x 18 +y 3 +end +arch blocked +x 18 +y 4 +end +arch blocked +x 18 +y 5 +end +arch blocked +x 18 +y 6 +end +arch blocked +x 18 +y 7 +end +arch blocked +x 18 +y 8 +end +arch blocked +x 18 +y 9 +end +arch blocked +x 18 +y 10 +end +arch blocked +x 18 +y 11 +end +arch blocked +x 18 +y 12 +end +arch blocked +x 18 +y 13 +end +arch blocked +x 18 +y 14 +end +arch blocked +x 18 +y 15 +end +arch blocked +x 18 +y 16 +end +arch blocked +x 18 +y 17 +end +arch button_small +x 21 +connected 9991 +end +arch lightningwall_5 +x 21 +y 1 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 21 +y 1 +end +arch detector +slaying lightning +x 21 +y 2 +speed 1.0 +connected 9998 +end +arch lightningwall_5 +sp 1 +x 21 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 3 +end +arch lightningwall_5 +sp 1 +x 21 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 4 +end +arch lightningwall_5 +sp 1 +x 21 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 5 +end +arch lightningwall_5 +sp 1 +x 21 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 6 +end +arch lightningwall_5 +sp 1 +x 21 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 7 +end +arch lightningwall_5 +sp 1 +x 21 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 8 +end +arch lightningwall_5 +sp 1 +x 21 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 9 +end +arch lightningwall_5 +sp 1 +x 21 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 10 +end +arch lightningwall_5 +sp 1 +x 21 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 21 +y 11 +end diff --git a/templates/guild/secondfloor b/templates/guild/secondfloor index ecd2f5ab8..6dec09500 100644 --- a/templates/guild/secondfloor +++ b/templates/guild/secondfloor @@ -1,7 +1,8 @@ arch map name secondfloor +reset_timeout 300 difficulty 1 -width 20 +width 23 height 20 enter_x 12 enter_y 11 @@ -10,7 +11,7 @@ Creator: majorwoo josh@woosworld.net Date: 11/19/2004 Map finised by: Alestan jehloq@yahoo.com Date: 8/27/2007 -Modified: 2009-10-23 Andreas Kirschbaum +Modified: 2009-12-12 perkins endmsg end arch dungeon_magic @@ -107,7 +108,7 @@ arch woodfloor y 9 unique 1 end -arch dwall_2_1_1 +arch dwall_3_2 y 9 end arch dungeon_magic @@ -220,15 +221,25 @@ end arch dwall_2_1_2 x 1 end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +dam 121 +x 1 +y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end arch woodfloor x 1 y 1 unique 1 end -arch dungeon_magic -x 1 -y 1 -end arch lbulletwall_4 name Vibrantly Glowing Crystal dam 121 @@ -238,18 +249,162 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 120 +end +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +dam 121 +x 1 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 1 +speed 0 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 1 +speed 0.1 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 120 +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 1 +y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 1 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 1 +y 1 +speed 0.1 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 120 +end end arch woodfloor x 1 y 2 unique 1 end -arch dungeon_magic -x 1 -y 2 -end arch lbulletwall_4 name Vibrantly Glowing Crystal sp 3 @@ -257,21 +412,63 @@ dam 121 x 1 y 2 speed 0 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 1 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 2 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 2 +speed 0.1 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 120 +end end arch woodfloor x 1 y 3 unique 1 end -arch dungeon_magic -x 1 -y 3 -end arch lbulletwall_4 name Vibrantly Glowing Crystal sp 2 @@ -282,8 +479,182 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 120 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 2 +dam 121 +x 1 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 2 +dam 121 +x 1 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 3 +speed 0 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 1 +y 3 +speed 0.1 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 120 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 1 +y 3 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 120 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 1 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 1 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 1 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end end arch woodfloor x 1 @@ -307,6 +678,10 @@ x 1 y 5 unique 1 end +arch tanbench +x 1 +y 5 +end arch dungeon_magic x 1 y 6 @@ -343,6 +718,10 @@ x 1 y 9 unique 1 end +arch dwall_2_1_2 +x 1 +y 9 +end arch dungeon_magic x 1 y 10 @@ -354,26 +733,17 @@ unique 1 end arch dungeon_magic x 1 -y 11 -end -arch woodfloor -x 1 -y 11 -unique 1 -end -arch dungeon_magic -x 1 -y 11 +y 10 end arch creator other_arch woodfloor x 1 -y 11 +y 10 connected 10 end arch woodfloor x 1 -y 11 +y 10 unique 1 end arch goldfloor @@ -381,16 +751,16 @@ name drop 15 diamonds of exceptional beauty for Jewelers room slaying diamond of exceptional beauty food 15 x 1 -y 11 +y 10 connected 10 end arch dungeon_magic x 1 -y 12 +y 11 end arch woodfloor x 1 -y 12 +y 11 unique 1 end arch trigger_marker @@ -400,11 +770,24 @@ You have one day's use of these facilities. endmsg food 504 x 1 -y 12 +y 11 connected 11 end arch dungeon_magic x 1 +y 12 +end +arch woodfloor +x 1 +y 12 +unique 1 +end +arch cwall_0 +x 1 +y 12 +end +arch dungeon_magic +x 1 y 13 end arch woodfloor @@ -493,9 +876,47 @@ x 2 y 1 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 x 2 y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 2 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 2 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 2 +y 1 +unique 1 end arch lbulletwall_4 name Vibrantly Glowing Crystal @@ -507,8 +928,12 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 120 +end end arch magic_mouth msg @@ -517,15 +942,17 @@ endmsg x 2 y 2 end +arch pedestal +x 2 +y 2 +invisible 1 +connected 952 +end arch woodfloor x 2 y 2 unique 1 end -arch dungeon_magic -x 2 -y 2 -end arch button_lever name Vibrantly Flashing Crystal face power_crystal.111 @@ -533,16 +960,17 @@ animation power_crystal x 2 y 2 connected 2 +move_block 0 +end +arch light4 +x 2 +y 2 end arch woodfloor x 2 y 3 unique 1 end -arch dungeon_magic -x 2 -y 3 -end arch lbulletwall_4 name Vibrantly Glowing Crystal sp 1 @@ -553,8 +981,53 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 120 +end +end +arch woodfloor +x 2 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 60 +x 2 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 2 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 2 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end end arch woodfloor x 2 @@ -614,6 +1087,10 @@ x 2 y 9 unique 1 end +arch dwall_2_1_2 +x 2 +y 9 +end arch dungeon_magic x 2 y 10 @@ -623,64 +1100,59 @@ x 2 y 10 unique 1 end -arch dungeon_magic -x 2 -y 11 -end -arch woodfloor -x 2 -y 11 -unique 1 -end -arch dungeon_magic -x 2 -y 12 -end -arch woodfloor -x 2 -y 12 -unique 1 -end arch check_floor -slaying Jewe_Token +slaying GUILD_TEMPLATE_Jewe_Token x 2 -y 12 +y 11 connected 898 end arch dungeon_magic x 2 -y 13 +y 11 end arch woodfloor x 2 -y 13 +y 11 +unique 1 +end +arch dungeon_magic +x 2 +y 12 +end +arch woodfloor +x 2 +y 12 unique 1 end arch check_floor race Jewelry Pass x 2 -y 13 +y 12 connected 898 end arch grate_closed_1 x 2 +y 12 +connected 898 +end +arch pedestal +x 2 y 13 +invisible 1 connected 898 end arch dungeon_magic x 2 -y 14 +y 13 end arch woodfloor x 2 -y 14 +y 13 unique 1 end -arch pedestal +arch dungeon_magic x 2 y 14 -invisible 1 -connected 898 end arch check_floor slaying guild_jewel11 @@ -688,10 +1160,22 @@ x 2 y 14 connected 12 end +arch woodfloor +x 2 +y 14 +unique 1 +end arch dungeon_magic x 2 y 15 end +arch invis_exit +slaying guild_jeweler +hp 3 +sp 4 +x 2 +y 15 +end arch woodfloor x 2 y 15 @@ -704,13 +1188,6 @@ connected 12 no_magic 1 damned 1 end -arch invis_exit -slaying guild_jeweler -hp 3 -sp 4 -x 2 -y 15 -end arch woodfloor x 2 y 16 @@ -722,6 +1199,15 @@ y 16 invisible 1 connected 12 end +arch dungeon_magic +x 2 +y 16 +end +arch woodfloor +x 2 +y 16 +unique 1 +end arch woodfloor x 2 y 17 @@ -760,9 +1246,47 @@ x 3 y 1 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 6 +dam 121 x 3 y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 3 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 6 +dam 121 +x 3 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 3 +y 1 +unique 1 end arch lbulletwall_4 name Vibrantly Glowing Crystal @@ -774,17 +1298,123 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 121 +end +end +arch woodfloor +x 3 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 3 +y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 3 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 3 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 3 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 3 +y 1 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end end arch woodfloor x 3 y 2 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 x 3 y 2 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 3 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 3 +y 2 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 3 +y 2 +unique 1 end arch lbulletwall_4 name Vibrantly Glowing Crystal @@ -796,17 +1426,59 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 121 +end end arch woodfloor x 3 y 3 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 8 +dam 121 x 3 y 3 +speed 0 +level 50 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 8 +dam 121 +x 3 +y 3 +speed 0.1 +level 20 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 3 +y 3 +unique 1 end arch lbulletwall_4 name Vibrantly Glowing Crystal @@ -818,8 +1490,76 @@ speed 0 level 107 invisible 1 connected 2 +move_block 0 no_pass 0 blocksview 0 +arch spell_transference +dam 121 +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 3 +y 3 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 3 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 3 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 3 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end end arch woodfloor x 3 @@ -879,6 +1619,10 @@ x 3 y 9 unique 1 end +arch dwall_2_1_2 +x 3 +y 9 +end arch dungeon_magic x 3 y 10 @@ -906,6 +1650,10 @@ x 3 y 12 unique 1 end +arch cwall_0 +x 3 +y 12 +end arch dungeon_magic x 3 y 13 @@ -987,43 +1735,336 @@ end arch dwall_2_1_2 x 4 end -arch dungeon_magic +arch woodfloor x 4 y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 4 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end end arch woodfloor x 4 y 1 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 x 4 -y 2 +y 1 +speed 00 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end +end +arch woodfloor +x 4 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 4 +y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 4 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 4 +y 1 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 4 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 4 +y 1 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 4 +y 1 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 121 +x 4 +y 1 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end end arch woodfloor x 4 y 2 unique 1 end -arch dungeon_magic +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 x 4 -y 3 +y 2 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 4 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 4 +y 2 +speed .1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 4 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 4 +y 2 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end end arch woodfloor x 4 y 3 unique 1 end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 4 +y 3 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end +end arch woodfloor x 4 -y 4 +y 3 unique 1 end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 4 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 4 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 3 +dam 121 +x 4 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 4 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 4 +y 3 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 121 +end +end +arch woodfloor +x 4 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 4 +y 3 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 4 +y 3 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 1 +dam 121 +x 4 +y 3 +speed 0.1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end arch dungeon_magic x 4 y 4 end -arch dwall_win2 +arch woodfloor +x 4 +y 4 +unique 1 +end +arch dwall_3_3 x 4 y 4 end @@ -1036,6 +2077,10 @@ x 4 y 5 unique 1 end +arch dwall_2_1_1 +x 4 +y 5 +end arch dungeon_magic x 4 y 6 @@ -1045,6 +2090,17 @@ x 4 y 6 unique 1 end +arch dwall_2_1_1 +x 4 +y 6 +end +arch invis_exit +slaying guild_tan +hp 6 +sp 5 +x 4 +y 7 +end arch dungeon_magic x 4 y 7 @@ -1054,6 +2110,12 @@ x 4 y 7 unique 1 end +arch igate_closed_2 +x 4 +y 7 +connected 51 +activate_on_release 0 +end arch dungeon_magic x 4 y 8 @@ -1063,6 +2125,10 @@ x 4 y 8 unique 1 end +arch dwall_2_1_1 +x 4 +y 8 +end arch dungeon_magic x 4 y 9 @@ -1072,6 +2138,10 @@ x 4 y 9 unique 1 end +arch dwall_3_1 +x 4 +y 9 +end arch dungeon_magic x 4 y 10 @@ -1110,6 +2180,20 @@ unique 1 end arch dungeon_magic x 4 +y 13 +end +arch woodfloor +x 4 +y 13 +unique 1 +end +arch grate_closed_1 +x 4 +y 13 +connected 9192 +end +arch dungeon_magic +x 4 y 14 end arch woodfloor @@ -1117,6 +2201,18 @@ x 4 y 14 unique 1 end +arch button_lever +name Jewelry Room Reset. +slaying guild_jeweler +msg +Careful, make sure no one you care about is in there. +endmsg +hp 5 +sp 1 +x 4 +y 14 +type 66 +end arch dungeon_magic x 4 y 15 @@ -1205,10 +2301,6 @@ arch dwall_2_2_1 x 5 y 1 end -arch dungeon_magic -x 5 -y 2 -end arch woodfloor x 5 y 2 @@ -1220,6 +2312,70 @@ y 2 invisible 1 connected 42 end +arch woodfloor +x 5 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 5 +y 2 +speed 0 +level 20 +invisible 1 +connected 5 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 60 +end +end +arch woodfloor +x 5 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 5 +y 2 +speed .1 +level 10 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +end +end +arch woodfloor +x 5 +y 2 +unique 1 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 7 +dam 121 +x 5 +y 2 +speed 0 +level 107 +invisible 1 +connected 2 +move_block 0 +no_pass 0 +blocksview 0 +arch spell_transference +dam 120 +end +end arch dungeon_magic x 5 y 3 @@ -1251,6 +2407,24 @@ x 5 y 5 unique 1 end +arch button_lever +name Tanning Room Reset. +slaying guild_tan +msg +Careful, make sure no one you care about is in there. +endmsg +hp 9 +sp 1 +x 5 +y 5 +type 66 +end +arch check_floor +slaying guild_tan21 +x 5 +y 6 +connected 51 +end arch dungeon_magic x 5 y 6 @@ -1262,6 +2436,34 @@ unique 1 end arch dungeon_magic x 5 +y 6 +end +arch woodfloor +x 5 +y 6 +unique 1 +end +arch dungeon_magic +x 5 +y 6 +end +arch woodfloor +x 5 +y 6 +unique 1 +end +arch cwall_0 +x 5 +y 6 +end +arch check_floor +slaying guild_tan21 +x 5 +y 7 +connected 51 +end +arch dungeon_magic +x 5 y 7 end arch woodfloor @@ -1269,6 +2471,12 @@ x 5 y 7 unique 1 end +arch check_floor +slaying guild_tan21 +x 5 +y 8 +connected 51 +end arch dungeon_magic x 5 y 8 @@ -1287,6 +2495,10 @@ x 5 y 9 unique 1 end +arch dwall_2_1_2 +x 5 +y 9 +end arch dungeon_magic x 5 y 10 @@ -1325,6 +2537,19 @@ unique 1 end arch dungeon_magic x 5 +y 13 +end +arch woodfloor +x 5 +y 13 +unique 1 +end +arch dwall_1_1 +x 5 +y 13 +end +arch dungeon_magic +x 5 y 14 end arch woodfloor @@ -1334,6 +2559,19 @@ unique 1 end arch dungeon_magic x 5 +y 14 +end +arch woodfloor +x 5 +y 14 +unique 1 +end +arch dwall_2_1_1 +x 5 +y 14 +end +arch dungeon_magic +x 5 y 15 end arch woodfloor @@ -1345,6 +2583,19 @@ arch dwall_2_1_2 x 5 y 15 end +arch dungeon_magic +x 5 +y 15 +end +arch woodfloor +x 5 +y 15 +unique 1 +end +arch dwall_3_1 +x 5 +y 15 +end arch woodfloor x 5 y 16 @@ -1407,7 +2658,7 @@ end arch pedestal x 6 y 2 -connected 746 +connected 42 end arch woodfloor x 6 @@ -1432,15 +2683,15 @@ arch dwall_2_2_3 x 6 y 3 end +arch dungeon_magic +x 6 +y 4 +end arch woodfloor x 6 y 4 unique 1 end -arch dungeon_magic -x 6 -y 4 -end arch swall_1_4 x 6 y 4 @@ -1460,6 +2711,29 @@ unique 1 end arch dungeon_magic x 6 +y 5 +end +arch woodfloor +x 6 +y 5 +unique 1 +end +arch dungeon_magic +x 6 +y 5 +end +arch woodfloor +x 6 +y 5 +unique 1 +end +arch grate_closed_2 +x 6 +y 5 +connected 9193 +end +arch dungeon_magic +x 6 y 6 end arch woodfloor @@ -1469,6 +2743,28 @@ unique 1 end arch dungeon_magic x 6 +y 6 +end +arch woodfloor +x 6 +y 6 +unique 1 +end +arch dungeon_magic +x 6 +y 6 +end +arch woodfloor +x 6 +y 6 +unique 1 +end +arch cwall_0 +x 6 +y 6 +end +arch dungeon_magic +x 6 y 7 end arch woodfloor @@ -1494,62 +2790,66 @@ x 6 y 9 unique 1 end -arch dungeon_magic -x 6 -y 10 -end -arch woodfloor -x 6 -y 10 -unique 1 -end -arch dungeon_magic -x 6 -y 11 -end -arch woodfloor -x 6 -y 11 -unique 1 -end -arch dungeon_magic -x 6 -y 12 -end -arch woodfloor -x 6 -y 12 -unique 1 -end -arch dungeon_magic -x 6 -y 13 -end -arch woodfloor -x 6 -y 13 -unique 1 -end -arch dungeon_magic -x 6 -y 14 -end -arch woodfloor -x 6 -y 14 -unique 1 -end -arch dungeon_magic -x 6 -y 15 -end -arch woodfloor -x 6 -y 15 -unique 1 -end arch dwall_2_1_2 x 6 +y 9 +end +arch dungeon_magic +x 6 +y 10 +end +arch woodfloor +x 6 +y 10 +unique 1 +end +arch dungeon_magic +x 6 +y 11 +end +arch woodfloor +x 6 +y 11 +unique 1 +end +arch dungeon_magic +x 6 +y 12 +end +arch woodfloor +x 6 +y 12 +unique 1 +end +arch dungeon_magic +x 6 +y 13 +end +arch woodfloor +x 6 +y 13 +unique 1 +end +arch dungeon_magic +x 6 +y 14 +end +arch woodfloor +x 6 +y 14 +unique 1 +end +arch woodfloor +x 6 +y 15 +unique 1 +end +arch dungeon_magic +x 6 +y 15 +end +arch dwall_win2 +x 6 y 15 end arch woodfloor @@ -1613,12 +2913,6 @@ x 7 y 2 unique 1 end -arch pedestal -x 7 -y 2 -invisible 1 -connected 42 -end arch check_floor slaying guild_charge41 x 7 @@ -1627,6 +2921,15 @@ connected 42 end arch dungeon_magic x 7 +y 2 +end +arch woodfloor +x 7 +y 2 +unique 1 +end +arch dungeon_magic +x 7 y 3 end arch woodfloor @@ -1661,6 +2964,12 @@ x 7 y 5 unique 1 end +arch check_floor +slaying guild_tan21 +x 7 +y 6 +connected 897 +end arch dungeon_magic x 7 y 6 @@ -1688,6 +2997,24 @@ x 7 y 8 unique 1 end +arch trigger_marker +slaying guild_tan21 +msg +You have one day's use of these facilities. +endmsg +food 504 +x 7 +y 8 +connected 52 +end +arch altar_trigger +name Drop 100 platinum to enter Tannery +slaying platinacoin +food 100 +x 7 +y 8 +connected 52 +end arch dungeon_magic x 7 y 9 @@ -1697,6 +3024,10 @@ x 7 y 9 unique 1 end +arch dwall_2_1_2 +x 7 +y 9 +end arch dungeon_magic x 7 y 10 @@ -1775,6 +3106,15 @@ y 17 invisible 1 connected 22 end +arch dungeon_magic +x 7 +y 17 +end +arch woodfloor +x 7 +y 17 +unique 1 +end arch woodfloor x 7 y 18 @@ -1838,6 +3178,15 @@ connected 82 end arch dungeon_magic x 8 +y 2 +end +arch woodfloor +x 8 +y 2 +unique 1 +end +arch dungeon_magic +x 8 y 3 end arch woodfloor @@ -1863,6 +3212,22 @@ arch swall_2_1_2 x 8 y 4 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 8 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 8 y 5 @@ -1872,6 +3237,28 @@ x 8 y 5 unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 8 +y 6 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 8 +y 6 +invisible 1 +connected 335 +end arch dungeon_magic x 8 y 6 @@ -1881,6 +3268,22 @@ x 8 y 6 unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 8 +y 7 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 8 y 7 @@ -1899,10 +3302,6 @@ x 8 y 8 unique 1 end -arch dwall_2_2_2 -x 8 -y 8 -end arch dungeon_magic x 8 y 9 @@ -1912,19 +3311,23 @@ x 8 y 9 unique 1 end +arch dwall_3_3 +x 8 +y 9 +end +arch dungeon_magic +x 8 +y 10 +end +arch woodfloor +x 8 +y 10 +unique 1 +end arch dwall_1_2 x 8 -y 9 -end -arch dungeon_magic -x 8 y 10 end -arch woodfloor -x 8 -y 10 -unique 1 -end arch dungeon_magic x 8 y 11 @@ -2008,6 +3411,13 @@ x 8 y 17 unique 1 end +arch invis_exit +slaying guild_thaum +hp 6 +sp 3 +x 8 +y 17 +end arch grate_closed_2 x 8 y 17 @@ -2016,13 +3426,6 @@ blocksview 1 no_magic 1 damned 1 end -arch invis_exit -slaying guild_thaum -hp 6 -sp 3 -x 8 -y 17 -end arch dungeon_magic x 8 y 18 @@ -2111,7 +3514,7 @@ x 9 y 4 unique 1 end -arch swall_3_1 +arch swall_4 x 9 y 4 end @@ -2124,6 +3527,10 @@ x 9 y 5 unique 1 end +arch dwall_1_2 +x 9 +y 5 +end arch dungeon_magic x 9 y 6 @@ -2133,45 +3540,50 @@ x 9 y 6 unique 1 end +arch igate_closed_2 +x 9 +y 6 +connected 335 +end +arch dungeon_magic +x 9 +y 7 +end +arch woodfloor +x 9 +y 7 +unique 1 +end arch dwall_1_1 x 9 -y 6 +y 7 end arch dungeon_magic x 9 -y 7 +y 8 end arch woodfloor x 9 -y 7 +y 8 unique 1 end arch dwall_2_1_1 x 9 -y 7 +y 8 end arch dungeon_magic x 9 -y 8 +y 9 end arch woodfloor x 9 -y 8 +y 9 unique 1 end arch dwall_3_1 x 9 -y 8 -end -arch dungeon_magic -x 9 y 9 end -arch woodfloor -x 9 -y 9 -unique 1 -end arch dungeon_magic x 9 y 10 @@ -2230,6 +3642,18 @@ x 9 y 15 unique 1 end +arch button_lever +name Wand Room Reset. +slaying guild_thaum +msg +Careful, make sure no one you care about is in there. +endmsg +hp 9 +sp 1 +x 9 +y 15 +type 66 +end arch dungeon_magic x 9 y 16 @@ -2258,12 +3682,6 @@ x 9 y 17 unique 1 end -arch pedestal -x 9 -y 17 -invisible 1 -connected 899 -end arch dungeon_magic x 9 y 18 @@ -2329,13 +3747,22 @@ y 2 unique 1 end arch check_floor -slaying GC_Token +slaying GUILD_TEMPLATE_GC_Token x 10 y 2 connected 82 end arch dungeon_magic x 10 +y 2 +end +arch woodfloor +x 10 +y 2 +unique 1 +end +arch dungeon_magic +x 10 y 3 end arch woodfloor @@ -2365,6 +3792,12 @@ x 10 y 5 unique 1 end +arch check_floor +slaying GUILD_TEMPLATE_Tan_Token +x 10 +y 6 +connected 331 +end arch dungeon_magic x 10 y 6 @@ -2378,39 +3811,48 @@ arch dungeon_magic x 10 y 7 end +arch woodfloor +x 10 +y 7 +unique 1 +end +arch dungeon_magic +x 10 +y 8 +end +arch woodfloor +x 10 +y 8 +unique 1 +end arch creator +other_arch woodfloor x 10 -y 7 +y 8 +connected 50 end arch goldfloor -slaying Glowing Crystal Token -food 1 +name drop 30,000 rubies for Tannery room +slaying ruby +food 30000 x 10 -y 7 -connected 80 +y 8 +connected 50 +activate_on_release 0 end arch dungeon_magic x 10 -y 8 +y 9 end arch woodfloor x 10 -y 8 +y 9 unique 1 end arch dwall_1_3 x 10 -y 8 -end -arch dungeon_magic -x 10 y 9 end -arch woodfloor -x 10 -y 9 -unique 1 -end arch dungeon_magic x 10 y 10 @@ -2462,6 +3904,20 @@ unique 1 end arch dungeon_magic x 10 +y 14 +end +arch woodfloor +x 10 +y 14 +unique 1 +end +arch grate_closed_2 +x 10 +y 14 +connected 9191 +end +arch dungeon_magic +x 10 y 15 end arch woodfloor @@ -2471,13 +3927,18 @@ unique 1 end arch dungeon_magic x 10 -y 16 +y 15 end arch woodfloor x 10 -y 16 +y 15 unique 1 end +arch grate_closed_2 +x 10 +y 15 +connected 9191 +end arch dungeon_magic x 10 y 16 @@ -2491,27 +3952,19 @@ arch cwall_0 x 10 y 16 end -arch dungeon_magic -x 10 -y 17 -end -arch woodfloor -x 10 -y 17 -unique 1 -end -arch igate_closed_2 +arch pedestal x 10 y 17 +invisible 1 connected 899 end arch dungeon_magic x 10 -y 18 +y 17 end arch woodfloor x 10 -y 18 +y 17 unique 1 end arch dungeon_magic @@ -2582,6 +4035,12 @@ x 11 y 2 unique 1 end +arch pedestal +x 11 +y 3 +invisible 1 +connected 81 +end arch dungeon_magic x 11 y 3 @@ -2591,12 +4050,6 @@ x 11 y 3 unique 1 end -arch pedestal -x 11 -y 3 -invisible 1 -connected 81 -end arch dungeon_magic x 11 y 4 @@ -2719,6 +4172,10 @@ x 11 y 16 unique 1 end +arch cwall_0 +x 11 +y 16 +end arch dungeon_magic x 11 y 17 @@ -2728,8 +4185,7 @@ x 11 y 17 unique 1 end -arch check_floor -slaying Thau_Token +arch igate_closed_2 x 11 y 17 connected 899 @@ -2743,25 +4199,10 @@ x 11 y 18 unique 1 end -arch dungeon_magic +arch cwall_0 x 11 y 18 end -arch woodfloor -x 11 -y 18 -unique 1 -end -arch trigger_marker -slaying guild_thaum21 -msg -You have one day's use of these facilities. -endmsg -food 504 -x 11 -y 18 -connected 21 -end arch dungeon_magic x 11 y 19 @@ -2895,6 +4336,22 @@ x 12 y 10 unique 1 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 12 +y 11 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 12 y 11 @@ -2956,6 +4413,12 @@ x 12 y 16 unique 1 end +arch check_floor +slaying GUILD_TEMPLATE_Thau_Token +x 12 +y 17 +connected 899 +end arch dungeon_magic x 12 y 17 @@ -2974,28 +4437,15 @@ x 12 y 18 unique 1 end -arch dungeon_magic +arch trigger_marker +slaying guild_thaum21 +msg +You have one day's use of these facilities. +endmsg +food 504 x 12 y 18 -end -arch woodfloor -x 12 -y 18 -unique 1 -end -arch creator -other_arch woodfloor -x 12 -y 18 -connected 20 -end -arch goldfloor -name drop 30,000 rubies for Thaumaturgy room -slaying ruby -food 30000 -x 12 -y 18 -connected 20 +connected 21 end arch woodfloor x 12 @@ -3092,10 +4542,23 @@ x 13 y 7 unique 1 end +arch cwall_0 +x 13 +y 7 +end +arch dungeon_magic +x 13 +y 8 +end +arch woodfloor +x 13 +y 8 +unique 1 +end arch creator other_arch woodfloor x 13 -y 7 +y 8 connected 30 end arch goldfloor @@ -3103,31 +4566,22 @@ name drop 30,000 diamonds for Alchemy room slaying diamond food 30000 x 13 -y 7 +y 8 connected 30 end arch dungeon_magic x 13 -y 8 +y 9 end arch woodfloor x 13 -y 8 +y 9 unique 1 end arch dwall_1_4 x 13 -y 8 -end -arch dungeon_magic -x 13 y 9 end -arch woodfloor -x 13 -y 9 -unique 1 -end arch dungeon_magic x 13 y 10 @@ -3186,6 +4640,38 @@ x 13 y 15 unique 1 end +arch woodfloor +x 13 +y 15 +type 71 +unique 0 +is_buildable 1 +end +arch guard +x 13 +y 15 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE GuildMaster +title Python +slaying /python/guilds/clearance.py +end +end arch dungeon_magic x 13 y 16 @@ -3213,6 +4699,20 @@ x 13 y 18 unique 1 end +arch creator +other_arch woodfloor +x 13 +y 18 +connected 20 +end +arch goldfloor +name drop 30,000 rubies for Thaumaturgy room +slaying ruby +food 30000 +x 13 +y 18 +connected 20 +end arch woodfloor x 13 y 19 @@ -3259,16 +4759,12 @@ connected 32 end arch dungeon_magic x 14 -y 4 +y 3 end arch woodfloor x 14 -y 4 -end -arch grate_closed_1 -x 14 -y 4 -connected 32 +y 3 +unique 1 end arch invis_exit slaying guild_alchemy @@ -3279,12 +4775,16 @@ y 4 end arch dungeon_magic x 14 -y 5 +y 4 end arch woodfloor x 14 -y 5 -unique 1 +y 4 +end +arch grate_closed_1 +x 14 +y 4 +connected 32 end arch pedestal x 14 @@ -3300,6 +4800,21 @@ connected 32 end arch dungeon_magic x 14 +y 5 +end +arch woodfloor +x 14 +y 5 +unique 1 +end +arch pedestal +x 14 +y 6 +invisible 1 +connected 897 +end +arch dungeon_magic +x 14 y 6 end arch woodfloor @@ -3307,30 +4822,30 @@ x 14 y 6 unique 1 end +arch dungeon_magic +x 14 +y 7 +end +arch woodfloor +x 14 +y 7 +unique 1 +end arch check_floor race Alchemy Pass x 14 -y 6 +y 7 connected 897 end arch grate_closed_1 x 14 -y 6 +y 7 connected 897 end -arch dungeon_magic -x 14 -y 7 -end -arch woodfloor -x 14 -y 7 -unique 1 -end arch check_floor -slaying Alch_Token +slaying GUILD_TEMPLATE_Alch_Token x 14 -y 7 +y 8 connected 897 end arch dungeon_magic @@ -3342,32 +4857,32 @@ x 14 y 8 unique 1 end +arch dungeon_magic +x 14 +y 9 +end +arch woodfloor +x 14 +y 9 +unique 1 +end arch dwall_3_3 x 14 -y 8 +y 9 end arch dungeon_magic x 14 -y 9 +y 10 end arch woodfloor x 14 -y 9 +y 10 unique 1 end arch dwall_1_2 x 14 -y 9 -end -arch dungeon_magic -x 14 y 10 end -arch woodfloor -x 14 -y 10 -unique 1 -end arch dungeon_magic x 14 y 11 @@ -3412,6 +4927,11 @@ x 14 y 14 unique 1 end +arch grate_closed_2 +x 14 +y 14 +connected 918 +end arch dungeon_magic x 14 y 15 @@ -3421,26 +4941,34 @@ x 14 y 15 unique 1 end -arch dungeon_magic -x 14 -y 16 -end -arch woodfloor -x 14 -y 16 -unique 1 -end -arch dungeon_magic -x 14 -y 17 -end -arch woodfloor -x 14 -y 17 -unique 1 -end arch dwall_1_1 x 14 +y 15 +end +arch dungeon_magic +x 14 +y 16 +end +arch woodfloor +x 14 +y 16 +unique 1 +end +arch dwall_2_1_1 +x 14 +y 16 +end +arch dungeon_magic +x 14 +y 17 +end +arch woodfloor +x 14 +y 17 +unique 1 +end +arch dwall_2_1_1 +x 14 y 17 end arch dungeon_magic @@ -3546,6 +5074,19 @@ x 15 y 7 unique 1 end +arch cwall_0 +x 15 +y 7 +end +arch dungeon_magic +x 15 +y 8 +end +arch woodfloor +x 15 +y 8 +unique 1 +end arch trigger_marker slaying guild_alchemy31 msg @@ -3553,44 +5094,44 @@ You have one day's use of these facilities. endmsg food 504 x 15 -y 7 +y 8 connected 31 end arch dungeon_magic x 15 -y 8 +y 9 end arch woodfloor x 15 -y 8 +y 9 unique 1 end arch dwall_2_1_2 x 15 -y 8 +y 9 end arch dungeon_magic x 15 -y 9 +y 10 end arch woodfloor x 15 -y 9 +y 10 unique 1 end arch dungeon_magic x 15 -y 10 +y 11 end arch woodfloor x 15 -y 10 +y 11 unique 1 end arch creator other_arch woodfloor x 15 -y 10 +y 11 connected 7 end arch goldfloor @@ -3598,21 +5139,12 @@ name drop 20 amulets of Lifesaving for a portal to the Mazes of Menace slaying amulet_lifesave food 20 x 15 -y 10 +y 11 connected 7 unique 1 end arch dungeon_magic x 15 -y 11 -end -arch woodfloor -x 15 -y 11 -unique 1 -end -arch dungeon_magic -x 15 y 12 end arch woodfloor @@ -3633,6 +5165,22 @@ arch dwall_2_1_2 x 15 y 13 end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 15 +y 14 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 15 y 14 @@ -3642,6 +5190,31 @@ x 15 y 14 unique 1 end +arch button_lever +name Tanning Room Reset Access +msg +Pull to pay out dues and fees. +endmsg +x 15 +y 14 +connected 9193 +end +arch trap_blades +msg +endmsg +Cha 200000 +hp 1000 +dam 0 +x 15 +y 15 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end arch dungeon_magic x 15 y 15 @@ -3651,6 +5224,15 @@ x 15 y 15 unique 1 end +arch button_lever +name Alchemy Room Reset Access +msg +Pull to pay out dues and fees. +endmsg +x 15 +y 15 +connected 9194 +end arch dungeon_magic x 15 y 16 @@ -3660,11 +5242,14 @@ x 15 y 16 unique 1 end -arch check_floor -slaying GuildMaster +arch button_lever +name Jewelry Room Reset Access +msg +Pull to pay out dues and fees. +endmsg x 15 y 16 -connected 918 +connected 9192 end arch dungeon_magic x 15 @@ -3675,16 +5260,14 @@ x 15 y 17 unique 1 end -arch check_floor -slaying GuildMaster +arch button_lever +name Wand Room Reset Access +msg +Pull to pay out dues and fees. +endmsg x 15 y 17 -connected 918 -end -arch grate_closed_1 -x 15 -y 17 -connected 918 +connected 9191 end arch dungeon_magic x 15 @@ -3695,12 +5278,6 @@ x 15 y 18 unique 1 end -arch pedestal -x 15 -y 18 -invisible 1 -connected 918 -end arch button_lever name Guild Dues msg @@ -3781,7 +5358,7 @@ x 16 y 4 unique 1 end -arch dwall_3_4 +arch dwall_3_1 x 16 y 4 end @@ -3794,9 +5371,17 @@ x 16 y 5 unique 1 end -arch dwall_2_1_1 +arch button_lever +name Alchemy Room Reset. +slaying guild_alchemy +msg +Careful, make sure no one you care about is in there. +endmsg +hp 10 +sp 10 x 16 y 5 +type 66 end arch dungeon_magic x 16 @@ -3807,10 +5392,6 @@ x 16 y 6 unique 1 end -arch dwall_2_1_1 -x 16 -y 6 -end arch dungeon_magic x 16 y 7 @@ -3820,9 +5401,10 @@ x 16 y 7 unique 1 end -arch dwall_2_1_1 +arch grate_closed_1 x 16 y 7 +connected 9194 end arch dungeon_magic x 16 @@ -3833,10 +5415,6 @@ x 16 y 8 unique 1 end -arch dwall_3_4 -x 16 -y 8 -end arch dungeon_magic x 16 y 9 @@ -3846,7 +5424,7 @@ x 16 y 9 unique 1 end -arch dwall_2_1_1 +arch dwall_3_3 x 16 y 9 end @@ -3911,6 +5489,15 @@ x 16 y 14 unique 1 end +arch dungeon_magic +x 16 +y 14 +end +arch woodfloor +x 16 +y 14 +unique 1 +end arch dwall_2_1_1 x 16 y 14 @@ -3924,6 +5511,15 @@ x 16 y 15 unique 1 end +arch dungeon_magic +x 16 +y 15 +end +arch woodfloor +x 16 +y 15 +unique 1 +end arch dwall_2_1_1 x 16 y 15 @@ -3937,6 +5533,15 @@ x 16 y 16 unique 1 end +arch dungeon_magic +x 16 +y 16 +end +arch woodfloor +x 16 +y 16 +unique 1 +end arch dwall_2_1_1 x 16 y 16 @@ -3950,6 +5555,15 @@ x 16 y 17 unique 1 end +arch dungeon_magic +x 16 +y 17 +end +arch woodfloor +x 16 +y 17 +unique 1 +end arch dwall_2_1_1 x 16 y 17 @@ -3963,6 +5577,15 @@ x 16 y 18 unique 1 end +arch dungeon_magic +x 16 +y 18 +end +arch woodfloor +x 16 +y 18 +unique 1 +end arch dwall_2_1_1 x 16 y 18 @@ -3976,183 +5599,453 @@ x 16 y 19 unique 1 end +arch dwall_2_1_2 +x 16 +y 19 +end +arch dungeon_magic +x 16 +y 19 +end +arch woodfloor +x 16 +y 19 +unique 1 +end arch dwall_2_2_4 x 16 y 19 end -arch blocked -x 17 -end -arch blocked -x 17 -y 1 -end -arch blocked -x 17 -y 2 -end -arch blocked -x 17 -y 3 -end -arch blocked +arch dungeon_magic x 17 y 4 end -arch blocked +arch woodfloor +x 17 +y 4 +unique 1 +end +arch dwall_2_2_3 +x 17 +y 4 +end +arch dungeon_magic x 17 y 5 end -arch blocked +arch woodfloor +x 17 +y 5 +unique 1 +end +arch dwall_2_1_1 +x 17 +y 5 +end +arch dungeon_magic x 17 y 6 end -arch blocked +arch woodfloor +x 17 +y 6 +unique 1 +end +arch dwall_2_1_1 +x 17 +y 6 +end +arch dungeon_magic x 17 y 7 end -arch blocked +arch woodfloor +x 17 +y 7 +unique 1 +end +arch dwall_2_1_1 +x 17 +y 7 +end +arch dungeon_magic x 17 y 8 end -arch blocked +arch woodfloor +x 17 +y 8 +unique 1 +end +arch dwall_2_1_1 +x 17 +y 8 +end +arch dungeon_magic x 17 y 9 end -arch blocked +arch woodfloor x 17 +y 9 +unique 1 +end +arch dwall_2_1_2 +x 17 +y 9 +end +arch dungeon_magic +x 17 +y 9 +end +arch woodfloor +x 17 +y 9 +unique 1 +end +arch dwall_2_2_4 +x 17 +y 9 +end +arch lightningwall_5 +x 18 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 18 +end +arch detector +slaying lightning +x 18 +y 1 +speed 1.0 +connected 918 +end +arch lightningwall_5 +sp 1 +x 18 +y 2 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 2 +end +arch lightningwall_5 +sp 1 +x 18 +y 3 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 3 +end +arch lightningwall_5 +sp 1 +x 18 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 4 +end +arch lightningwall_5 +sp 1 +x 18 +y 5 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 5 +end +arch blocked +x 18 +y 6 +end +arch lightningwall_5 +sp 1 +x 18 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 6 +end +arch blocked +x 18 +y 7 +end +arch lightningwall_5 +sp 1 +x 18 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 7 +end +arch blocked +x 18 +y 8 +end +arch lightningwall_5 +sp 1 +x 18 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 8 +end +arch lightningwall_5 +sp 1 +x 18 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 +y 9 +end +arch lightningwall_5 +sp 1 +x 18 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 18 y 10 end arch blocked -x 17 +x 19 +end +arch blocked +x 19 +y 1 +end +arch blocked +x 19 +y 2 +end +arch blocked +x 19 +y 3 +end +arch blocked +x 19 +y 4 +end +arch blocked +x 19 +y 5 +end +arch blocked +x 19 +y 6 +end +arch blocked +x 19 +y 7 +end +arch blocked +x 19 +y 8 +end +arch blocked +x 19 +y 9 +end +arch blocked +x 19 +y 10 +end +arch blocked +x 19 y 11 end arch blocked -x 17 +x 19 y 12 end arch blocked -x 17 +x 19 y 13 end arch blocked -x 17 +x 19 y 14 end arch blocked -x 17 +x 19 y 15 end arch blocked -x 17 +x 19 y 16 end arch blocked -x 17 +x 19 y 17 end arch blocked -x 17 +x 19 y 18 end arch blocked -x 17 +x 19 y 19 end arch woodfloor -x 18 +x 20 unique 1 end arch teleporter hp 18 sp 1 -x 18 +x 20 speed 0 connected 3 end arch boulder -x 18 +x 20 end arch woodfloor -x 18 +x 20 y 1 unique 1 end arch teleporter hp 18 sp 2 -x 18 +x 20 y 1 speed 0 connected 3 end arch woodfloor -x 18 +x 20 y 2 unique 1 end arch teleporter hp 18 sp 3 -x 18 +x 20 y 2 speed 0 connected 3 end arch woodfloor -x 18 +x 20 y 3 unique 1 end arch teleporter hp 18 sp 4 -x 18 +x 20 y 3 speed 0 connected 3 end arch woodfloor -x 18 +x 20 y 4 unique 1 end arch teleporter hp 18 sp 5 -x 18 +x 20 y 4 speed 0 connected 3 end arch woodfloor -x 18 +x 20 y 5 unique 1 end arch button_plate -x 18 +x 20 y 5 connected 4 end arch blocked -x 18 +x 20 y 6 end arch woodfloor -x 18 +x 20 y 8 unique 1 end arch woodfloor -x 18 +x 20 y 9 unique 1 end arch teleporter hp 15 sp 12 -x 18 +x 20 y 9 speed 0 connected 7 @@ -4160,21 +6053,21 @@ end arch perm_magic_portal name The Mazes of Menace slaying /quests/peterm/Nethack_in_crossfire_entrance -hp -1 -sp -1 -x 18 +hp 0 +sp 0 +x 20 y 9 walk_on 0 fly_on 0 end arch blocked -x 18 +x 20 y 10 end arch teleporter hp 1 -sp 12 -x 18 +sp 11 +x 20 y 11 speed 0.0 connected 10 @@ -4183,14 +6076,14 @@ arch altar_trigger name Drop 100 platinum to enter Jewelers Room slaying platinacoin food 200 -x 18 +x 20 y 11 connected 11 end arch teleporter hp 15 -sp 6 -x 18 +sp 8 +x 20 y 12 speed 0.0 connected 30 @@ -4199,19 +6092,19 @@ arch altar_trigger name Drop 100 platinum to enter Alchemy Room slaying platinacoin food 100 -x 18 +x 20 y 12 connected 31 end arch teleporter hp 11 sp 5 -x 18 +x 20 y 13 connected 80 end arch pedestal_trigger -x 18 +x 20 y 13 type 17 invisible 1 @@ -4219,28 +6112,35 @@ connected 81 end arch creator other_arch jadecoin -x 18 +x 20 +y 14 +connected 52 +lifesave 1 +end +arch creator +other_arch jadecoin +x 20 y 14 connected 41 lifesave 1 end arch creator other_arch jadecoin -x 18 +x 20 y 14 connected 31 lifesave 1 end arch creator other_arch jadecoin -x 18 +x 20 y 14 connected 21 lifesave 1 end arch creator other_arch jadecoin -x 18 +x 20 y 14 connected 11 lifesave 1 @@ -4248,58 +6148,115 @@ end arch teleporter hp 15 sp 18 -x 18 +x 20 y 14 speed 0.0 connected 999 end -arch blocked -x 19 +arch woodfloor2 +x 20 +y 15 +end +arch lightningwall_5 +dam 6 +x 20 +y 15 +speed 100.0 +arch spell_sm_lightning +end +end +arch woodfloor2 +x 20 +y 17 +unique 1 +end +arch grate_closed_1 +x 20 +y 17 +connected 953 +end +arch woodfloor2 +x 20 +y 18 +end +arch detector +slaying lightning +x 20 +y 18 +speed 1.0 +connected 955 +end +arch woodfloor2 +x 20 +y 19 +end +arch detector +slaying lightning +x 20 +y 19 +speed 1.0 +connected 5 end arch blocked -x 19 +x 21 +end +arch button_small +x 21 +connected 9991 +end +arch dungeon_magic +x 21 +end +arch grass +x 21 +end +arch swall_2_1_2 +x 21 +end +arch blocked +x 21 y 1 end arch blocked -x 19 +x 21 y 2 end arch blocked -x 19 +x 21 y 3 end arch blocked -x 19 +x 21 y 4 end arch blocked -x 19 +x 21 y 5 end arch blocked -x 19 +x 21 y 6 end arch blocked -x 19 +x 21 y 7 end arch blocked -x 19 +x 21 y 8 end arch blocked -x 19 +x 21 y 9 end arch blocked -x 19 +x 21 y 10 end arch teleporter -hp 10 -sp 19 -x 19 +hp 12 +sp 18 +x 21 y 11 speed 0.0 connected 20 @@ -4308,14 +6265,14 @@ arch altar_trigger name Drop 100 platinum to enter Thaumaturgy Room slaying platinacoin food 100 -x 19 +x 21 y 11 connected 21 end arch teleporter hp 10 sp 1 -x 19 +x 21 y 12 speed 0.0 connected 40 @@ -4324,7 +6281,129 @@ arch altar_trigger name Drop 100 platinum to enter Glowing Crystal Room slaying platinacoin food 100 -x 19 +x 21 y 12 connected 41 end +arch blocked +x 21 +y 15 +end +arch blocked +x 21 +y 16 +end +arch blocked +x 21 +y 17 +end +arch blocked +x 21 +y 18 +end +arch lbulletwall_4 +name Vibrantly Glowing Crystal +sp 5 +dam 6 +x 22 +speed 0.1 +level 107 +invisible 1 +move_block 0 +no_pass 0 +blocksview 0 +end +arch woodfloor2 +x 22 +y 1 +end +arch woodfloor2 +x 22 +y 2 +unique 1 +end +arch grate_closed_1 +x 22 +y 2 +connected 50 +end +arch woodfloor2 +x 22 +y 3 +end +arch woodfloor2 +x 22 +y 4 +end +arch woodfloor2 +x 22 +y 5 +end +arch woodfloor2 +x 22 +y 6 +end +arch grate_closed_1 +x 22 +y 6 +connected 331 +end +arch woodfloor2 +x 22 +y 7 +end +arch detector +slaying lightning +x 22 +y 7 +speed 1.0 +connected 335 +end +arch director_3 +sp 1 +x 22 +y 8 +end +arch woodfloor2 +x 22 +y 15 +end +arch lightningwall_5 +dam 6 +x 22 +y 15 +speed 100.0 +arch spell_sm_lightning +end +end +arch grass +x 22 +y 17 +unique 1 +end +arch grate_open_1 +x 22 +y 17 +connected 955 +end +arch woodfloor2 +x 22 +y 18 +unique 1 +end +arch grate_closed_1 +x 22 +y 18 +connected 952 +end +arch woodfloor2 +x 22 +y 19 +end +arch detector +slaying lightning +x 22 +y 19 +speed 1.0 +connected 953 +end diff --git a/templates/guild/storage_room b/templates/guild/storage_room new file mode 100644 index 000000000..435e12c33 --- /dev/null +++ b/templates/guild/storage_room @@ -0,0 +1,13692 @@ +arch map +name storage_room +reset_timeout 300 +difficulty 1 +width 56 +height 39 +enter_x 28 +enter_y 14 +msg +Created: 2008-10-10 Chad Opperman | cromagic@sbcglobal.net +Modified: 2009-12-12 perkins +endmsg +end +arch blocked +y 9 +end +arch teleporter +hp 27 +sp 13 +y 10 +end +arch teleporter +hp 27 +sp 13 +y 11 +end +arch blocked +y 12 +end +arch stonefloor2 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +y 21 +end +arch stonefloor2 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 22 +end +arch stonefloor2 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 23 +end +arch stonefloor2 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 24 +end +arch stonefloor2 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 25 +end +arch stonefloor2 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_2 +y 26 +end +arch stonefloor2 +y 27 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 27 +end +arch stonefloor2 +y 28 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 28 +end +arch stonefloor2 +y 29 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 29 +end +arch stonefloor2 +y 30 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 30 +end +arch stonefloor2 +y 31 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 31 +end +arch stonefloor2 +y 32 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 32 +end +arch stonefloor2 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_2 +y 33 +end +arch stonefloor2 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 34 +end +arch stonefloor2 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 35 +end +arch stonefloor2 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 36 +end +arch stonefloor2 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +y 37 +end +arch stonefloor2 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +y 38 +end +arch blocked +x 1 +y 9 +end +arch teleporter +hp 27 +sp 13 +x 1 +y 10 +end +arch teleporter +hp 27 +sp 13 +x 1 +y 11 +end +arch blocked +x 1 +y 12 +end +arch stonefloor2 +x 1 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 1 +y 21 +end +arch stonefloor2 +x 1 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 22 +end +arch brazier +x 1 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 1 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 23 +end +arch stonefloor2 +x 1 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 24 +end +arch stonefloor2 +x 1 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 25 +end +arch stonefloor2 +x 1 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 1 +y 26 +end +arch stonefloor2 +x 1 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 1 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 1 +y 28 +end +arch stonefloor2 +x 1 +y 29 +move_block fly_low +unique 1 +end +arch brazier +x 1 +y 29 +glow_radius 10 +end +arch stonefloor2 +x 1 +y 30 +move_block fly_low +unique 1 +end +arch brazier +x 1 +y 30 +glow_radius 10 +end +arch stonefloor2 +x 1 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 1 +y 31 +end +arch stonefloor2 +x 1 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 1 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 1 +y 33 +end +arch stonefloor2 +x 1 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 34 +end +arch stonefloor2 +x 1 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 35 +end +arch stonefloor2 +x 1 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 36 +end +arch stonefloor2 +x 1 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 1 +y 37 +end +arch brazier +x 1 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 1 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 1 +y 38 +end +arch blocked +x 2 +y 9 +end +arch blocked +x 2 +y 10 +end +arch blocked +x 2 +y 11 +end +arch blocked +x 2 +y 12 +end +arch stonefloor2 +x 2 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 2 +y 21 +end +arch stonefloor2 +x 2 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 2 +y 22 +end +arch dungeon_magic +x 2 +y 22 +end +arch stonefloor2 +x 2 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 2 +y 23 +end +arch dungeon_magic +x 2 +y 23 +end +arch stonefloor2 +x 2 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 2 +y 24 +end +arch stonefloor2 +x 2 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 2 +y 25 +end +arch grate_closed_1 +x 2 +y 25 +connected 100 +end +arch stonefloor2 +x 2 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 2 +y 26 +end +arch stonefloor2 +x 2 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 2 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 2 +y 33 +end +arch stonefloor2 +x 2 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 2 +y 34 +end +arch grate_closed_1 +x 2 +y 34 +connected 100 +end +arch stonefloor2 +x 2 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 2 +y 35 +end +arch stonefloor2 +x 2 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 2 +y 36 +end +arch dungeon_magic +x 2 +y 36 +end +arch stonefloor2 +x 2 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 2 +y 37 +end +arch dungeon_magic +x 2 +y 37 +end +arch stonefloor2 +x 2 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 2 +y 38 +end +arch stonefloor2 +x 3 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 3 +y 21 +end +arch pedestal +x 3 +y 22 +connected 2 +move_on all +move_off all +end +arch stonefloor2 +x 3 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 3 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 3 +y 23 +connected 2 +move_on all +move_off all +end +arch stonefloor2 +x 3 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 3 +y 23 +connected 2 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 3 +y 23 +end +arch pedestal +x 3 +y 24 +connected 2 +move_on all +move_off all +end +arch stonefloor2 +x 3 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 24 +end +arch stonefloor2 +x 3 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 25 +end +arch grate_closed_1 +x 3 +y 25 +connected 100 +end +arch stonefloor2 +x 3 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 1 +x 3 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 3 +y 26 +end +arch stonefloor2 +x 3 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 3 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 9 +x 3 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 3 +y 33 +end +arch stonefloor2 +x 3 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 34 +end +arch grate_closed_1 +x 3 +y 34 +connected 100 +end +arch pedestal +x 3 +y 35 +connected 10 +end +arch stonefloor2 +x 3 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 35 +end +arch pedestal +x 3 +y 36 +connected 10 +move_on all +move_off all +end +arch stonefloor2 +x 3 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 3 +y 36 +connected 10 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 3 +y 36 +end +arch pedestal +x 3 +y 37 +connected 10 +move_on all +move_off all +end +arch stonefloor2 +x 3 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 3 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 3 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 3 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 3 +y 38 +end +arch stonefloor2 +x 4 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 4 +y 21 +end +arch stonefloor2 +x 4 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 4 +y 22 +end +arch dungeon_magic +x 4 +y 22 +end +arch stonefloor2 +x 4 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 4 +y 23 +end +arch dungeon_magic +x 4 +y 23 +end +arch stonefloor2 +x 4 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 4 +y 24 +end +arch stonefloor2 +x 4 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 4 +y 25 +end +arch grate_closed_1 +x 4 +y 25 +connected 100 +end +arch stonefloor2 +x 4 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 4 +y 26 +end +arch stonefloor2 +x 4 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 4 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 4 +y 33 +end +arch stonefloor2 +x 4 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 4 +y 34 +end +arch grate_closed_1 +x 4 +y 34 +connected 100 +end +arch stonefloor2 +x 4 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 4 +y 35 +end +arch stonefloor2 +x 4 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 4 +y 36 +end +arch dungeon_magic +x 4 +y 36 +end +arch stonefloor2 +x 4 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 4 +y 37 +end +arch dungeon_magic +x 4 +y 37 +end +arch stonefloor2 +x 4 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 4 +y 38 +end +arch stonefloor2 +x 5 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 5 +y 21 +end +arch stonefloor2 +x 5 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 22 +end +arch brazier +x 5 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 5 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 23 +end +arch stonefloor2 +x 5 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 24 +end +arch stonefloor2 +x 5 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 25 +end +arch stonefloor2 +x 5 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 5 +y 26 +end +arch stonefloor2 +x 5 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 5 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 5 +y 28 +end +arch stonefloor2 +x 5 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 5 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 5 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 5 +y 31 +end +arch stonefloor2 +x 5 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 5 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 5 +y 33 +end +arch stonefloor2 +x 5 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 34 +end +arch stonefloor2 +x 5 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 35 +end +arch stonefloor2 +x 5 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 36 +end +arch stonefloor2 +x 5 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 5 +y 37 +end +arch brazier +x 5 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 5 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 5 +y 38 +end +arch stonefloor2 +x 6 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 6 +y 21 +end +arch stonefloor2 +x 6 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 22 +end +arch stonefloor2 +x 6 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 23 +end +arch stonefloor2 +x 6 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 24 +end +arch stonefloor2 +x 6 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 25 +end +arch stonefloor2 +x 6 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 6 +y 26 +end +arch stonefloor2 +x 6 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 6 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 6 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 6 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 6 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 6 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 6 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 6 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 6 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 6 +y 33 +end +arch stonefloor2 +x 6 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 34 +end +arch stonefloor2 +x 6 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 35 +end +arch stonefloor2 +x 6 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 36 +end +arch stonefloor2 +x 6 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 6 +y 37 +end +arch stonefloor2 +x 6 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 6 +y 38 +end +arch stonefloor2 +x 7 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 7 +y 21 +end +arch stonefloor2 +x 7 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 22 +end +arch brazier +x 7 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 7 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 23 +end +arch stonefloor2 +x 7 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 24 +end +arch stonefloor2 +x 7 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 25 +end +arch stonefloor2 +x 7 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 7 +y 26 +end +arch stonefloor2 +x 7 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 7 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 7 +y 28 +end +arch stonefloor2 +x 7 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 7 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 7 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 7 +y 31 +end +arch stonefloor2 +x 7 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 7 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 7 +y 33 +end +arch stonefloor2 +x 7 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 34 +end +arch stonefloor2 +x 7 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 35 +end +arch stonefloor2 +x 7 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 36 +end +arch stonefloor2 +x 7 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 7 +y 37 +end +arch brazier +x 7 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 7 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 7 +y 38 +end +arch stonefloor2 +x 8 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 8 +y 21 +end +arch stonefloor2 +x 8 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 8 +y 22 +end +arch dungeon_magic +x 8 +y 22 +end +arch stonefloor2 +x 8 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 8 +y 23 +end +arch dungeon_magic +x 8 +y 23 +end +arch stonefloor2 +x 8 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 8 +y 24 +end +arch stonefloor2 +x 8 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 8 +y 25 +end +arch grate_closed_1 +x 8 +y 25 +connected 100 +end +arch stonefloor2 +x 8 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 8 +y 26 +end +arch stonefloor2 +x 8 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 8 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 8 +y 33 +end +arch stonefloor2 +x 8 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 8 +y 34 +end +arch grate_closed_1 +x 8 +y 34 +connected 100 +end +arch stonefloor2 +x 8 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 8 +y 35 +end +arch stonefloor2 +x 8 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 8 +y 36 +end +arch dungeon_magic +x 8 +y 36 +end +arch stonefloor2 +x 8 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 8 +y 37 +end +arch dungeon_magic +x 8 +y 37 +end +arch stonefloor2 +x 8 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 8 +y 38 +end +arch stonefloor2 +x 9 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 9 +y 21 +end +arch pedestal +x 9 +y 22 +connected 3 +end +arch stonefloor2 +x 9 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 9 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 9 +y 23 +connected 3 +end +arch stonefloor2 +x 9 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 9 +y 23 +connected 3 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 9 +y 23 +end +arch pedestal +x 9 +y 24 +connected 3 +end +arch stonefloor2 +x 9 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 24 +end +arch stonefloor2 +x 9 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 25 +end +arch grate_closed_1 +x 9 +y 25 +connected 100 +end +arch stonefloor2 +x 9 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 2 +x 9 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 9 +y 26 +end +arch stonefloor2 +x 9 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 9 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 10 +x 9 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 9 +y 33 +end +arch stonefloor2 +x 9 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 34 +end +arch grate_closed_1 +x 9 +y 34 +connected 100 +end +arch pedestal +x 9 +y 35 +connected 11 +end +arch stonefloor2 +x 9 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 35 +end +arch pedestal +x 9 +y 36 +connected 11 +move_on all +move_off all +end +arch stonefloor2 +x 9 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 9 +y 36 +connected 11 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 9 +y 36 +end +arch pedestal +x 9 +y 37 +connected 11 +move_on all +move_off all +end +arch stonefloor2 +x 9 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 9 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 9 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 9 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 9 +y 38 +end +arch stonefloor2 +x 10 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 10 +y 21 +end +arch stonefloor2 +x 10 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 10 +y 22 +end +arch dungeon_magic +x 10 +y 22 +end +arch stonefloor2 +x 10 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 10 +y 23 +end +arch dungeon_magic +x 10 +y 23 +end +arch stonefloor2 +x 10 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 10 +y 24 +end +arch stonefloor2 +x 10 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 10 +y 25 +end +arch grate_closed_1 +x 10 +y 25 +connected 100 +end +arch stonefloor2 +x 10 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 10 +y 26 +end +arch stonefloor2 +x 10 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 10 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 10 +y 33 +end +arch stonefloor2 +x 10 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 10 +y 34 +end +arch grate_closed_1 +x 10 +y 34 +connected 100 +end +arch stonefloor2 +x 10 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 10 +y 35 +end +arch stonefloor2 +x 10 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 10 +y 36 +end +arch dungeon_magic +x 10 +y 36 +end +arch stonefloor2 +x 10 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 10 +y 37 +end +arch dungeon_magic +x 10 +y 37 +end +arch stonefloor2 +x 10 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 10 +y 38 +end +arch stonefloor2 +x 11 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 11 +y 21 +end +arch stonefloor2 +x 11 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 22 +end +arch brazier +x 11 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 11 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 23 +end +arch stonefloor2 +x 11 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 24 +end +arch stonefloor2 +x 11 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 25 +end +arch stonefloor2 +x 11 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 11 +y 26 +end +arch stonefloor2 +x 11 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 11 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 11 +y 28 +end +arch stonefloor2 +x 11 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 11 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 11 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 11 +y 31 +end +arch stonefloor2 +x 11 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 11 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 11 +y 33 +end +arch stonefloor2 +x 11 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 34 +end +arch stonefloor2 +x 11 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 35 +end +arch stonefloor2 +x 11 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 36 +end +arch stonefloor2 +x 11 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 11 +y 37 +end +arch brazier +x 11 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 11 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 11 +y 38 +end +arch stonefloor2 +x 12 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 12 +y 21 +end +arch stonefloor2 +x 12 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 22 +end +arch stonefloor2 +x 12 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 23 +end +arch stonefloor2 +x 12 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 24 +end +arch stonefloor2 +x 12 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 25 +end +arch stonefloor2 +x 12 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 12 +y 26 +end +arch stonefloor2 +x 12 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 12 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 12 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 12 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 12 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 12 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 12 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 12 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 12 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 12 +y 33 +end +arch stonefloor2 +x 12 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 34 +end +arch stonefloor2 +x 12 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 35 +end +arch stonefloor2 +x 12 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 36 +end +arch stonefloor2 +x 12 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 12 +y 37 +end +arch stonefloor2 +x 12 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 12 +y 38 +end +arch stonefloor2 +x 13 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 13 +y 21 +end +arch stonefloor2 +x 13 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 22 +end +arch brazier +x 13 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 13 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 23 +end +arch stonefloor2 +x 13 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 24 +end +arch stonefloor2 +x 13 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 25 +end +arch stonefloor2 +x 13 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 13 +y 26 +end +arch stonefloor2 +x 13 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 13 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 13 +y 28 +end +arch stonefloor2 +x 13 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 13 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 13 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 13 +y 31 +end +arch stonefloor2 +x 13 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 13 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 13 +y 33 +end +arch stonefloor2 +x 13 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 34 +end +arch stonefloor2 +x 13 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 35 +end +arch stonefloor2 +x 13 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 36 +end +arch stonefloor2 +x 13 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 13 +y 37 +end +arch brazier +x 13 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 13 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 13 +y 38 +end +arch stonefloor2 +x 14 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 14 +y 21 +end +arch stonefloor2 +x 14 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 14 +y 22 +end +arch dungeon_magic +x 14 +y 22 +end +arch stonefloor2 +x 14 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 14 +y 23 +end +arch dungeon_magic +x 14 +y 23 +end +arch stonefloor2 +x 14 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 14 +y 24 +end +arch stonefloor2 +x 14 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 14 +y 25 +end +arch grate_closed_1 +x 14 +y 25 +connected 100 +end +arch stonefloor2 +x 14 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 14 +y 26 +end +arch stonefloor2 +x 14 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 14 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 14 +y 33 +end +arch stonefloor2 +x 14 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 14 +y 34 +end +arch grate_closed_1 +x 14 +y 34 +connected 100 +end +arch stonefloor2 +x 14 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 14 +y 35 +end +arch stonefloor2 +x 14 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 14 +y 36 +end +arch dungeon_magic +x 14 +y 36 +end +arch stonefloor2 +x 14 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 14 +y 37 +end +arch dungeon_magic +x 14 +y 37 +end +arch stonefloor2 +x 14 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 14 +y 38 +end +arch stonefloor2 +x 15 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 15 +y 21 +end +arch pedestal +x 15 +y 22 +connected 4 +end +arch stonefloor2 +x 15 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 15 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 15 +y 23 +connected 4 +end +arch stonefloor2 +x 15 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 15 +y 23 +connected 4 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 15 +y 23 +end +arch pedestal +x 15 +y 24 +connected 4 +end +arch stonefloor2 +x 15 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 24 +end +arch stonefloor2 +x 15 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 25 +end +arch grate_closed_1 +x 15 +y 25 +connected 100 +end +arch stonefloor2 +x 15 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 3 +x 15 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 15 +y 26 +end +arch stonefloor2 +x 15 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 15 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 11 +x 15 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 15 +y 33 +end +arch stonefloor2 +x 15 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 34 +end +arch grate_closed_1 +x 15 +y 34 +connected 100 +end +arch pedestal +x 15 +y 35 +connected 12 +end +arch stonefloor2 +x 15 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 35 +end +arch pedestal +x 15 +y 36 +connected 12 +move_on all +move_off all +end +arch stonefloor2 +x 15 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 15 +y 36 +connected 12 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 15 +y 36 +end +arch pedestal +x 15 +y 37 +connected 12 +move_on all +move_off all +end +arch stonefloor2 +x 15 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 15 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 15 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 15 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 15 +y 38 +end +arch stonefloor2 +x 16 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 16 +y 21 +end +arch stonefloor2 +x 16 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 16 +y 22 +end +arch dungeon_magic +x 16 +y 22 +end +arch stonefloor2 +x 16 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 16 +y 23 +end +arch dungeon_magic +x 16 +y 23 +end +arch stonefloor2 +x 16 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 16 +y 24 +end +arch stonefloor2 +x 16 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 16 +y 25 +end +arch grate_closed_1 +x 16 +y 25 +connected 100 +end +arch stonefloor2 +x 16 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 16 +y 26 +end +arch stonefloor2 +x 16 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 16 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 16 +y 33 +end +arch stonefloor2 +x 16 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 16 +y 34 +end +arch grate_closed_1 +x 16 +y 34 +connected 100 +end +arch stonefloor2 +x 16 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 16 +y 35 +end +arch stonefloor2 +x 16 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 16 +y 36 +end +arch dungeon_magic +x 16 +y 36 +end +arch stonefloor2 +x 16 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 16 +y 37 +end +arch dungeon_magic +x 16 +y 37 +end +arch stonefloor2 +x 16 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 16 +y 38 +end +arch button_small +x 17 +y 3 +connected 9991 +end +arch lightningwall_5 +x 17 +y 4 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 17 +y 4 +end +arch detector +slaying lightning +x 17 +y 5 +speed 1.0 +connected 9998 +end +arch lightningwall_5 +sp 1 +x 17 +y 6 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 6 +end +arch lightningwall_5 +sp 1 +x 17 +y 7 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 7 +end +arch lightningwall_5 +sp 1 +x 17 +y 8 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 8 +end +arch lightningwall_5 +sp 1 +x 17 +y 9 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 9 +end +arch lightningwall_5 +sp 1 +x 17 +y 10 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 10 +end +arch lightningwall_5 +sp 1 +x 17 +y 11 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 11 +end +arch lightningwall_5 +sp 1 +x 17 +y 12 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 12 +end +arch lightningwall_5 +sp 1 +x 17 +y 13 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 13 +end +arch lightningwall_5 +sp 1 +x 17 +y 14 +speed 0.0 +level 100 +connected 9991 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 17 +y 14 +end +arch stonefloor2 +x 17 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 17 +y 21 +end +arch stonefloor2 +x 17 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 22 +end +arch brazier +x 17 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 17 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 23 +end +arch stonefloor2 +x 17 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 24 +end +arch stonefloor2 +x 17 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 25 +end +arch stonefloor2 +x 17 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 17 +y 26 +end +arch stonefloor2 +x 17 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 17 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 17 +y 28 +end +arch stonefloor2 +x 17 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 17 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 17 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 17 +y 31 +end +arch stonefloor2 +x 17 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 17 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 17 +y 33 +end +arch stonefloor2 +x 17 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 34 +end +arch stonefloor2 +x 17 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 35 +end +arch stonefloor2 +x 17 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 36 +end +arch stonefloor2 +x 17 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 17 +y 37 +end +arch brazier +x 17 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 17 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 17 +y 38 +end +arch stonefloor2 +x 18 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 18 +y 21 +end +arch stonefloor2 +x 18 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 22 +end +arch stonefloor2 +x 18 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 23 +end +arch stonefloor2 +x 18 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 24 +end +arch stonefloor2 +x 18 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 25 +end +arch stonefloor2 +x 18 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 18 +y 26 +end +arch stonefloor2 +x 18 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 18 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 18 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 18 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 18 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 18 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 18 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 18 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 18 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 18 +y 33 +end +arch stonefloor2 +x 18 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 34 +end +arch stonefloor2 +x 18 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 35 +end +arch stonefloor2 +x 18 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 36 +end +arch stonefloor2 +x 18 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 18 +y 37 +end +arch stonefloor2 +x 18 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 18 +y 38 +end +arch blocked +x 19 +end +arch blocked +x 19 +y 1 +end +arch blocked +x 19 +y 2 +end +arch blocked +x 19 +y 3 +end +arch blocked +x 19 +y 4 +end +arch blocked +x 19 +y 5 +end +arch blocked +x 19 +y 6 +end +arch blocked +x 19 +y 7 +end +arch blocked +x 19 +y 8 +end +arch blocked +x 19 +y 9 +end +arch blocked +x 19 +y 10 +end +arch blocked +x 19 +y 11 +end +arch blocked +x 19 +y 12 +end +arch blocked +x 19 +y 13 +end +arch blocked +x 19 +y 14 +end +arch blocked +x 19 +y 15 +end +arch blocked +x 19 +y 16 +end +arch stonefloor2 +x 19 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 19 +y 21 +end +arch stonefloor2 +x 19 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 22 +end +arch brazier +x 19 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 19 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 23 +end +arch stonefloor2 +x 19 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 24 +end +arch stonefloor2 +x 19 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 25 +end +arch stonefloor2 +x 19 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 19 +y 26 +end +arch stonefloor2 +x 19 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 19 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 19 +y 28 +end +arch stonefloor2 +x 19 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 19 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 19 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 19 +y 31 +end +arch stonefloor2 +x 19 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 19 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 19 +y 33 +end +arch stonefloor2 +x 19 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 34 +end +arch stonefloor2 +x 19 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 35 +end +arch stonefloor2 +x 19 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 36 +end +arch stonefloor2 +x 19 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 19 +y 37 +end +arch brazier +x 19 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 19 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 19 +y 38 +end +arch grass_only +x 20 +end +arch swall_2_2_2 +x 20 +end +arch grass_only +x 20 +y 1 +end +arch swall_2_1_1 +x 20 +y 1 +end +arch grass_only +x 20 +y 2 +end +arch swall_2_1_1 +x 20 +y 2 +end +arch grass_only +x 20 +y 3 +end +arch swall_2_1_1 +x 20 +y 3 +end +arch grass_only +x 20 +y 4 +end +arch swall_2_1_1 +x 20 +y 4 +end +arch grass_only +x 20 +y 5 +end +arch swall_2_1_1 +x 20 +y 5 +end +arch grass_only +x 20 +y 6 +end +arch swall_2_1_1 +x 20 +y 6 +end +arch grass_only +x 20 +y 7 +end +arch swall_2_1_1 +x 20 +y 7 +end +arch grass_only +x 20 +y 8 +end +arch swall_2_1_1 +x 20 +y 8 +end +arch grass_only +x 20 +y 9 +end +arch swall_2_1_1 +x 20 +y 9 +end +arch grass_only +x 20 +y 10 +end +arch swall_2_1_1 +x 20 +y 10 +end +arch grass_only +x 20 +y 11 +end +arch swall_2_1_1 +x 20 +y 11 +end +arch grass_only +x 20 +y 12 +end +arch swall_2_1_1 +x 20 +y 12 +end +arch grass_only +x 20 +y 13 +end +arch swall_2_1_1 +x 20 +y 13 +end +arch grass_only +x 20 +y 14 +end +arch swall_2_1_1 +x 20 +y 14 +end +arch grass_only +x 20 +y 15 +end +arch swall_2_2_1 +x 20 +y 15 +end +arch blocked +x 20 +y 16 +end +arch stonefloor2 +x 20 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 20 +y 21 +end +arch stonefloor2 +x 20 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 20 +y 22 +end +arch dungeon_magic +x 20 +y 22 +end +arch stonefloor2 +x 20 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 20 +y 23 +end +arch dungeon_magic +x 20 +y 23 +end +arch stonefloor2 +x 20 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 20 +y 24 +end +arch stonefloor2 +x 20 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 20 +y 25 +end +arch grate_closed_1 +x 20 +y 25 +connected 100 +end +arch stonefloor2 +x 20 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 20 +y 26 +end +arch stonefloor2 +x 20 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 20 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 20 +y 33 +end +arch stonefloor2 +x 20 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 20 +y 34 +end +arch grate_closed_1 +x 20 +y 34 +connected 100 +end +arch stonefloor2 +x 20 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 20 +y 35 +end +arch stonefloor2 +x 20 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 20 +y 36 +end +arch dungeon_magic +x 20 +y 36 +end +arch stonefloor2 +x 20 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 20 +y 37 +end +arch dungeon_magic +x 20 +y 37 +end +arch stonefloor2 +x 20 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 20 +y 38 +end +arch button_small +x 21 +connected 9991 +end +arch grass_only +x 21 +end +arch swall_2_1_2 +x 21 +end +arch grass_only +x 21 +y 1 +end +arch dungeon_magic +x 21 +y 1 +end +arch grass_only +x 21 +y 2 +end +arch dungeon_magic +x 21 +y 2 +end +arch grass_only +x 21 +y 3 +end +arch dungeon_magic +x 21 +y 3 +end +arch grass_only +x 21 +y 4 +end +arch dungeon_magic +x 21 +y 4 +end +arch grass_only +x 21 +y 5 +end +arch dungeon_magic +x 21 +y 5 +end +arch grass_only +x 21 +y 6 +end +arch dungeon_magic +x 21 +y 6 +end +arch grass_only +x 21 +y 7 +end +arch dungeon_magic +x 21 +y 7 +end +arch grass_only +x 21 +y 8 +end +arch dungeon_magic +x 21 +y 8 +end +arch grass_only +x 21 +y 9 +end +arch dungeon_magic +x 21 +y 9 +end +arch grass_only +x 21 +y 10 +end +arch dungeon_magic +x 21 +y 10 +end +arch grass_only +x 21 +y 11 +end +arch dungeon_magic +x 21 +y 11 +end +arch grass_only +x 21 +y 12 +end +arch dungeon_magic +x 21 +y 12 +end +arch grass_only +x 21 +y 13 +end +arch dungeon_magic +x 21 +y 13 +end +arch grass_only +x 21 +y 14 +end +arch dungeon_magic +x 21 +y 14 +end +arch grass_only +x 21 +y 15 +end +arch swall_2_1_2 +x 21 +y 15 +end +arch blocked +x 21 +y 16 +end +arch stonefloor2 +x 21 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 21 +y 21 +end +arch pedestal +x 21 +y 22 +connected 5 +end +arch stonefloor2 +x 21 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 21 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 21 +y 23 +connected 5 +move_on all +move_off all +end +arch stonefloor2 +x 21 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 21 +y 23 +connected 5 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 21 +y 23 +end +arch pedestal +x 21 +y 24 +connected 5 +move_on all +move_off all +end +arch stonefloor2 +x 21 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 24 +end +arch stonefloor2 +x 21 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 25 +end +arch grate_closed_1 +x 21 +y 25 +connected 100 +end +arch stonefloor2 +x 21 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 4 +x 21 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 21 +y 26 +end +arch stonefloor2 +x 21 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 21 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 12 +x 21 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 21 +y 33 +end +arch stonefloor2 +x 21 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 34 +end +arch grate_closed_1 +x 21 +y 34 +connected 100 +end +arch pedestal +x 21 +y 35 +connected 13 +end +arch stonefloor2 +x 21 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 35 +end +arch pedestal +x 21 +y 36 +connected 13 +move_on all +move_off all +end +arch stonefloor2 +x 21 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 21 +y 36 +connected 13 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 21 +y 36 +end +arch pedestal +x 21 +y 37 +connected 13 +move_on all +move_off all +end +arch stonefloor2 +x 21 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 21 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 21 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 21 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 21 +y 38 +end +arch grass_only +x 22 +end +arch swall_2_1_2 +x 22 +end +arch grass_only +x 22 +y 1 +end +arch dungeon_magic +x 22 +y 1 +end +arch grass_only +x 22 +y 2 +end +arch dungeon_magic +x 22 +y 2 +end +arch grass_only +x 22 +y 3 +end +arch dungeon_magic +x 22 +y 3 +end +arch grass_only +x 22 +y 4 +end +arch dungeon_magic +x 22 +y 4 +end +arch grass_only +x 22 +y 5 +end +arch dungeon_magic +x 22 +y 5 +end +arch grass_only +x 22 +y 6 +end +arch dungeon_magic +x 22 +y 6 +end +arch grass_only +x 22 +y 7 +end +arch dungeon_magic +x 22 +y 7 +end +arch grass_only +x 22 +y 8 +end +arch dungeon_magic +x 22 +y 8 +end +arch grass_only +x 22 +y 9 +end +arch dungeon_magic +x 22 +y 9 +end +arch grass_only +x 22 +y 10 +end +arch dungeon_magic +x 22 +y 10 +end +arch grass_only +x 22 +y 11 +end +arch dungeon_magic +x 22 +y 11 +end +arch grass_only +x 22 +y 12 +end +arch dungeon_magic +x 22 +y 12 +end +arch grass_only +x 22 +y 13 +end +arch dungeon_magic +x 22 +y 13 +end +arch grass_only +x 22 +y 14 +end +arch dungeon_magic +x 22 +y 14 +end +arch grass_only +x 22 +y 15 +end +arch swall_2_1_2 +x 22 +y 15 +end +arch blocked +x 22 +y 16 +end +arch stonefloor2 +x 22 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 22 +y 21 +end +arch stonefloor2 +x 22 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 22 +y 22 +end +arch dungeon_magic +x 22 +y 22 +end +arch stonefloor2 +x 22 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 22 +y 23 +end +arch dungeon_magic +x 22 +y 23 +end +arch stonefloor2 +x 22 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 22 +y 24 +end +arch stonefloor2 +x 22 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 22 +y 25 +end +arch grate_closed_1 +x 22 +y 25 +connected 100 +end +arch stonefloor2 +x 22 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 22 +y 26 +end +arch stonefloor2 +x 22 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 22 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 22 +y 33 +end +arch stonefloor2 +x 22 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 22 +y 34 +end +arch grate_closed_1 +x 22 +y 34 +connected 100 +end +arch stonefloor2 +x 22 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 22 +y 35 +end +arch stonefloor2 +x 22 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 22 +y 36 +end +arch dungeon_magic +x 22 +y 36 +end +arch stonefloor2 +x 22 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 22 +y 37 +end +arch dungeon_magic +x 22 +y 37 +end +arch stonefloor2 +x 22 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 22 +y 38 +end +arch grass_only +x 23 +end +arch swall_2_1_2 +x 23 +end +arch grass_only +x 23 +y 1 +end +arch dungeon_magic +x 23 +y 1 +end +arch grass_only +x 23 +y 2 +end +arch dungeon_magic +x 23 +y 2 +end +arch woodfloor +x 23 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_2_2 +x 23 +y 3 +end +arch woodfloor +x 23 +y 4 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 23 +y 4 +end +arch stwall_0 +x 23 +y 4 +end +arch woodfloor +x 23 +y 5 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 5 +end +arch stwindow_win1 +x 23 +y 5 +end +arch woodfloor +x 23 +y 6 +move_block fly_low +unique 1 +end +arch wall_3_2 +x 23 +y 6 +end +arch stwall_0 +x 23 +y 6 +end +arch woodfloor +x 23 +y 7 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 23 +y 7 +end +arch woodfloor +x 23 +y 8 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 23 +y 8 +end +arch woodfloor +x 23 +y 9 +move_block fly_low +unique 1 +end +arch wall_3_2 +x 23 +y 9 +end +arch stwall_0 +x 23 +y 9 +end +arch woodfloor +x 23 +y 10 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 10 +end +arch stwindow_win1 +x 23 +y 10 +end +arch woodfloor +x 23 +y 11 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 23 +y 11 +end +arch stwall_0 +x 23 +y 11 +end +arch woodfloor +x 23 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_2_1 +x 23 +y 12 +end +arch grass_only +x 23 +y 13 +end +arch dungeon_magic +x 23 +y 13 +end +arch grass_only +x 23 +y 14 +end +arch dungeon_magic +x 23 +y 14 +end +arch grass_only +x 23 +y 15 +end +arch swall_2_1_2 +x 23 +y 15 +end +arch blocked +x 23 +y 16 +end +arch stonefloor2 +x 23 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 23 +y 21 +end +arch stonefloor2 +x 23 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 22 +end +arch brazier +x 23 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 23 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 23 +end +arch stonefloor2 +x 23 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 24 +end +arch stonefloor2 +x 23 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 25 +end +arch stonefloor2 +x 23 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 23 +y 26 +end +arch stonefloor2 +x 23 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 23 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 23 +y 28 +end +arch stonefloor2 +x 23 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 23 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 23 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 23 +y 31 +end +arch stonefloor2 +x 23 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 23 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 23 +y 33 +end +arch stonefloor2 +x 23 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 34 +end +arch stonefloor2 +x 23 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 35 +end +arch stonefloor2 +x 23 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 36 +end +arch stonefloor2 +x 23 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 23 +y 37 +end +arch brazier +x 23 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 23 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 23 +y 38 +end +arch grass_only +x 24 +end +arch swall_2_1_2 +x 24 +end +arch grass_only +x 24 +y 1 +end +arch dungeon_magic +x 24 +y 1 +end +arch grass_only +x 24 +y 2 +end +arch dungeon_magic +x 24 +y 2 +end +arch woodfloor +x 24 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 24 +y 3 +end +arch stwall_0 +x 24 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 24 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 24 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 1 +hp 3 +sp 22 +x 24 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 24 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 24 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 9 +hp 3 +sp 37 +x 24 +y 5 +connected 1 +end +arch woodfloor +x 24 +y 6 +move_block fly_low +unique 1 +end +arch wall_1_3 +x 24 +y 6 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 24 +y 7 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 24 +y 7 +move_block fly_low +unique 1 +end +arch stair_down_2 +slaying storage_room +hp 24 +sp 29 +x 24 +y 7 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 24 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 24 +y 8 +move_block fly_low +unique 1 +end +arch stair_down_2 +slaying storage_room +hp 24 +sp 30 +x 24 +y 8 +end +arch woodfloor +x 24 +y 9 +move_block fly_low +unique 1 +end +arch wall_1_3 +x 24 +y 9 +end +arch woodfloor +x 24 +y 10 +move_block fly_low +unique 1 +end +arch woodfloor +x 24 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 24 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 24 +y 12 +end +arch stwall_0 +x 24 +y 12 +end +arch grass_only +x 24 +y 13 +end +arch dungeon_magic +x 24 +y 13 +end +arch grass_only +x 24 +y 14 +end +arch dungeon_magic +x 24 +y 14 +end +arch grass_only +x 24 +y 15 +end +arch swall_2_1_2 +x 24 +y 15 +end +arch blocked +x 24 +y 16 +end +arch stonefloor2 +x 24 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 24 +y 21 +end +arch stonefloor2 +x 24 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 22 +end +arch stonefloor2 +x 24 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 23 +end +arch stonefloor2 +x 24 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 24 +end +arch stonefloor2 +x 24 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 25 +end +arch stonefloor2 +x 24 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 24 +y 26 +end +arch stonefloor2 +x 24 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 24 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 24 +y 29 +move_block fly_low +unique 1 +end +arch stair_up_2 +slaying storage_room +hp 24 +sp 7 +x 24 +y 29 +end +arch stonefloor2 +x 24 +y 30 +move_block fly_low +unique 1 +end +arch stair_up_2 +slaying storage_room +hp 24 +sp 8 +x 24 +y 30 +end +arch stonefloor2 +x 24 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 24 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 24 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 24 +y 33 +end +arch stonefloor2 +x 24 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 34 +end +arch stonefloor2 +x 24 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 35 +end +arch stonefloor2 +x 24 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 36 +end +arch stonefloor2 +x 24 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 24 +y 37 +end +arch stonefloor2 +x 24 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 24 +y 38 +end +arch grass_only +x 25 +end +arch swall_2_1_2 +x 25 +end +arch grass_only +x 25 +y 1 +end +arch dungeon_magic +x 25 +y 1 +end +arch grass_only +x 25 +y 2 +end +arch dungeon_magic +x 25 +y 2 +end +arch woodfloor +x 25 +y 3 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 25 +y 3 +end +arch stwindow_win2 +x 25 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 25 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 25 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 2 +hp 9 +sp 22 +x 25 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 25 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 25 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 10 +hp 9 +sp 37 +x 25 +y 5 +connected 1 +end +arch woodfloor +x 25 +y 6 +move_block fly_low +unique 1 +end +arch brazier +x 25 +y 6 +glow_radius 10 +end +arch woodfloor +x 25 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 7 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 25 +y 7 +end +arch grate_closed_2 +x 25 +y 7 +connected 100 +end +arch woodfloor +x 25 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 8 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 25 +y 8 +end +arch grate_closed_2 +x 25 +y 8 +connected 100 +end +arch woodfloor +x 25 +y 9 +move_block fly_low +unique 1 +end +arch brazier +x 25 +y 9 +glow_radius 10 +end +arch woodfloor +x 25 +y 10 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 25 +y 12 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 25 +y 12 +end +arch stwindow_win2 +x 25 +y 12 +end +arch grass_only +x 25 +y 13 +end +arch dungeon_magic +x 25 +y 13 +end +arch grass_only +x 25 +y 14 +end +arch dungeon_magic +x 25 +y 14 +end +arch grass_only +x 25 +y 15 +end +arch swall_2_1_2 +x 25 +y 15 +end +arch blocked +x 25 +y 16 +end +arch stonefloor2 +x 25 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 25 +y 21 +end +arch stonefloor2 +x 25 +y 22 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 25 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 34 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 37 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 25 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 25 +y 38 +end +arch grass_only +x 26 +end +arch swall_2_1_2 +x 26 +end +arch grass_only +x 26 +y 1 +end +arch dungeon_magic +x 26 +y 1 +end +arch grass_only +x 26 +y 2 +end +arch dungeon_magic +x 26 +y 2 +end +arch woodfloor +x 26 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 26 +y 3 +end +arch stwall_0 +x 26 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 26 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 26 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 3 +hp 15 +sp 22 +x 26 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 26 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 26 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 11 +hp 15 +sp 37 +x 26 +y 5 +connected 1 +end +arch woodfloor +x 26 +y 6 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 9 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 10 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 26 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 26 +y 12 +end +arch stwall_0 +x 26 +y 12 +end +arch grass_only +x 26 +y 13 +end +arch dungeon_magic +x 26 +y 13 +end +arch grass_only +x 26 +y 14 +end +arch dungeon_magic +x 26 +y 14 +end +arch grass_only +x 26 +y 15 +end +arch swall_2_1_2 +x 26 +y 15 +end +arch blocked +x 26 +y 16 +end +arch stonefloor2 +x 26 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 26 +y 21 +end +arch stonefloor2 +x 26 +y 22 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 25 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 29 +move_block fly_low +unique 1 +end +arch brazier +x 26 +y 29 +glow_radius 10 +end +arch stonefloor2 +x 26 +y 30 +move_block fly_low +unique 1 +end +arch brazier +x 26 +y 30 +glow_radius 10 +end +arch stonefloor2 +x 26 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 34 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 37 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 26 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 26 +y 38 +end +arch grass_only +x 27 +end +arch swall_2_1_2 +x 27 +end +arch grass_only +x 27 +y 1 +end +arch dungeon_magic +x 27 +y 1 +end +arch grass_only +x 27 +y 2 +end +arch dungeon_magic +x 27 +y 2 +end +arch woodfloor +x 27 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 27 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 27 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 27 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 4 +hp 21 +sp 22 +x 27 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 27 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 27 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 12 +hp 21 +sp 37 +x 27 +y 5 +connected 1 +end +arch woodfloor +x 27 +y 6 +move_block fly_low +unique 1 +end +arch woodfloor +x 27 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 27 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 27 +y 9 +move_block fly_low +unique 1 +end +arch book_clasp +name Owner's Guide +msg +Welcome to your storage building. This fine facility has a auto-storing feature, so that you can store all your items into their respective areas faster than normal. Also, there are powerful anti magic fields all through this facility, to make it impossible to have your loot destroyed. To use the auto sort feature, place items on the pits above, then pull the lever. That causes the items to fall through tubes and end up in different rooms to your sorting delight. Enjoy! +endmsg +x 27 +y 9 +end +arch woodfloor +x 27 +y 10 +move_block fly_low +unique 1 +end +arch button_small +x 27 +y 11 +connected 99919 +end +arch woodfloor +x 27 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 27 +y 12 +move_block fly_low +unique 1 +end +arch grate_closed_1 +x 27 +y 12 +connected 454 +end +arch grass_only +x 27 +y 13 +end +arch dungeon_magic +x 27 +y 13 +end +arch dungeon_magic +x 27 +y 13 +end +arch sign +name Guardian +x 27 +y 13 +arch event_say +name GUILD_TEMPLATE +title Python +slaying /python/guilds/guild_entry.py +end +end +arch magic_mouth +msg +Guardian says: If you are worthy to enter here, say enter. +Be warned - if you are not welcome here you will suffer my wrath. +endmsg +x 27 +y 13 +end +arch grass +x 27 +y 13 +end +arch grass_only +x 27 +y 14 +end +arch dungeon_magic +x 27 +y 14 +end +arch exit +slaying /pup_land/lone_town/town +hp 1 +sp 10 +x 27 +y 15 +move_on all +end +arch grass_only +x 27 +y 15 +end +arch dungeon_magic +x 27 +y 15 +end +arch blocked +x 27 +y 16 +end +arch grate_closed_1 +x 27 +y 20 +connected 100 +end +arch stonefloor2 +x 27 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 27 +y 21 +end +arch stonefloor2 +x 27 +y 22 +move_block fly_low +unique 1 +end +arch brazier +x 27 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 27 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 25 +move_block fly_low +unique 1 +end +arch cwall_0 +x 27 +y 25 +end +arch stonefloor2 +x 27 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 27 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 27 +y 29 +move_block fly_low +unique 1 +end +arch cwall_0 +x 27 +y 29 +end +arch stonefloor2 +x 27 +y 30 +move_block fly_low +unique 1 +end +arch cwall_0 +x 27 +y 30 +end +arch stonefloor2 +x 27 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 27 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 27 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 34 +move_block fly_low +unique 1 +end +arch cwall_0 +x 27 +y 34 +end +arch stonefloor2 +x 27 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 27 +y 37 +move_block fly_low +unique 1 +end +arch brazier +x 27 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 27 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 27 +y 38 +end +arch grass_only +x 28 +end +arch swall_2_1_2 +x 28 +end +arch grass_only +x 28 +y 1 +end +arch dungeon_magic +x 28 +y 1 +end +arch grass_only +x 28 +y 2 +end +arch dungeon_magic +x 28 +y 2 +end +arch woodfloor +x 28 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 28 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 28 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 28 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 5 +hp 34 +sp 22 +x 28 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 28 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 28 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 13 +hp 34 +sp 37 +x 28 +y 5 +connected 1 +end +arch woodfloor +x 28 +y 6 +move_block fly_low +unique 1 +end +arch button_handle +name Loot-Chute Lever +x 28 +y 6 +connected 1 +end +arch woodfloor +x 28 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 28 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 28 +y 9 +move_block fly_low +unique 1 +end +arch woodfloor +x 28 +y 10 +move_block fly_low +unique 1 +end +arch button_small +x 28 +y 11 +connected 99919 +end +arch woodfloor +x 28 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 28 +y 12 +move_block fly_low +unique 1 +end +arch grate_closed_1 +x 28 +y 12 +connected 454 +end +arch grass_only +x 28 +y 13 +end +arch dungeon_magic +x 28 +y 13 +end +arch dungeon_magic +x 28 +y 13 +end +arch magic_mouth +msg +Guardian says: If you are worthy to enter here, say enter. +Be warned - if you are not welcome here you will suffer my wrath. +endmsg +x 28 +y 13 +end +arch grass +x 28 +y 13 +end +arch grass_only +x 28 +y 14 +end +arch dungeon_magic +x 28 +y 14 +end +arch exit +slaying /pup_land/lone_town/town +hp 2 +sp 10 +x 28 +y 15 +move_on all +end +arch grass_only +x 28 +y 15 +end +arch dungeon_magic +x 28 +y 15 +end +arch blocked +x 28 +y 16 +end +arch stonefloor2 +x 28 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 28 +y 21 +end +arch stonefloor2 +x 28 +y 22 +move_block fly_low +unique 1 +end +arch brazier +x 28 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 28 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 25 +move_block fly_low +unique 1 +end +arch cwall_0 +x 28 +y 25 +end +arch stonefloor2 +x 28 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 28 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 28 +y 29 +move_block fly_low +unique 1 +end +arch cwall_0 +x 28 +y 29 +end +arch stonefloor2 +x 28 +y 30 +move_block fly_low +unique 1 +end +arch cwall_0 +x 28 +y 30 +end +arch stonefloor2 +x 28 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 28 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 28 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 34 +move_block fly_low +unique 1 +end +arch cwall_0 +x 28 +y 34 +end +arch stonefloor2 +x 28 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 28 +y 37 +move_block fly_low +unique 1 +end +arch brazier +x 28 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 28 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 28 +y 38 +end +arch grass_only +x 29 +end +arch swall_2_1_2 +x 29 +end +arch grass_only +x 29 +y 1 +end +arch dungeon_magic +x 29 +y 1 +end +arch grass_only +x 29 +y 2 +end +arch dungeon_magic +x 29 +y 2 +end +arch woodfloor +x 29 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 29 +y 3 +end +arch stwall_0 +x 29 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 29 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 29 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 6 +hp 40 +sp 22 +x 29 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 29 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 29 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 14 +hp 40 +sp 37 +x 29 +y 5 +connected 1 +end +arch woodfloor +x 29 +y 6 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 9 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 9 +type 71 +unique 0 +is_buildable 1 +end +arch guard +x 29 +y 9 +level 1000 +attacktype 5201023 +monster 0 +friendly 1 +hitback 1 +reflect_missile 0 +reflect_spell 0 +can_use_scroll 1 +can_use_bow 1 +can_use_armour 1 +can_use_weapon 1 +can_use_ring 1 +can_use_skill 1 +can_use_rod 1 +can_see_in_dark 1 +can_use_wand 1 +arch event_say +name GUILD_TEMPLATE GuildMaster +title Python +slaying /python/guilds/clearance.py +end +end +arch woodfloor +x 29 +y 10 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 29 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 29 +y 12 +end +arch stwall_0 +x 29 +y 12 +end +arch grass_only +x 29 +y 13 +end +arch dungeon_magic +x 29 +y 13 +end +arch grass_only +x 29 +y 14 +end +arch dungeon_magic +x 29 +y 14 +end +arch grass_only +x 29 +y 15 +end +arch swall_2_1_2 +x 29 +y 15 +end +arch blocked +x 29 +y 16 +end +arch stonefloor2 +x 29 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 29 +y 21 +end +arch stonefloor2 +x 29 +y 22 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 25 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 29 +move_block fly_low +unique 1 +end +arch brazier +x 29 +y 29 +glow_radius 10 +end +arch stonefloor2 +x 29 +y 30 +move_block fly_low +unique 1 +end +arch brazier +x 29 +y 30 +glow_radius 10 +end +arch stonefloor2 +x 29 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 34 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 37 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 29 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 29 +y 38 +end +arch grass_only +x 30 +end +arch swall_2_1_2 +x 30 +end +arch grass_only +x 30 +y 1 +end +arch dungeon_magic +x 30 +y 1 +end +arch grass_only +x 30 +y 2 +end +arch dungeon_magic +x 30 +y 2 +end +arch woodfloor +x 30 +y 3 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 30 +y 3 +end +arch stwindow_win2 +x 30 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 30 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 30 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 7 +hp 46 +sp 22 +x 30 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 30 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 30 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 15 +hp 46 +sp 37 +x 30 +y 5 +connected 1 +end +arch woodfloor +x 30 +y 6 +move_block fly_low +unique 1 +end +arch brazier +x 30 +y 6 +glow_radius 10 +end +arch woodfloor +x 30 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 7 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 7 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 30 +y 7 +end +arch grate_closed_2 +x 30 +y 7 +connected 100 +end +arch woodfloor +x 30 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 8 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 8 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 30 +y 8 +end +arch grate_closed_2 +x 30 +y 8 +connected 100 +end +arch woodfloor +x 30 +y 9 +move_block fly_low +unique 1 +end +arch brazier +x 30 +y 9 +glow_radius 10 +end +arch woodfloor +x 30 +y 10 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 10 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 30 +y 10 +end +arch grate_closed_2 +x 30 +y 10 +connected 9998 +end +arch woodfloor +x 30 +y 11 +move_block fly_low +unique 1 +end +arch woodfloor +x 30 +y 11 +type 71 +unique 1 +is_buildable 0 +end +arch dungeon_magic +x 30 +y 11 +end +arch grate_closed_2 +x 30 +y 11 +connected 9998 +end +arch woodfloor +x 30 +y 12 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 30 +y 12 +end +arch stwindow_win2 +x 30 +y 12 +end +arch grass_only +x 30 +y 13 +end +arch dungeon_magic +x 30 +y 13 +end +arch grass_only +x 30 +y 14 +end +arch dungeon_magic +x 30 +y 14 +end +arch grass_only +x 30 +y 15 +end +arch swall_2_1_2 +x 30 +y 15 +end +arch blocked +x 30 +y 16 +end +arch teleporter +hp 27 +sp 13 +x 30 +y 19 +end +arch stonefloor2 +x 30 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 30 +y 21 +end +arch stonefloor2 +x 30 +y 22 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 23 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 24 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 25 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 26 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 33 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 34 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 35 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 36 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 37 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 30 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 30 +y 38 +end +arch grass_only +x 31 +end +arch swall_2_1_2 +x 31 +end +arch grass_only +x 31 +y 1 +end +arch dungeon_magic +x 31 +y 1 +end +arch grass_only +x 31 +y 2 +end +arch dungeon_magic +x 31 +y 2 +end +arch woodfloor +x 31 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 31 +y 3 +end +arch stwall_0 +x 31 +y 3 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 4 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 4 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 8 +hp 52 +sp 22 +x 31 +y 4 +connected 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 5 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 5 +move_block fly_low +unique 1 +end +arch pit_closed +name To Room 16 +hp 52 +sp 37 +x 31 +y 5 +connected 1 +end +arch woodfloor +x 31 +y 6 +move_block fly_low +unique 1 +end +arch wall_1_4 +x 31 +y 6 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 7 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 7 +move_block fly_low +unique 1 +end +arch stair_down_4 +slaying storage_room +hp 31 +sp 29 +x 31 +y 7 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 8 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 8 +move_block fly_low +unique 1 +end +arch stair_down_4 +slaying storage_room +hp 31 +sp 30 +x 31 +y 8 +end +arch woodfloor +x 31 +y 9 +move_block fly_low +unique 1 +end +arch wall_1_4 +x 31 +y 9 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 10 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE GuildMaster A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 10 +move_block fly_low +unique 1 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 31 +y 11 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE GuildMaster A +title Python +slaying /python/guilds/arrest.py +end +end +arch woodfloor +x 31 +y 11 +move_block fly_low +unique 1 +end +arch button_handle +name Loot-Chute Lever +x 31 +y 11 +connected 100 +end +arch woodfloor +x 31 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_1_2 +x 31 +y 12 +end +arch stwall_0 +x 31 +y 12 +end +arch grass_only +x 31 +y 13 +end +arch dungeon_magic +x 31 +y 13 +end +arch grass_only +x 31 +y 14 +end +arch dungeon_magic +x 31 +y 14 +end +arch grass_only +x 31 +y 15 +end +arch swall_2_1_2 +x 31 +y 15 +end +arch blocked +x 31 +y 16 +end +arch stonefloor2 +x 31 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 31 +y 21 +end +arch stonefloor2 +x 31 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 22 +end +arch stonefloor2 +x 31 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 23 +end +arch stonefloor2 +x 31 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 24 +end +arch stonefloor2 +x 31 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 25 +end +arch stonefloor2 +x 31 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 31 +y 26 +end +arch stonefloor2 +x 31 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 31 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 31 +y 29 +move_block fly_low +unique 1 +end +arch stair_up +slaying storage_room +hp 31 +sp 7 +x 31 +y 29 +end +arch stonefloor2 +x 31 +y 30 +move_block fly_low +unique 1 +end +arch stair_up +slaying storage_room +hp 31 +sp 8 +x 31 +y 30 +end +arch stonefloor2 +x 31 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 31 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 31 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 31 +y 33 +end +arch stonefloor2 +x 31 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 34 +end +arch stonefloor2 +x 31 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 35 +end +arch stonefloor2 +x 31 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 36 +end +arch stonefloor2 +x 31 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 31 +y 37 +end +arch stonefloor2 +x 31 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 31 +y 38 +end +arch grass_only +x 32 +end +arch swall_2_1_2 +x 32 +end +arch grass_only +x 32 +y 1 +end +arch dungeon_magic +x 32 +y 1 +end +arch grass_only +x 32 +y 2 +end +arch dungeon_magic +x 32 +y 2 +end +arch woodfloor +x 32 +y 3 +move_block fly_low +unique 1 +end +arch wall_2_2_3 +x 32 +y 3 +end +arch woodfloor +x 32 +y 4 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 32 +y 4 +end +arch stwall_0 +x 32 +y 4 +end +arch woodfloor +x 32 +y 5 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 5 +end +arch stwindow_win1 +x 32 +y 5 +end +arch woodfloor +x 32 +y 6 +move_block fly_low +unique 1 +end +arch wall_3_4 +x 32 +y 6 +end +arch stwall_0 +x 32 +y 6 +end +arch woodfloor +x 32 +y 7 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 32 +y 7 +end +arch woodfloor +x 32 +y 8 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 32 +y 8 +end +arch woodfloor +x 32 +y 9 +move_block fly_low +unique 1 +end +arch wall_3_4 +x 32 +y 9 +end +arch stwall_0 +x 32 +y 9 +end +arch woodfloor +x 32 +y 10 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 10 +end +arch stwindow_win1 +x 32 +y 10 +end +arch woodfloor +x 32 +y 11 +move_block fly_low +unique 1 +end +arch wall_2_1_1 +x 32 +y 11 +end +arch stwall_0 +x 32 +y 11 +end +arch woodfloor +x 32 +y 12 +move_block fly_low +unique 1 +end +arch wall_2_2_4 +x 32 +y 12 +end +arch grass_only +x 32 +y 13 +end +arch dungeon_magic +x 32 +y 13 +end +arch grass_only +x 32 +y 14 +end +arch dungeon_magic +x 32 +y 14 +end +arch grass_only +x 32 +y 15 +end +arch swall_2_1_2 +x 32 +y 15 +end +arch blocked +x 32 +y 16 +end +arch stonefloor2 +x 32 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 32 +y 21 +end +arch stonefloor2 +x 32 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 22 +end +arch brazier +x 32 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 32 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 23 +end +arch stonefloor2 +x 32 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 24 +end +arch stonefloor2 +x 32 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 25 +end +arch stonefloor2 +x 32 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 32 +y 26 +end +arch stonefloor2 +x 32 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 32 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 32 +y 28 +end +arch stonefloor2 +x 32 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 32 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 32 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 32 +y 31 +end +arch stonefloor2 +x 32 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 32 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 32 +y 33 +end +arch stonefloor2 +x 32 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 34 +end +arch stonefloor2 +x 32 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 35 +end +arch stonefloor2 +x 32 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 36 +end +arch stonefloor2 +x 32 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 32 +y 37 +end +arch brazier +x 32 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 32 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 32 +y 38 +end +arch grass_only +x 33 +end +arch swall_2_1_2 +x 33 +end +arch grass_only +x 33 +y 1 +end +arch dungeon_magic +x 33 +y 1 +end +arch grass_only +x 33 +y 2 +end +arch dungeon_magic +x 33 +y 2 +end +arch grass_only +x 33 +y 3 +end +arch dungeon_magic +x 33 +y 3 +end +arch grass_only +x 33 +y 4 +end +arch dungeon_magic +x 33 +y 4 +end +arch grass_only +x 33 +y 5 +end +arch dungeon_magic +x 33 +y 5 +end +arch grass_only +x 33 +y 6 +end +arch dungeon_magic +x 33 +y 6 +end +arch grass_only +x 33 +y 7 +end +arch dungeon_magic +x 33 +y 7 +end +arch grass_only +x 33 +y 8 +end +arch dungeon_magic +x 33 +y 8 +end +arch grass_only +x 33 +y 9 +end +arch dungeon_magic +x 33 +y 9 +end +arch grass_only +x 33 +y 10 +end +arch dungeon_magic +x 33 +y 10 +end +arch grass_only +x 33 +y 11 +end +arch dungeon_magic +x 33 +y 11 +end +arch grass_only +x 33 +y 12 +end +arch dungeon_magic +x 33 +y 12 +end +arch grass_only +x 33 +y 13 +end +arch dungeon_magic +x 33 +y 13 +end +arch grass_only +x 33 +y 14 +end +arch dungeon_magic +x 33 +y 14 +end +arch grass_only +x 33 +y 15 +end +arch swall_2_1_2 +x 33 +y 15 +end +arch blocked +x 33 +y 16 +end +arch stonefloor2 +x 33 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 33 +y 21 +end +arch stonefloor2 +x 33 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 33 +y 22 +end +arch dungeon_magic +x 33 +y 22 +end +arch stonefloor2 +x 33 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 33 +y 23 +end +arch dungeon_magic +x 33 +y 23 +end +arch stonefloor2 +x 33 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 33 +y 24 +end +arch stonefloor2 +x 33 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 33 +y 25 +end +arch grate_closed_1 +x 33 +y 25 +connected 100 +end +arch stonefloor2 +x 33 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 33 +y 26 +end +arch stonefloor2 +x 33 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 33 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 33 +y 33 +end +arch stonefloor2 +x 33 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 33 +y 34 +end +arch grate_closed_1 +x 33 +y 34 +connected 100 +end +arch stonefloor2 +x 33 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 33 +y 35 +end +arch stonefloor2 +x 33 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 33 +y 36 +end +arch dungeon_magic +x 33 +y 36 +end +arch stonefloor2 +x 33 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 33 +y 37 +end +arch dungeon_magic +x 33 +y 37 +end +arch stonefloor2 +x 33 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 33 +y 38 +end +arch grass_only +x 34 +end +arch swall_2_1_2 +x 34 +end +arch grass_only +x 34 +y 1 +end +arch dungeon_magic +x 34 +y 1 +end +arch grass_only +x 34 +y 2 +end +arch dungeon_magic +x 34 +y 2 +end +arch grass_only +x 34 +y 3 +end +arch dungeon_magic +x 34 +y 3 +end +arch grass_only +x 34 +y 4 +end +arch dungeon_magic +x 34 +y 4 +end +arch grass_only +x 34 +y 5 +end +arch dungeon_magic +x 34 +y 5 +end +arch grass_only +x 34 +y 6 +end +arch dungeon_magic +x 34 +y 6 +end +arch grass_only +x 34 +y 7 +end +arch dungeon_magic +x 34 +y 7 +end +arch grass_only +x 34 +y 8 +end +arch dungeon_magic +x 34 +y 8 +end +arch grass_only +x 34 +y 9 +end +arch dungeon_magic +x 34 +y 9 +end +arch grass_only +x 34 +y 10 +end +arch dungeon_magic +x 34 +y 10 +end +arch grass_only +x 34 +y 11 +end +arch dungeon_magic +x 34 +y 11 +end +arch grass_only +x 34 +y 12 +end +arch dungeon_magic +x 34 +y 12 +end +arch grass_only +x 34 +y 13 +end +arch dungeon_magic +x 34 +y 13 +end +arch grass_only +x 34 +y 14 +end +arch dungeon_magic +x 34 +y 14 +end +arch grass_only +x 34 +y 15 +end +arch swall_2_1_2 +x 34 +y 15 +end +arch blocked +x 34 +y 16 +end +arch stonefloor2 +x 34 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 34 +y 21 +end +arch pedestal +x 34 +y 22 +connected 6 +end +arch stonefloor2 +x 34 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 34 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 34 +y 23 +connected 6 +move_on all +move_off all +end +arch stonefloor2 +x 34 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 34 +y 23 +connected 6 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 34 +y 23 +end +arch pedestal +x 34 +y 24 +connected 6 +move_on all +move_off all +end +arch stonefloor2 +x 34 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 24 +end +arch stonefloor2 +x 34 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 25 +end +arch grate_closed_1 +x 34 +y 25 +connected 100 +end +arch stonefloor2 +x 34 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 5 +x 34 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 34 +y 26 +end +arch stonefloor2 +x 34 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 34 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 13 +x 34 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 34 +y 33 +end +arch stonefloor2 +x 34 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 34 +end +arch grate_closed_1 +x 34 +y 34 +connected 100 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 34 +y 34 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 34 +y 35 +connected 14 +end +arch stonefloor2 +x 34 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 35 +end +arch pedestal +x 34 +y 36 +connected 14 +move_on all +move_off all +end +arch stonefloor2 +x 34 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 34 +y 36 +connected 14 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 34 +y 36 +end +arch pedestal +x 34 +y 37 +connected 14 +move_on all +move_off all +end +arch stonefloor2 +x 34 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 34 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 34 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 34 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 34 +y 38 +end +arch grass_only +x 35 +end +arch swall_2_2_3 +x 35 +end +arch grass_only +x 35 +y 1 +end +arch swall_2_1_1 +x 35 +y 1 +end +arch grass_only +x 35 +y 2 +end +arch swall_2_1_1 +x 35 +y 2 +end +arch grass_only +x 35 +y 3 +end +arch swall_2_1_1 +x 35 +y 3 +end +arch grass_only +x 35 +y 4 +end +arch swall_2_1_1 +x 35 +y 4 +end +arch grass_only +x 35 +y 5 +end +arch swall_2_1_1 +x 35 +y 5 +end +arch grass_only +x 35 +y 6 +end +arch swall_2_1_1 +x 35 +y 6 +end +arch grass_only +x 35 +y 7 +end +arch swall_2_1_1 +x 35 +y 7 +end +arch grass_only +x 35 +y 8 +end +arch swall_2_1_1 +x 35 +y 8 +end +arch grass_only +x 35 +y 9 +end +arch swall_2_1_1 +x 35 +y 9 +end +arch grass_only +x 35 +y 10 +end +arch swall_2_1_1 +x 35 +y 10 +end +arch grass_only +x 35 +y 11 +end +arch swall_2_1_1 +x 35 +y 11 +end +arch grass_only +x 35 +y 12 +end +arch swall_2_1_1 +x 35 +y 12 +end +arch grass_only +x 35 +y 13 +end +arch swall_2_1_1 +x 35 +y 13 +end +arch grass_only +x 35 +y 14 +end +arch swall_2_1_1 +x 35 +y 14 +end +arch grass_only +x 35 +y 15 +end +arch swall_2_2_4 +x 35 +y 15 +end +arch blocked +x 35 +y 16 +end +arch stonefloor2 +x 35 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 35 +y 21 +end +arch stonefloor2 +x 35 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 35 +y 22 +end +arch dungeon_magic +x 35 +y 22 +end +arch stonefloor2 +x 35 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 35 +y 23 +end +arch dungeon_magic +x 35 +y 23 +end +arch stonefloor2 +x 35 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 35 +y 24 +end +arch stonefloor2 +x 35 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 35 +y 25 +end +arch grate_closed_1 +x 35 +y 25 +connected 100 +end +arch stonefloor2 +x 35 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 35 +y 26 +end +arch stonefloor2 +x 35 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 35 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 35 +y 33 +end +arch stonefloor2 +x 35 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 35 +y 34 +end +arch grate_closed_1 +x 35 +y 34 +connected 100 +end +arch stonefloor2 +x 35 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 35 +y 35 +end +arch stonefloor2 +x 35 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 35 +y 36 +end +arch dungeon_magic +x 35 +y 36 +end +arch stonefloor2 +x 35 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 35 +y 37 +end +arch dungeon_magic +x 35 +y 37 +end +arch stonefloor2 +x 35 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 35 +y 38 +end +arch blocked +x 36 +end +arch blocked +x 36 +y 1 +end +arch blocked +x 36 +y 2 +end +arch blocked +x 36 +y 3 +end +arch blocked +x 36 +y 4 +end +arch blocked +x 36 +y 5 +end +arch blocked +x 36 +y 6 +end +arch blocked +x 36 +y 7 +end +arch blocked +x 36 +y 8 +end +arch blocked +x 36 +y 9 +end +arch blocked +x 36 +y 10 +end +arch blocked +x 36 +y 11 +end +arch blocked +x 36 +y 12 +end +arch blocked +x 36 +y 13 +end +arch blocked +x 36 +y 14 +end +arch blocked +x 36 +y 15 +end +arch blocked +x 36 +y 16 +end +arch button_small +x 36 +y 20 +connected 99919 +end +arch stonefloor2 +x 36 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 36 +y 21 +end +arch stonefloor2 +x 36 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 22 +end +arch brazier +x 36 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 36 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 23 +end +arch stonefloor2 +x 36 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 24 +end +arch stonefloor2 +x 36 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 25 +end +arch stonefloor2 +x 36 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 36 +y 26 +end +arch stonefloor2 +x 36 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 36 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 36 +y 28 +end +arch stonefloor2 +x 36 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 36 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 36 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 36 +y 31 +end +arch stonefloor2 +x 36 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 36 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 36 +y 33 +end +arch stonefloor2 +x 36 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 34 +end +arch stonefloor2 +x 36 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 35 +end +arch stonefloor2 +x 36 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 36 +end +arch stonefloor2 +x 36 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 36 +y 37 +end +arch brazier +x 36 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 36 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 36 +y 38 +end +arch stonefloor2 +x 37 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 37 +y 21 +end +arch stonefloor2 +x 37 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 22 +end +arch stonefloor2 +x 37 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 23 +end +arch stonefloor2 +x 37 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 24 +end +arch stonefloor2 +x 37 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 25 +end +arch stonefloor2 +x 37 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 37 +y 26 +end +arch stonefloor2 +x 37 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 37 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 37 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 37 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 37 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 37 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 37 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 37 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 37 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 37 +y 33 +end +arch stonefloor2 +x 37 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 34 +end +arch stonefloor2 +x 37 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 35 +end +arch stonefloor2 +x 37 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 36 +end +arch stonefloor2 +x 37 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 37 +y 37 +end +arch stonefloor2 +x 37 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 37 +y 38 +end +arch lightningwall_5 +x 38 +y 10 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_5 +x 38 +y 10 +end +arch detector +slaying lightning +x 38 +y 11 +speed 1.0 +connected 454 +end +arch lightningwall_5 +sp 1 +x 38 +y 12 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 12 +end +arch lightningwall_5 +sp 1 +x 38 +y 13 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 13 +end +arch lightningwall_5 +sp 1 +x 38 +y 14 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 14 +end +arch lightningwall_5 +sp 1 +x 38 +y 15 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 15 +end +arch lightningwall_5 +sp 1 +x 38 +y 16 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 16 +end +arch lightningwall_5 +sp 1 +x 38 +y 17 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 17 +end +arch lightningwall_5 +sp 1 +x 38 +y 18 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 18 +end +arch lightningwall_5 +sp 1 +x 38 +y 19 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 19 +end +arch lightningwall_5 +sp 1 +x 38 +y 20 +speed 0.0 +level 100 +connected 99919 +move_block 0 +arch spell_large_lightning +end +end +arch director_1 +x 38 +y 20 +end +arch stonefloor2 +x 38 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 38 +y 21 +end +arch stonefloor2 +x 38 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 22 +end +arch brazier +x 38 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 38 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 23 +end +arch stonefloor2 +x 38 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 24 +end +arch stonefloor2 +x 38 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 25 +end +arch stonefloor2 +x 38 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 38 +y 26 +end +arch stonefloor2 +x 38 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 38 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 38 +y 28 +end +arch stonefloor2 +x 38 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 38 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 38 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 38 +y 31 +end +arch stonefloor2 +x 38 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 38 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 38 +y 33 +end +arch stonefloor2 +x 38 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 34 +end +arch stonefloor2 +x 38 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 35 +end +arch stonefloor2 +x 38 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 36 +end +arch stonefloor2 +x 38 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 38 +y 37 +end +arch brazier +x 38 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 38 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 38 +y 38 +end +arch stonefloor2 +x 39 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 39 +y 21 +end +arch stonefloor2 +x 39 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 39 +y 22 +end +arch dungeon_magic +x 39 +y 22 +end +arch stonefloor2 +x 39 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 39 +y 23 +end +arch dungeon_magic +x 39 +y 23 +end +arch stonefloor2 +x 39 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 39 +y 24 +end +arch stonefloor2 +x 39 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 39 +y 25 +end +arch grate_closed_1 +x 39 +y 25 +connected 100 +end +arch stonefloor2 +x 39 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 39 +y 26 +end +arch stonefloor2 +x 39 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 39 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 39 +y 33 +end +arch stonefloor2 +x 39 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 39 +y 34 +end +arch grate_closed_1 +x 39 +y 34 +connected 100 +end +arch stonefloor2 +x 39 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 39 +y 35 +end +arch stonefloor2 +x 39 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 39 +y 36 +end +arch dungeon_magic +x 39 +y 36 +end +arch stonefloor2 +x 39 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 39 +y 37 +end +arch dungeon_magic +x 39 +y 37 +end +arch stonefloor2 +x 39 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 39 +y 38 +end +arch stonefloor2 +x 40 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 40 +y 21 +end +arch pedestal +x 40 +y 22 +connected 7 +end +arch stonefloor2 +x 40 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 40 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 40 +y 23 +connected 7 +move_on all +move_off all +end +arch stonefloor2 +x 40 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 40 +y 23 +connected 7 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 40 +y 23 +end +arch pedestal +x 40 +y 24 +connected 7 +move_on all +move_off all +end +arch stonefloor2 +x 40 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 24 +end +arch stonefloor2 +x 40 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 25 +end +arch grate_closed_1 +x 40 +y 25 +connected 100 +end +arch stonefloor2 +x 40 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 6 +x 40 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 40 +y 26 +end +arch stonefloor2 +x 40 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 40 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 14 +x 40 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 40 +y 33 +end +arch stonefloor2 +x 40 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 34 +end +arch grate_closed_1 +x 40 +y 34 +connected 100 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 40 +y 34 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 40 +y 35 +connected 15 +end +arch stonefloor2 +x 40 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 35 +end +arch pedestal +x 40 +y 36 +connected 15 +move_on all +move_off all +end +arch stonefloor2 +x 40 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 40 +y 36 +connected 15 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 40 +y 36 +end +arch pedestal +x 40 +y 37 +connected 15 +move_on all +move_off all +end +arch stonefloor2 +x 40 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 40 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 40 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 40 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 40 +y 38 +end +arch stonefloor2 +x 41 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 41 +y 21 +end +arch stonefloor2 +x 41 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 41 +y 22 +end +arch dungeon_magic +x 41 +y 22 +end +arch stonefloor2 +x 41 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 41 +y 23 +end +arch dungeon_magic +x 41 +y 23 +end +arch stonefloor2 +x 41 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 41 +y 24 +end +arch stonefloor2 +x 41 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 41 +y 25 +end +arch grate_closed_1 +x 41 +y 25 +connected 100 +end +arch stonefloor2 +x 41 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 41 +y 26 +end +arch stonefloor2 +x 41 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 41 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 41 +y 33 +end +arch stonefloor2 +x 41 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 41 +y 34 +end +arch grate_closed_1 +x 41 +y 34 +connected 100 +end +arch stonefloor2 +x 41 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 41 +y 35 +end +arch stonefloor2 +x 41 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 41 +y 36 +end +arch dungeon_magic +x 41 +y 36 +end +arch stonefloor2 +x 41 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 41 +y 37 +end +arch dungeon_magic +x 41 +y 37 +end +arch stonefloor2 +x 41 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 41 +y 38 +end +arch stonefloor2 +x 42 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 42 +y 21 +end +arch stonefloor2 +x 42 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 22 +end +arch brazier +x 42 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 42 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 23 +end +arch stonefloor2 +x 42 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 24 +end +arch stonefloor2 +x 42 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 25 +end +arch stonefloor2 +x 42 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 42 +y 26 +end +arch stonefloor2 +x 42 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 42 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 42 +y 28 +end +arch stonefloor2 +x 42 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 42 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 42 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 42 +y 31 +end +arch stonefloor2 +x 42 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 42 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 42 +y 33 +end +arch stonefloor2 +x 42 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 34 +end +arch stonefloor2 +x 42 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 35 +end +arch stonefloor2 +x 42 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 36 +end +arch stonefloor2 +x 42 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 42 +y 37 +end +arch brazier +x 42 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 42 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 42 +y 38 +end +arch stonefloor2 +x 43 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 43 +y 21 +end +arch stonefloor2 +x 43 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 22 +end +arch stonefloor2 +x 43 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 23 +end +arch stonefloor2 +x 43 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 24 +end +arch stonefloor2 +x 43 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 25 +end +arch stonefloor2 +x 43 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 43 +y 26 +end +arch stonefloor2 +x 43 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 43 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 43 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 43 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 43 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 43 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 43 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 43 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 43 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 43 +y 33 +end +arch stonefloor2 +x 43 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 34 +end +arch stonefloor2 +x 43 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 35 +end +arch stonefloor2 +x 43 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 36 +end +arch stonefloor2 +x 43 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 43 +y 37 +end +arch stonefloor2 +x 43 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 43 +y 38 +end +arch stonefloor2 +x 44 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 44 +y 21 +end +arch stonefloor2 +x 44 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 22 +end +arch brazier +x 44 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 44 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 23 +end +arch stonefloor2 +x 44 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 24 +end +arch stonefloor2 +x 44 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 25 +end +arch stonefloor2 +x 44 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 44 +y 26 +end +arch stonefloor2 +x 44 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 44 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 44 +y 28 +end +arch stonefloor2 +x 44 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 44 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 44 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 44 +y 31 +end +arch stonefloor2 +x 44 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 44 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 44 +y 33 +end +arch stonefloor2 +x 44 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 34 +end +arch stonefloor2 +x 44 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 35 +end +arch stonefloor2 +x 44 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 36 +end +arch stonefloor2 +x 44 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 44 +y 37 +end +arch brazier +x 44 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 44 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 44 +y 38 +end +arch stonefloor2 +x 45 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 45 +y 21 +end +arch stonefloor2 +x 45 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 45 +y 22 +end +arch dungeon_magic +x 45 +y 22 +end +arch stonefloor2 +x 45 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 45 +y 23 +end +arch dungeon_magic +x 45 +y 23 +end +arch stonefloor2 +x 45 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 45 +y 24 +end +arch stonefloor2 +x 45 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 45 +y 25 +end +arch grate_closed_1 +x 45 +y 25 +connected 100 +end +arch stonefloor2 +x 45 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 45 +y 26 +end +arch stonefloor2 +x 45 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 45 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 45 +y 33 +end +arch stonefloor2 +x 45 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 45 +y 34 +end +arch grate_closed_1 +x 45 +y 34 +connected 100 +end +arch stonefloor2 +x 45 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 45 +y 35 +end +arch stonefloor2 +x 45 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 45 +y 36 +end +arch dungeon_magic +x 45 +y 36 +end +arch stonefloor2 +x 45 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 45 +y 37 +end +arch dungeon_magic +x 45 +y 37 +end +arch stonefloor2 +x 45 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 45 +y 38 +end +arch stonefloor2 +x 46 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 46 +y 21 +end +arch pedestal +x 46 +y 22 +connected 8 +end +arch stonefloor2 +x 46 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 46 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 46 +y 23 +connected 8 +move_on all +move_off all +end +arch stonefloor2 +x 46 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 46 +y 23 +connected 8 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 46 +y 23 +end +arch pedestal +x 46 +y 24 +connected 8 +move_on all +move_off all +end +arch stonefloor2 +x 46 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 24 +end +arch stonefloor2 +x 46 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 25 +end +arch grate_closed_1 +x 46 +y 25 +connected 100 +end +arch stonefloor2 +x 46 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 7 +x 46 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 46 +y 26 +end +arch stonefloor2 +x 46 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 46 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 15 +x 46 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 46 +y 33 +end +arch stonefloor2 +x 46 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 34 +end +arch grate_closed_1 +x 46 +y 34 +connected 100 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 46 +y 34 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 46 +y 35 +connected 16 +end +arch stonefloor2 +x 46 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 35 +end +arch pedestal +x 46 +y 36 +connected 16 +move_on all +move_off all +end +arch stonefloor2 +x 46 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 46 +y 36 +connected 16 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 46 +y 36 +end +arch pedestal +x 46 +y 37 +connected 16 +move_on all +move_off all +end +arch stonefloor2 +x 46 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 46 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 46 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 46 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 46 +y 38 +end +arch stonefloor2 +x 47 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 47 +y 21 +end +arch stonefloor2 +x 47 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 47 +y 22 +end +arch dungeon_magic +x 47 +y 22 +end +arch brazier +x 47 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 47 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 47 +y 23 +end +arch dungeon_magic +x 47 +y 23 +end +arch stonefloor2 +x 47 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 47 +y 24 +end +arch stonefloor2 +x 47 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 47 +y 25 +end +arch grate_closed_1 +x 47 +y 25 +connected 100 +end +arch stonefloor2 +x 47 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 47 +y 26 +end +arch stonefloor2 +x 47 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 47 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 47 +y 33 +end +arch stonefloor2 +x 47 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 47 +y 34 +end +arch grate_closed_1 +x 47 +y 34 +connected 100 +end +arch stonefloor2 +x 47 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 47 +y 35 +end +arch stonefloor2 +x 47 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 47 +y 36 +end +arch dungeon_magic +x 47 +y 36 +end +arch stonefloor2 +x 47 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 47 +y 37 +end +arch dungeon_magic +x 47 +y 37 +end +arch stonefloor2 +x 47 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 47 +y 38 +end +arch stonefloor2 +x 48 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 48 +y 21 +end +arch stonefloor2 +x 48 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 22 +end +arch stonefloor2 +x 48 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 23 +end +arch stonefloor2 +x 48 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 24 +end +arch stonefloor2 +x 48 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 25 +end +arch stonefloor2 +x 48 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 48 +y 26 +end +arch stonefloor2 +x 48 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 48 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 48 +y 28 +end +arch stonefloor2 +x 48 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 48 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 48 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 48 +y 31 +end +arch stonefloor2 +x 48 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 48 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 48 +y 33 +end +arch stonefloor2 +x 48 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 34 +end +arch stonefloor2 +x 48 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 35 +end +arch stonefloor2 +x 48 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 36 +end +arch stonefloor2 +x 48 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 48 +y 37 +end +arch brazier +x 48 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 48 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 48 +y 38 +end +arch stonefloor2 +x 49 +y 21 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 49 +y 21 +end +arch stonefloor2 +x 49 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 22 +end +arch stonefloor2 +x 49 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 23 +end +arch stonefloor2 +x 49 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 24 +end +arch stonefloor2 +x 49 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 25 +end +arch stonefloor2 +x 49 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 49 +y 26 +end +arch stonefloor2 +x 49 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 49 +y 28 +move_block fly_low +unique 1 +end +arch brazier +x 49 +y 28 +glow_radius 10 +end +arch stonefloor2 +x 49 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 49 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 49 +y 31 +move_block fly_low +unique 1 +end +arch brazier +x 49 +y 31 +glow_radius 10 +end +arch stonefloor2 +x 49 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 49 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_3 +x 49 +y 33 +end +arch stonefloor2 +x 49 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 34 +end +arch stonefloor2 +x 49 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 35 +end +arch stonefloor2 +x 49 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 36 +end +arch stonefloor2 +x 49 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 49 +y 37 +end +arch stonefloor2 +x 49 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 49 +y 38 +end +arch stonefloor2 +x 50 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 50 +y 21 +end +arch stonefloor2 +x 50 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 22 +end +arch brazier +x 50 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 50 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 23 +end +arch stonefloor2 +x 50 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 24 +end +arch stonefloor2 +x 50 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 25 +end +arch stonefloor2 +x 50 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 50 +y 26 +end +arch stonefloor2 +x 50 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 50 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 50 +y 28 +end +arch stonefloor2 +x 50 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 50 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 50 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 50 +y 31 +end +arch stonefloor2 +x 50 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 50 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 50 +y 33 +end +arch stonefloor2 +x 50 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 34 +end +arch stonefloor2 +x 50 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 35 +end +arch stonefloor2 +x 50 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 36 +end +arch stonefloor2 +x 50 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 50 +y 37 +end +arch brazier +x 50 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 50 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 50 +y 38 +end +arch stonefloor2 +x 51 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 51 +y 21 +end +arch stonefloor2 +x 51 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 51 +y 22 +end +arch dungeon_magic +x 51 +y 22 +end +arch stonefloor2 +x 51 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_1 +x 51 +y 23 +end +arch dungeon_magic +x 51 +y 23 +end +arch stonefloor2 +x 51 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 51 +y 24 +end +arch stonefloor2 +x 51 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 51 +y 25 +end +arch grate_closed_1 +x 51 +y 25 +connected 100 +end +arch stonefloor2 +x 51 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 51 +y 26 +end +arch stonefloor2 +x 51 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 51 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 51 +y 33 +end +arch stonefloor2 +x 51 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 51 +y 34 +end +arch grate_closed_1 +x 51 +y 34 +connected 100 +end +arch stonefloor2 +x 51 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 51 +y 35 +end +arch stonefloor2 +x 51 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_2 +x 51 +y 36 +end +arch dungeon_magic +x 51 +y 36 +end +arch stonefloor2 +x 51 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 51 +y 37 +end +arch dungeon_magic +x 51 +y 37 +end +arch stonefloor2 +x 51 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 51 +y 38 +end +arch stonefloor2 +x 52 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 52 +y 21 +end +arch pedestal +x 52 +y 22 +connected 9 +end +arch stonefloor2 +x 52 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 22 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 52 +y 22 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 52 +y 23 +connected 9 +move_on all +move_off all +end +arch stonefloor2 +x 52 +y 23 +move_block fly_low +unique 1 +end +arch ggate_closed +x 52 +y 23 +connected 9 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 52 +y 23 +end +arch pedestal +x 52 +y 24 +connected 9 +move_on all +move_off all +end +arch stonefloor2 +x 52 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 24 +end +arch stonefloor2 +x 52 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 25 +end +arch grate_closed_1 +x 52 +y 25 +connected 100 +end +arch stonefloor2 +x 52 +y 26 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 8 +x 52 +y 26 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 52 +y 26 +end +arch stonefloor2 +x 52 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 52 +y 33 +move_block fly_low +unique 1 +end +arch door_look_1 +name Room 16 +x 52 +y 33 +move_block fly_low +no_damage 1 +end +arch dungeon_magic +x 52 +y 33 +end +arch stonefloor2 +x 52 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 34 +end +arch grate_closed_1 +x 52 +y 34 +connected 100 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 52 +y 34 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch pedestal +x 52 +y 35 +connected 17 +end +arch stonefloor2 +x 52 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 35 +end +arch pedestal +x 52 +y 36 +connected 17 +move_on all +move_off all +end +arch stonefloor2 +x 52 +y 36 +move_block fly_low +unique 1 +end +arch ggate_closed +x 52 +y 36 +connected 17 +no_magic 1 +damned 1 +end +arch dungeon_magic +x 52 +y 36 +end +arch pedestal +x 52 +y 37 +connected 17 +move_on all +move_off all +end +arch stonefloor2 +x 52 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 52 +y 37 +end +arch trap_blades +Cha 127 +hp 1000 +dam 0 +x 52 +y 37 +level 100 +attacktype 0 +arch event_trigger +name GUILD_TEMPLATE Initiate A +title Python +slaying /python/guilds/arrest.py +end +end +arch stonefloor2 +x 52 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 52 +y 38 +end +arch stonefloor2 +x 53 +y 21 +move_block fly_low +unique 1 +end +arch cwall_4 +x 53 +y 21 +end +arch stonefloor2 +x 53 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 53 +y 22 +end +arch dungeon_magic +x 53 +y 22 +end +arch stonefloor2 +x 53 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 53 +y 23 +end +arch dungeon_magic +x 53 +y 23 +end +arch stonefloor2 +x 53 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 53 +y 24 +end +arch stonefloor2 +x 53 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 53 +y 25 +end +arch grate_closed_1 +x 53 +y 25 +connected 100 +end +arch stonefloor2 +x 53 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 53 +y 26 +end +arch stonefloor2 +x 53 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 28 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 29 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 30 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 31 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 53 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 53 +y 33 +end +arch stonefloor2 +x 53 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 53 +y 34 +end +arch grate_closed_1 +x 53 +y 34 +connected 100 +end +arch stonefloor2 +x 53 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 53 +y 35 +end +arch stonefloor2 +x 53 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 53 +y 36 +end +arch dungeon_magic +x 53 +y 36 +end +arch stonefloor2 +x 53 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 53 +y 37 +end +arch dungeon_magic +x 53 +y 37 +end +arch stonefloor2 +x 53 +y 38 +move_block fly_low +unique 1 +end +arch cwall_3_1 +x 53 +y 38 +end +arch stonefloor2 +x 54 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 54 +y 21 +end +arch stonefloor2 +x 54 +y 22 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 22 +end +arch brazier +x 54 +y 22 +glow_radius 10 +end +arch stonefloor2 +x 54 +y 23 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 23 +end +arch stonefloor2 +x 54 +y 24 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 24 +end +arch stonefloor2 +x 54 +y 25 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 25 +end +arch stonefloor2 +x 54 +y 26 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 54 +y 26 +end +arch stonefloor2 +x 54 +y 27 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 54 +y 28 +move_block fly_low +unique 1 +end +arch cwall_0 +x 54 +y 28 +end +arch stonefloor2 +x 54 +y 29 +move_block fly_low +unique 1 +end +arch brazier +x 54 +y 29 +glow_radius 10 +end +arch stonefloor2 +x 54 +y 30 +move_block fly_low +unique 1 +end +arch brazier +x 54 +y 30 +glow_radius 10 +end +arch stonefloor2 +x 54 +y 31 +move_block fly_low +unique 1 +end +arch cwall_0 +x 54 +y 31 +end +arch stonefloor2 +x 54 +y 32 +move_block fly_low +unique 1 +end +arch stonefloor2 +x 54 +y 33 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 54 +y 33 +end +arch stonefloor2 +x 54 +y 34 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 34 +end +arch stonefloor2 +x 54 +y 35 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 35 +end +arch stonefloor2 +x 54 +y 36 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 36 +end +arch stonefloor2 +x 54 +y 37 +move_block fly_low +unique 1 +end +arch dungeon_magic +x 54 +y 37 +end +arch brazier +x 54 +y 37 +glow_radius 10 +end +arch stonefloor2 +x 54 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_1_2 +x 54 +y 38 +end +arch stonefloor2 +x 55 +y 21 +move_block fly_low +unique 1 +end +arch cwall_2_2_3 +x 55 +y 21 +end +arch stonefloor2 +x 55 +y 22 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 22 +end +arch stonefloor2 +x 55 +y 23 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 23 +end +arch stonefloor2 +x 55 +y 24 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 24 +end +arch stonefloor2 +x 55 +y 25 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 25 +end +arch stonefloor2 +x 55 +y 26 +move_block fly_low +unique 1 +end +arch cwall_3_4 +x 55 +y 26 +end +arch stonefloor2 +x 55 +y 27 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 27 +end +arch stonefloor2 +x 55 +y 28 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 28 +end +arch stonefloor2 +x 55 +y 29 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 29 +end +arch stonefloor2 +x 55 +y 30 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 30 +end +arch stonefloor2 +x 55 +y 31 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 31 +end +arch stonefloor2 +x 55 +y 32 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 32 +end +arch stonefloor2 +x 55 +y 33 +move_block fly_low +unique 1 +end +arch cwall_3_4 +x 55 +y 33 +end +arch stonefloor2 +x 55 +y 34 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 34 +end +arch stonefloor2 +x 55 +y 35 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 35 +end +arch stonefloor2 +x 55 +y 36 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 36 +end +arch stonefloor2 +x 55 +y 37 +move_block fly_low +unique 1 +end +arch cwall_2_1_1 +x 55 +y 37 +end +arch stonefloor2 +x 55 +y 38 +move_block fly_low +unique 1 +end +arch cwall_2_2_4 +x 55 +y 38 +end