Button clicks for offline/online character buttons. Added campfire sound effect. Added tile collisions to hub. Added NPC spawn points, setup NPC objects, added NPC sprites, setup event flags on map.
This commit is contained in:
parent
2640477f89
commit
7162b151e4
@ -47,7 +47,8 @@
|
||||
"None",
|
||||
"foresty1_1",
|
||||
"overworld",
|
||||
"foresty_boss"
|
||||
"foresty_boss",
|
||||
"foresty_loop1"
|
||||
],
|
||||
"valuesAsFlags": false
|
||||
},
|
||||
@ -132,10 +133,44 @@
|
||||
"Birds1",
|
||||
"Birds2",
|
||||
"Birds3",
|
||||
"Birds4"
|
||||
"Birds4",
|
||||
"Campfire"
|
||||
],
|
||||
"valuesAsFlags": false
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"name": "EventFlag",
|
||||
"storageType": "string",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
"None",
|
||||
"UnlockBlacksmith",
|
||||
"UnlockPotionCrafting",
|
||||
"CompleteChapter1",
|
||||
"UnlockArtificer"
|
||||
],
|
||||
"valuesAsFlags": false
|
||||
},
|
||||
{
|
||||
"color": "#ffa0a0a4",
|
||||
"drawFill": true,
|
||||
"id": 35,
|
||||
"members": [
|
||||
{
|
||||
"name": "Visibility Flag",
|
||||
"propertyType": "EventFlag",
|
||||
"type": "string",
|
||||
"value": "None"
|
||||
}
|
||||
],
|
||||
"name": "EventLayer",
|
||||
"type": "class",
|
||||
"useAs": [
|
||||
"property",
|
||||
"layer"
|
||||
]
|
||||
},
|
||||
{
|
||||
"color": "#ffd9d929",
|
||||
"drawFill": true,
|
||||
@ -295,6 +330,65 @@
|
||||
],
|
||||
"valuesAsFlags": false
|
||||
},
|
||||
{
|
||||
"color": "#ff636bff",
|
||||
"drawFill": true,
|
||||
"id": 32,
|
||||
"members": [
|
||||
{
|
||||
"name": "Function",
|
||||
"propertyType": "NPCFunction",
|
||||
"type": "string",
|
||||
"value": "None"
|
||||
},
|
||||
{
|
||||
"name": "NPC Name",
|
||||
"type": "string",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"name": "Roaming Range",
|
||||
"type": "int",
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"name": "Spawn Flag",
|
||||
"propertyType": "EventFlag",
|
||||
"type": "string",
|
||||
"value": "None"
|
||||
},
|
||||
{
|
||||
"name": "Spritesheet",
|
||||
"type": "string",
|
||||
"value": ""
|
||||
}
|
||||
],
|
||||
"name": "NPC",
|
||||
"type": "class",
|
||||
"useAs": [
|
||||
"property",
|
||||
"map",
|
||||
"layer",
|
||||
"object",
|
||||
"tile",
|
||||
"tileset",
|
||||
"wangcolor",
|
||||
"wangset"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"name": "NPCFunction",
|
||||
"storageType": "string",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
"None",
|
||||
"Blacksmith",
|
||||
"PotionCrafting",
|
||||
"TravelingMerchant"
|
||||
],
|
||||
"valuesAsFlags": false
|
||||
},
|
||||
{
|
||||
"color": "#fffa00f6",
|
||||
"drawFill": true,
|
||||
|
@ -816,6 +816,8 @@
|
||||
<Text Include="Adventures in Lestoria_System_Overview.txt" />
|
||||
<Text Include="Chapter_1_2nd_Boss.txt" />
|
||||
<Text Include="Chapter_1_Creatures_Part_2.txt" />
|
||||
<Text Include="characters.txt" />
|
||||
<Text Include="Crawler_System_Overview.txt" />
|
||||
<Text Include="Merchant%27s Items.txt" />
|
||||
<Text Include="NewClasses.txt" />
|
||||
<Text Include="InitialConcept.txt" />
|
||||
|
@ -909,6 +909,12 @@
|
||||
<Text Include="assets\config\Interface.txt">
|
||||
<Filter>Configurations</Filter>
|
||||
</Text>
|
||||
<Text Include="Crawler_System_Overview.txt">
|
||||
<Filter>Documentation</Filter>
|
||||
</Text>
|
||||
<Text Include="characters.txt">
|
||||
<Filter>Documentation</Filter>
|
||||
</Text>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="assets\heart.ico">
|
||||
|
@ -22,8 +22,8 @@ Gear:
|
||||
Chapter Specific Unlock
|
||||
- Every Story Chapter has 1 side boss that unlocks something new.
|
||||
- Chapter 1 in addition unlocks the Blacksmith after 1-2
|
||||
- Chapter 1 side boss unlocks an npc to craft consumables
|
||||
- Chapter 2 unlocks a Jeweler
|
||||
- Chapter 1 side boss unlocks an npc to craft potions
|
||||
- Chapter 2 unlocks a Artificer
|
||||
=> you can melt accesories to get ressources to "repair" your acceosries = you increase the stat rolls
|
||||
=> cant exceed max roll this way. Just a way to grind your way up if you are unlucky with stat rolls
|
||||
- Chapter 3 ??? (Maybe the Legendary Modifier mechanic from Post game gear will be used here instead if i dont find another idea i like)
|
||||
|
@ -39,6 +39,7 @@ All rights reserved.
|
||||
#include "Menu.h"
|
||||
#include "ScrollableWindowComponent.h"
|
||||
#include "SaveFile.h"
|
||||
#include "SoundEffect.h"
|
||||
|
||||
void Menu::InitializeLoadGameWindow(){
|
||||
Menu*loadGameWindow=CreateMenu(LOAD_GAME,CENTERED,vi2d{192,144});
|
||||
@ -49,13 +50,13 @@ void Menu::InitializeLoadGameWindow(){
|
||||
loadGameWindow->ADD("Online Game Files List",ScrollableWindowComponent)(geom2d::rect<float>{{40,24},{112,116}})END
|
||||
->Enable(false);
|
||||
loadGameWindow->ADD("Go Back Button",MenuComponent)(geom2d::rect<float>{{72,148},{48,12}},"Back",[](MenuFuncData menu){Menu::CloseMenu();return true;})END;
|
||||
|
||||
#ifdef __EMSCRIPTEN__
|
||||
auto offlineCharacterTab = loadGameWindow->ADD("Offline Character Tab",MenuComponent)(geom2d::rect<float>{{-8,4},{102,16}},"Offline Characters",[](MenuFuncData data){
|
||||
Component<ScrollableWindowComponent>(data.menu.GetType(),"Game Files List")->Enable(true);
|
||||
Component<ScrollableWindowComponent>(data.menu.GetType(),"Online Game Files List")->Enable(false);
|
||||
Component<MenuComponent>(data.menu.GetType(),"Online Character Tab")->SetSelected(false);
|
||||
data.component.lock()->SetSelected(true);
|
||||
SoundEffect::PlaySFX("Button Click",SoundEffect::CENTERED);
|
||||
SaveFile::SetOnlineMode(false);
|
||||
return true;
|
||||
},ButtonAttr::FIT_TO_LABEL)END;
|
||||
@ -65,6 +66,7 @@ void Menu::InitializeLoadGameWindow(){
|
||||
Component<ScrollableWindowComponent>(data.menu.GetType(),"Game Files List")->Enable(false);
|
||||
Component<ScrollableWindowComponent>(data.menu.GetType(),"Online Game Files List")->Enable(true);
|
||||
Component<MenuComponent>(data.menu.GetType(),"Offline Character Tab")->SetSelected(false);
|
||||
SoundEffect::PlaySFX("Button Click",SoundEffect::CENTERED);
|
||||
data.component.lock()->SetSelected(true);
|
||||
if(!SaveFile::IsOnline()){
|
||||
if(SaveFile::GetUserID().length()==0){
|
||||
|
@ -1,6 +1,14 @@
|
||||
January 1st
|
||||
===========
|
||||
The Hub / NPC Interactions
|
||||
- Hub will have an NPC to bring you to the Stage select Map / World Map
|
||||
- Hub will have additional NPCs for all the Additional Chapter specific Unlocks
|
||||
- There will be traveling merchants that sell consumables or over priced Materials from Monster dropps.
|
||||
What get offered will change around at random after every stage
|
||||
|
||||
- Blacksmith (Craft/Enhance Equipment)
|
||||
- Consumable Crafter
|
||||
|
||||
Settings Menu
|
||||
- Any settings should be saved to the save file!
|
||||
- Volume Controls
|
||||
@ -14,6 +22,9 @@ Settings Menu
|
||||
|
||||
- XP Bar
|
||||
|
||||
- Implement escape menu during gameplay.
|
||||
- If you leave a stage, the stage complete window still shows up, showing only the loot you obtained that session.
|
||||
|
||||
January 31st
|
||||
============
|
||||
|
||||
@ -23,14 +34,6 @@ Story proofreading/correcting/storyboarding
|
||||
- Loading Screen
|
||||
- Title Screen setpieces
|
||||
|
||||
- Emscripten saving/loading files locally or cloud, can choose at menu.
|
||||
-> New Game: Add checkbox to turn online saving on.
|
||||
If clicked, prompts the user to enter a username for online saving to occur on.
|
||||
Username gets stored and online mode is turned on.
|
||||
-> Load Game: Two tabs at the top, Default will be "Local Saves". Second tab says "Online Saves".
|
||||
If Local Saves is clicked, repopulate the list with the files from the metadata file.
|
||||
If Online Saves is clicked, repopulate the list with the files from the metadata_online file received.
|
||||
|
||||
- Lock up unimplemented classes.
|
||||
|
||||
- Add Death screen (Zoom in on fatal blow, slow time down... Display some game over text... Allow retry or return to world map.)
|
||||
|
@ -1,5 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="100" height="100" tilewidth="24" tileheight="24" infinite="0" nextlayerid="7" nextobjectid="1">
|
||||
<map version="1.10" tiledversion="1.10.1" class="Map" orientation="orthogonal" renderorder="right-down" width="100" height="100" tilewidth="24" tileheight="24" infinite="0" nextlayerid="8" nextobjectid="8">
|
||||
<properties>
|
||||
<property name="Backdrop" propertytype="Backdrop" value="forest"/>
|
||||
<property name="Background Music" propertytype="BGM" value="foresty_loop1"/>
|
||||
<property name="Level Type" propertytype="LevelType" value="Dungeon"/>
|
||||
</properties>
|
||||
<tileset firstgid="1" source="../maps/Tilesheet_No_Shadow24x24.tsx"/>
|
||||
<tileset firstgid="2913" source="../maps/No_Shadow_Campfire_24x24.tsx"/>
|
||||
<tileset firstgid="3041" source="../maps/grid_Props_No_Shadow_24x24.tsx"/>
|
||||
@ -213,7 +218,10 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
<layer id="3" name="Layer 3 (Blacksmith)" width="100" height="100">
|
||||
<layer id="3" name="Layer 3 (Blacksmith)" class="EventLayer" width="100" height="100">
|
||||
<properties>
|
||||
<property name="Visibility Flag" propertytype="EventFlag" value="None"/>
|
||||
</properties>
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -317,7 +325,10 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
<layer id="4" name="Layer 4 (Artificer)" width="100" height="100">
|
||||
<layer id="4" name="Layer 4 (Artificer)" class="EventLayer" width="100" height="100">
|
||||
<properties>
|
||||
<property name="Visibility Flag" propertytype="EventFlag" value="CompleteChapter1"/>
|
||||
</properties>
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -421,7 +432,10 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
<layer id="5" name="Layer 5 (after Chapter 1)" width="100" height="100">
|
||||
<layer id="5" name="Layer 5 (after Chapter 1)" class="EventLayer" width="100" height="100">
|
||||
<properties>
|
||||
<property name="Visibility Flag" propertytype="EventFlag" value="UnlockPotionCrafting"/>
|
||||
</properties>
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -525,7 +539,10 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
<layer id="6" name="Layer 6 (after Chapter 1)" width="100" height="100">
|
||||
<layer id="6" name="Layer 6 (after Chapter 1)" class="EventLayer" width="100" height="100">
|
||||
<properties>
|
||||
<property name="Visibility Flag" propertytype="EventFlag" value="UnlockPotionCrafting"/>
|
||||
</properties>
|
||||
<data encoding="csv">
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
@ -629,4 +646,40 @@
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
<objectgroup id="7" name="Spawn Areas">
|
||||
<object id="1" name="Player Spawn" type="PlayerSpawnLocation" x="1079" y="1032" width="24" height="24"/>
|
||||
<object id="3" name="Campfire" type="AudioEnvironmentalSound" x="1080" y="886">
|
||||
<properties>
|
||||
<property name="Sound Name" propertytype="EnvironmentalSounds" value="Campfire"/>
|
||||
</properties>
|
||||
<point/>
|
||||
</object>
|
||||
<object id="4" name="Blacksmith (Greg)" type="NPC" x="888" y="1150">
|
||||
<properties>
|
||||
<property name="Function" propertytype="NPCFunction" value="Blacksmith"/>
|
||||
<property name="NPC Name" value="Greg"/>
|
||||
<property name="Roaming Range" type="int" value="300"/>
|
||||
<property name="Spawn Flag" propertytype="EventFlag" value="UnlockBlacksmith"/>
|
||||
<property name="Spritesheet" value="greg.png"/>
|
||||
</properties>
|
||||
<point/>
|
||||
</object>
|
||||
<object id="6" name="Traveling Merchant" type="NPC" x="1276" y="858">
|
||||
<properties>
|
||||
<property name="Function" propertytype="NPCFunction" value="TravelingMerchant"/>
|
||||
<property name="NPC Name" value="Traveling Merchant"/>
|
||||
<property name="Roaming Range" type="int" value="100"/>
|
||||
<property name="Spritesheet" value="traveling_merchant.png"/>
|
||||
</properties>
|
||||
<point/>
|
||||
</object>
|
||||
<object id="7" name="Sherman" type="NPC" x="939" y="739">
|
||||
<properties>
|
||||
<property name="Function" propertytype="NPCFunction" value="PotionCrafting"/>
|
||||
<property name="NPC Name" value="Sherman"/>
|
||||
<property name="Spritesheet" value="sherman.png"/>
|
||||
</properties>
|
||||
<point/>
|
||||
</object>
|
||||
</objectgroup>
|
||||
</map>
|
||||
|
@ -605,7 +605,7 @@
|
||||
<properties>
|
||||
<property name="Map" propertytype="Level" value="BLACKSMITH"/>
|
||||
<property name="Type" propertytype="StageType" value="SHOP"/>
|
||||
<property name="Unlock Condition" propertytype="Level" value="CAMPAIGN_1_3"/>
|
||||
<property name="Unlock Condition" propertytype="Level" value="STORY_1_2"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="9" name="Stage IV" type="StagePlate" x="172" y="580" width="44" height="16">
|
||||
|
@ -89,4 +89,25 @@ BGM
|
||||
TitleScreenLoaded = 30%,0%,0%,0%,50%,30%
|
||||
}
|
||||
}
|
||||
|
||||
#Song title followed by filenames for individual parts
|
||||
foresty_loop1
|
||||
{
|
||||
Track Name = Foresty Loop 1
|
||||
|
||||
channel[0]=loop2/foresty1_1_loop1_bass.ogg
|
||||
channel[1]=loop2/foresty1_1_loop1_drums.ogg
|
||||
channel[2]=loop2/foresty1_1_loop1_piano 1.ogg
|
||||
channel[3]=loop2/foresty1_1_loop1_piano 2.ogg
|
||||
channel[4]=loop2/foresty1_1_loop1_staccato.ogg
|
||||
channel[5]=loop2/foresty1_1_loop1_strings.ogg
|
||||
|
||||
# Transition time between one phase to the next.
|
||||
Fade Time = 2.0
|
||||
|
||||
Events
|
||||
{
|
||||
Default Volume = 0%,70%,0%,70%,70%,0%
|
||||
}
|
||||
}
|
||||
}
|
@ -25,4 +25,9 @@ Environmental Audio
|
||||
File = birds4.ogg
|
||||
Volume = 100%
|
||||
}
|
||||
Campfire
|
||||
{
|
||||
File = campfire.ogg
|
||||
Volume = 100%
|
||||
}
|
||||
}
|
@ -12,6 +12,11 @@ Events
|
||||
# Specify file names, followed by volume %. Optional min and max pitch adjustment (Defaults are 90%,110%)
|
||||
File[0] = bear_slam.ogg, 70%
|
||||
}
|
||||
Button Click
|
||||
{
|
||||
# Specify file names, followed by volume %. Optional min and max pitch adjustment (Defaults are 90%,110%)
|
||||
File[0] = button_click2.ogg, 40%
|
||||
}
|
||||
Consume Potion
|
||||
{
|
||||
# Specify file names, followed by volume %. Optional min and max pitch adjustment (Defaults are 90%,110%)
|
||||
|
@ -1,7 +1,183 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="Forge_No_Shadow_24x24" tilewidth="24" tileheight="24" tilecount="336" columns="56">
|
||||
<image source="commercial_assets/112x96_Forge_No_Shadow_24x24.png" width="1344" height="144"/>
|
||||
<tile id="169">
|
||||
<tile id="0" type="ForegroundTile"/>
|
||||
<tile id="1" type="ForegroundTile"/>
|
||||
<tile id="2" type="ForegroundTile"/>
|
||||
<tile id="3" type="ForegroundTile"/>
|
||||
<tile id="4" type="ForegroundTile"/>
|
||||
<tile id="5" type="ForegroundTile"/>
|
||||
<tile id="6" type="ForegroundTile"/>
|
||||
<tile id="7" type="ForegroundTile"/>
|
||||
<tile id="8" type="ForegroundTile"/>
|
||||
<tile id="9" type="ForegroundTile"/>
|
||||
<tile id="10" type="ForegroundTile"/>
|
||||
<tile id="11" type="ForegroundTile"/>
|
||||
<tile id="12" type="ForegroundTile"/>
|
||||
<tile id="13" type="ForegroundTile"/>
|
||||
<tile id="14" type="ForegroundTile"/>
|
||||
<tile id="15" type="ForegroundTile"/>
|
||||
<tile id="16" type="ForegroundTile"/>
|
||||
<tile id="17" type="ForegroundTile"/>
|
||||
<tile id="18" type="ForegroundTile"/>
|
||||
<tile id="19" type="ForegroundTile"/>
|
||||
<tile id="20" type="ForegroundTile"/>
|
||||
<tile id="21" type="ForegroundTile"/>
|
||||
<tile id="22" type="ForegroundTile"/>
|
||||
<tile id="23" type="ForegroundTile"/>
|
||||
<tile id="24" type="ForegroundTile"/>
|
||||
<tile id="25" type="ForegroundTile"/>
|
||||
<tile id="26" type="ForegroundTile"/>
|
||||
<tile id="27" type="ForegroundTile"/>
|
||||
<tile id="28" type="ForegroundTile"/>
|
||||
<tile id="29" type="ForegroundTile"/>
|
||||
<tile id="30" type="ForegroundTile"/>
|
||||
<tile id="31" type="ForegroundTile"/>
|
||||
<tile id="32" type="ForegroundTile"/>
|
||||
<tile id="33" type="ForegroundTile"/>
|
||||
<tile id="34" type="ForegroundTile"/>
|
||||
<tile id="35" type="ForegroundTile"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="41" type="ForegroundTile"/>
|
||||
<tile id="42" type="ForegroundTile"/>
|
||||
<tile id="43" type="ForegroundTile"/>
|
||||
<tile id="44" type="ForegroundTile"/>
|
||||
<tile id="45" type="ForegroundTile"/>
|
||||
<tile id="46" type="ForegroundTile"/>
|
||||
<tile id="47" type="ForegroundTile"/>
|
||||
<tile id="48" type="ForegroundTile"/>
|
||||
<tile id="49" type="ForegroundTile"/>
|
||||
<tile id="50" type="ForegroundTile"/>
|
||||
<tile id="51" type="ForegroundTile"/>
|
||||
<tile id="52" type="ForegroundTile"/>
|
||||
<tile id="53" type="ForegroundTile"/>
|
||||
<tile id="54" type="ForegroundTile"/>
|
||||
<tile id="55" type="ForegroundTile"/>
|
||||
<tile id="56" type="ForegroundTile"/>
|
||||
<tile id="57" type="ForegroundTile"/>
|
||||
<tile id="58" type="ForegroundTile"/>
|
||||
<tile id="59" type="ForegroundTile"/>
|
||||
<tile id="60" type="ForegroundTile"/>
|
||||
<tile id="61" type="ForegroundTile"/>
|
||||
<tile id="62" type="ForegroundTile"/>
|
||||
<tile id="63" type="ForegroundTile"/>
|
||||
<tile id="64" type="ForegroundTile"/>
|
||||
<tile id="65" type="ForegroundTile"/>
|
||||
<tile id="66" type="ForegroundTile"/>
|
||||
<tile id="67" type="ForegroundTile"/>
|
||||
<tile id="68" type="ForegroundTile"/>
|
||||
<tile id="69" type="ForegroundTile"/>
|
||||
<tile id="70" type="ForegroundTile"/>
|
||||
<tile id="71" type="ForegroundTile"/>
|
||||
<tile id="72" type="ForegroundTile"/>
|
||||
<tile id="73" type="ForegroundTile"/>
|
||||
<tile id="74" type="ForegroundTile"/>
|
||||
<tile id="75" type="ForegroundTile"/>
|
||||
<tile id="76" type="ForegroundTile"/>
|
||||
<tile id="77" type="ForegroundTile"/>
|
||||
<tile id="78" type="ForegroundTile"/>
|
||||
<tile id="79" type="ForegroundTile"/>
|
||||
<tile id="80" type="ForegroundTile"/>
|
||||
<tile id="81" type="ForegroundTile"/>
|
||||
<tile id="82" type="ForegroundTile"/>
|
||||
<tile id="83" type="ForegroundTile"/>
|
||||
<tile id="84" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile"/>
|
||||
<tile id="86" type="ForegroundTile"/>
|
||||
<tile id="87" type="ForegroundTile"/>
|
||||
<tile id="88" type="ForegroundTile"/>
|
||||
<tile id="89" type="ForegroundTile"/>
|
||||
<tile id="90" type="ForegroundTile"/>
|
||||
<tile id="91" type="ForegroundTile"/>
|
||||
<tile id="92" type="ForegroundTile"/>
|
||||
<tile id="93" type="ForegroundTile"/>
|
||||
<tile id="94" type="ForegroundTile"/>
|
||||
<tile id="95" type="ForegroundTile"/>
|
||||
<tile id="96" type="ForegroundTile"/>
|
||||
<tile id="97" type="ForegroundTile"/>
|
||||
<tile id="98" type="ForegroundTile"/>
|
||||
<tile id="99" type="ForegroundTile"/>
|
||||
<tile id="100" type="ForegroundTile"/>
|
||||
<tile id="101" type="ForegroundTile"/>
|
||||
<tile id="102" type="ForegroundTile"/>
|
||||
<tile id="103" type="ForegroundTile"/>
|
||||
<tile id="104" type="ForegroundTile"/>
|
||||
<tile id="105" type="ForegroundTile"/>
|
||||
<tile id="106" type="ForegroundTile"/>
|
||||
<tile id="107" type="ForegroundTile"/>
|
||||
<tile id="108" type="ForegroundTile"/>
|
||||
<tile id="109" type="ForegroundTile"/>
|
||||
<tile id="110" type="ForegroundTile"/>
|
||||
<tile id="111" type="ForegroundTile"/>
|
||||
<tile id="112" type="ForegroundTile"/>
|
||||
<tile id="113" type="ForegroundTile"/>
|
||||
<tile id="114" type="ForegroundTile"/>
|
||||
<tile id="115" type="ForegroundTile"/>
|
||||
<tile id="116" type="ForegroundTile"/>
|
||||
<tile id="117" type="ForegroundTile"/>
|
||||
<tile id="118" type="ForegroundTile"/>
|
||||
<tile id="119" type="ForegroundTile"/>
|
||||
<tile id="120" type="ForegroundTile"/>
|
||||
<tile id="121" type="ForegroundTile"/>
|
||||
<tile id="122" type="ForegroundTile"/>
|
||||
<tile id="123" type="ForegroundTile"/>
|
||||
<tile id="124" type="ForegroundTile"/>
|
||||
<tile id="125" type="ForegroundTile"/>
|
||||
<tile id="126" type="ForegroundTile"/>
|
||||
<tile id="127" type="ForegroundTile"/>
|
||||
<tile id="128" type="ForegroundTile"/>
|
||||
<tile id="129" type="ForegroundTile"/>
|
||||
<tile id="130" type="ForegroundTile"/>
|
||||
<tile id="131" type="ForegroundTile"/>
|
||||
<tile id="132" type="ForegroundTile"/>
|
||||
<tile id="133" type="ForegroundTile"/>
|
||||
<tile id="134" type="ForegroundTile"/>
|
||||
<tile id="135" type="ForegroundTile"/>
|
||||
<tile id="136" type="ForegroundTile"/>
|
||||
<tile id="137" type="ForegroundTile"/>
|
||||
<tile id="138" type="ForegroundTile"/>
|
||||
<tile id="139" type="ForegroundTile"/>
|
||||
<tile id="140" type="ForegroundTile"/>
|
||||
<tile id="141" type="ForegroundTile"/>
|
||||
<tile id="142" type="ForegroundTile"/>
|
||||
<tile id="143" type="ForegroundTile"/>
|
||||
<tile id="144" type="ForegroundTile"/>
|
||||
<tile id="145" type="ForegroundTile"/>
|
||||
<tile id="146" type="ForegroundTile"/>
|
||||
<tile id="147" type="ForegroundTile"/>
|
||||
<tile id="148" type="ForegroundTile"/>
|
||||
<tile id="149" type="ForegroundTile"/>
|
||||
<tile id="150" type="ForegroundTile"/>
|
||||
<tile id="151" type="ForegroundTile"/>
|
||||
<tile id="152" type="ForegroundTile"/>
|
||||
<tile id="153" type="ForegroundTile"/>
|
||||
<tile id="154" type="ForegroundTile"/>
|
||||
<tile id="155" type="ForegroundTile"/>
|
||||
<tile id="156" type="ForegroundTile"/>
|
||||
<tile id="157" type="ForegroundTile"/>
|
||||
<tile id="158" type="ForegroundTile"/>
|
||||
<tile id="159" type="ForegroundTile"/>
|
||||
<tile id="160" type="ForegroundTile"/>
|
||||
<tile id="161" type="ForegroundTile"/>
|
||||
<tile id="162" type="ForegroundTile"/>
|
||||
<tile id="163" type="ForegroundTile"/>
|
||||
<tile id="164" type="ForegroundTile"/>
|
||||
<tile id="165" type="ForegroundTile"/>
|
||||
<tile id="166" type="ForegroundTile"/>
|
||||
<tile id="167" type="ForegroundTile"/>
|
||||
<tile id="168" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="169" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="169" duration="100"/>
|
||||
<frame tileid="176" duration="100"/>
|
||||
@ -13,7 +189,10 @@
|
||||
<frame tileid="218" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="170">
|
||||
<tile id="170" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="170" duration="100"/>
|
||||
<frame tileid="177" duration="100"/>
|
||||
@ -25,7 +204,280 @@
|
||||
<frame tileid="219" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="225">
|
||||
<tile id="171" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="172" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="173" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="174" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="175" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="176" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="177" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="178" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="179" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="180" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="181" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="182" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="183" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="184" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="185" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="186" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="187" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="188" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="189" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="190" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="191" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="192" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="193" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="194" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="195" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="196" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="197" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="198" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="199" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="200" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="201" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="202" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="203" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="204" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="205" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="206" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="207" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="208" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="209" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="210" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="211" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="212" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="213" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="214" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="215" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="216" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="217" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="218" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="219" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="220" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="221" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="222" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="6" width="24" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="223" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="7" width="3" height="17"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="224" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="1" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="225" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="225" duration="100"/>
|
||||
<frame tileid="232" duration="100"/>
|
||||
@ -37,7 +489,10 @@
|
||||
<frame tileid="274" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="226">
|
||||
<tile id="226" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="226" duration="100"/>
|
||||
<frame tileid="233" duration="100"/>
|
||||
@ -49,4 +504,421 @@
|
||||
<frame tileid="275" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="227" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="228" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="229" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="230" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="231" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="232" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="233" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="234" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="235" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="236" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="237" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="238" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="239" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="240" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="241" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="242" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="243" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="244" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="245" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="246" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="247" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="248" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="249" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="250" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="251" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="252" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="253" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="254" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="255" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="256" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="257" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="258" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="259" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="260" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="261" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="262" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="263" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="264" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="265" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="266" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="267" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="268" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="269" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="270" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="271" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="272" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="2" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="273" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="274" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="275" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="276" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="277" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="278" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="279" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="280" type="ForegroundTile"/>
|
||||
<tile id="281" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="282" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="283" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="284" type="ForegroundTile"/>
|
||||
<tile id="285" type="ForegroundTile"/>
|
||||
<tile id="286" type="ForegroundTile"/>
|
||||
<tile id="287" type="ForegroundTile"/>
|
||||
<tile id="288" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="289" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="290" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="291" type="ForegroundTile"/>
|
||||
<tile id="292" type="ForegroundTile"/>
|
||||
<tile id="293" type="ForegroundTile"/>
|
||||
<tile id="294" type="ForegroundTile"/>
|
||||
<tile id="295" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="296" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="297" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="298" type="ForegroundTile"/>
|
||||
<tile id="299" type="ForegroundTile"/>
|
||||
<tile id="300" type="ForegroundTile"/>
|
||||
<tile id="301" type="ForegroundTile"/>
|
||||
<tile id="302" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="303" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="304" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="305" type="ForegroundTile"/>
|
||||
<tile id="306" type="ForegroundTile"/>
|
||||
<tile id="307" type="ForegroundTile"/>
|
||||
<tile id="308" type="ForegroundTile"/>
|
||||
<tile id="309" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="310" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="311" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="312" type="ForegroundTile"/>
|
||||
<tile id="313" type="ForegroundTile"/>
|
||||
<tile id="314" type="ForegroundTile"/>
|
||||
<tile id="315" type="ForegroundTile"/>
|
||||
<tile id="316" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="317" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="318" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="319" type="ForegroundTile"/>
|
||||
<tile id="320" type="ForegroundTile"/>
|
||||
<tile id="321" type="ForegroundTile"/>
|
||||
<tile id="322" type="ForegroundTile"/>
|
||||
<tile id="323" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="324" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="325" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="326" type="ForegroundTile"/>
|
||||
<tile id="327" type="ForegroundTile"/>
|
||||
<tile id="328" type="ForegroundTile"/>
|
||||
<tile id="329" type="ForegroundTile"/>
|
||||
<tile id="330" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="331" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="332" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="13" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="333" type="ForegroundTile"/>
|
||||
<tile id="334" type="ForegroundTile"/>
|
||||
<tile id="335" type="ForegroundTile"/>
|
||||
</tileset>
|
||||
|
@ -1,7 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="No_Shadow_Campfire_24x24" tilewidth="24" tileheight="24" tilecount="128" columns="32">
|
||||
<image source="commercial_assets/64x64px_No_Shadow_Campfire_24x24.png" width="768" height="96"/>
|
||||
<tile id="1">
|
||||
<tile id="0" type="ForegroundTile"/>
|
||||
<tile id="1" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="1" duration="100"/>
|
||||
<frame tileid="5" duration="100"/>
|
||||
@ -13,7 +14,7 @@
|
||||
<frame tileid="29" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="2">
|
||||
<tile id="2" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="2" duration="100"/>
|
||||
<frame tileid="6" duration="100"/>
|
||||
@ -25,7 +26,37 @@
|
||||
<frame tileid="30" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="33">
|
||||
<tile id="3" type="ForegroundTile"/>
|
||||
<tile id="4" type="ForegroundTile"/>
|
||||
<tile id="5" type="ForegroundTile"/>
|
||||
<tile id="6" type="ForegroundTile"/>
|
||||
<tile id="7" type="ForegroundTile"/>
|
||||
<tile id="8" type="ForegroundTile"/>
|
||||
<tile id="9" type="ForegroundTile"/>
|
||||
<tile id="10" type="ForegroundTile"/>
|
||||
<tile id="11" type="ForegroundTile"/>
|
||||
<tile id="12" type="ForegroundTile"/>
|
||||
<tile id="13" type="ForegroundTile"/>
|
||||
<tile id="14" type="ForegroundTile"/>
|
||||
<tile id="15" type="ForegroundTile"/>
|
||||
<tile id="16" type="ForegroundTile"/>
|
||||
<tile id="17" type="ForegroundTile"/>
|
||||
<tile id="18" type="ForegroundTile"/>
|
||||
<tile id="19" type="ForegroundTile"/>
|
||||
<tile id="20" type="ForegroundTile"/>
|
||||
<tile id="21" type="ForegroundTile"/>
|
||||
<tile id="22" type="ForegroundTile"/>
|
||||
<tile id="23" type="ForegroundTile"/>
|
||||
<tile id="24" type="ForegroundTile"/>
|
||||
<tile id="25" type="ForegroundTile"/>
|
||||
<tile id="26" type="ForegroundTile"/>
|
||||
<tile id="27" type="ForegroundTile"/>
|
||||
<tile id="28" type="ForegroundTile"/>
|
||||
<tile id="29" type="ForegroundTile"/>
|
||||
<tile id="30" type="ForegroundTile"/>
|
||||
<tile id="31" type="ForegroundTile"/>
|
||||
<tile id="32" type="ForegroundTile"/>
|
||||
<tile id="33" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="33" duration="100"/>
|
||||
<frame tileid="37" duration="100"/>
|
||||
@ -37,7 +68,7 @@
|
||||
<frame tileid="61" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="34">
|
||||
<tile id="34" type="ForegroundTile">
|
||||
<animation>
|
||||
<frame tileid="34" duration="100"/>
|
||||
<frame tileid="38" duration="100"/>
|
||||
@ -49,7 +80,40 @@
|
||||
<frame tileid="62" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="65">
|
||||
<tile id="35" type="ForegroundTile"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="41" type="ForegroundTile"/>
|
||||
<tile id="42" type="ForegroundTile"/>
|
||||
<tile id="43" type="ForegroundTile"/>
|
||||
<tile id="44" type="ForegroundTile"/>
|
||||
<tile id="45" type="ForegroundTile"/>
|
||||
<tile id="46" type="ForegroundTile"/>
|
||||
<tile id="47" type="ForegroundTile"/>
|
||||
<tile id="48" type="ForegroundTile"/>
|
||||
<tile id="49" type="ForegroundTile"/>
|
||||
<tile id="50" type="ForegroundTile"/>
|
||||
<tile id="51" type="ForegroundTile"/>
|
||||
<tile id="52" type="ForegroundTile"/>
|
||||
<tile id="53" type="ForegroundTile"/>
|
||||
<tile id="54" type="ForegroundTile"/>
|
||||
<tile id="55" type="ForegroundTile"/>
|
||||
<tile id="56" type="ForegroundTile"/>
|
||||
<tile id="57" type="ForegroundTile"/>
|
||||
<tile id="58" type="ForegroundTile"/>
|
||||
<tile id="59" type="ForegroundTile"/>
|
||||
<tile id="60" type="ForegroundTile"/>
|
||||
<tile id="61" type="ForegroundTile"/>
|
||||
<tile id="62" type="ForegroundTile"/>
|
||||
<tile id="63" type="ForegroundTile"/>
|
||||
<tile id="64" type="ForegroundTile"/>
|
||||
<tile id="65" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="65" duration="100"/>
|
||||
<frame tileid="69" duration="100"/>
|
||||
@ -61,7 +125,10 @@
|
||||
<frame tileid="93" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="66">
|
||||
<tile id="66" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="66" duration="100"/>
|
||||
<frame tileid="70" duration="100"/>
|
||||
@ -73,7 +140,96 @@
|
||||
<frame tileid="94" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="97">
|
||||
<tile id="67" type="ForegroundTile"/>
|
||||
<tile id="68" type="ForegroundTile"/>
|
||||
<tile id="69" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="70" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="71" type="ForegroundTile"/>
|
||||
<tile id="72" type="ForegroundTile"/>
|
||||
<tile id="73" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="74" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="75" type="ForegroundTile"/>
|
||||
<tile id="76" type="ForegroundTile"/>
|
||||
<tile id="77" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="78" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="79" type="ForegroundTile"/>
|
||||
<tile id="80" type="ForegroundTile"/>
|
||||
<tile id="81" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="82" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="83" type="ForegroundTile"/>
|
||||
<tile id="84" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87" type="ForegroundTile"/>
|
||||
<tile id="88" type="ForegroundTile"/>
|
||||
<tile id="89" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="90" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="91" type="ForegroundTile"/>
|
||||
<tile id="92" type="ForegroundTile"/>
|
||||
<tile id="93" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="9" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="94" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="10" width="24" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="95" type="ForegroundTile"/>
|
||||
<tile id="96" type="ForegroundTile"/>
|
||||
<tile id="97" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="97" duration="100"/>
|
||||
<frame tileid="101" duration="100"/>
|
||||
@ -85,7 +241,10 @@
|
||||
<frame tileid="125" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="98">
|
||||
<tile id="98" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
<animation>
|
||||
<frame tileid="98" duration="100"/>
|
||||
<frame tileid="102" duration="100"/>
|
||||
@ -97,4 +256,89 @@
|
||||
<frame tileid="126" duration="100"/>
|
||||
</animation>
|
||||
</tile>
|
||||
<tile id="99" type="ForegroundTile"/>
|
||||
<tile id="100" type="ForegroundTile"/>
|
||||
<tile id="101" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="102" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="103" type="ForegroundTile"/>
|
||||
<tile id="104" type="ForegroundTile"/>
|
||||
<tile id="105" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="106" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="107" type="ForegroundTile"/>
|
||||
<tile id="108" type="ForegroundTile"/>
|
||||
<tile id="109" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="110" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="111" type="ForegroundTile"/>
|
||||
<tile id="112" type="ForegroundTile"/>
|
||||
<tile id="113" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="114" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="115" type="ForegroundTile"/>
|
||||
<tile id="116" type="ForegroundTile"/>
|
||||
<tile id="117" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="118" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="119" type="ForegroundTile"/>
|
||||
<tile id="120" type="ForegroundTile"/>
|
||||
<tile id="121" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="122" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="123" type="ForegroundTile"/>
|
||||
<tile id="124" type="ForegroundTile"/>
|
||||
<tile id="125" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="1" y="0" width="23" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="126" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="127" type="ForegroundTile"/>
|
||||
</tileset>
|
||||
|
@ -1,4 +1,354 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<tileset version="1.10" tiledversion="1.10.1" name="grid_Props_No_Shadow_24x24" tilewidth="24" tileheight="24" tilecount="2107" columns="49">
|
||||
<image source="commercial_assets/16x16px_grid_Props_No_Shadow_24x24.png" width="1176" height="1032"/>
|
||||
<tile id="36" type="ForegroundTile"/>
|
||||
<tile id="37" type="ForegroundTile"/>
|
||||
<tile id="38" type="ForegroundTile"/>
|
||||
<tile id="39" type="ForegroundTile"/>
|
||||
<tile id="40" type="ForegroundTile"/>
|
||||
<tile id="85" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="19" width="9" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="86" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="87" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="88" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="24" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="89" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="19" width="15" height="5"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="134" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="135" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="136" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="137" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="138" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="12" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="404" type="ForegroundTile"/>
|
||||
<tile id="405" type="ForegroundTile"/>
|
||||
<tile id="406" type="ForegroundTile"/>
|
||||
<tile id="407" type="ForegroundTile"/>
|
||||
<tile id="408" type="ForegroundTile"/>
|
||||
<tile id="409" type="ForegroundTile"/>
|
||||
<tile id="410" type="ForegroundTile"/>
|
||||
<tile id="411" type="ForegroundTile"/>
|
||||
<tile id="420" type="ForegroundTile"/>
|
||||
<tile id="421" type="ForegroundTile"/>
|
||||
<tile id="422" type="ForegroundTile"/>
|
||||
<tile id="423" type="ForegroundTile"/>
|
||||
<tile id="424" type="ForegroundTile"/>
|
||||
<tile id="425" type="ForegroundTile"/>
|
||||
<tile id="426" type="ForegroundTile"/>
|
||||
<tile id="427" type="ForegroundTile"/>
|
||||
<tile id="453" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="454" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="455" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="456" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="457" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="458" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="459" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="460" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="18" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="469" type="ForegroundTile"/>
|
||||
<tile id="470" type="ForegroundTile"/>
|
||||
<tile id="471" type="ForegroundTile"/>
|
||||
<tile id="472" type="ForegroundTile"/>
|
||||
<tile id="473" type="ForegroundTile"/>
|
||||
<tile id="474" type="ForegroundTile"/>
|
||||
<tile id="475" type="ForegroundTile"/>
|
||||
<tile id="476" type="ForegroundTile"/>
|
||||
<tile id="516" type="ForegroundTile"/>
|
||||
<tile id="517" type="ForegroundTile"/>
|
||||
<tile id="518" type="ForegroundTile"/>
|
||||
<tile id="519" type="ForegroundTile"/>
|
||||
<tile id="520" type="ForegroundTile"/>
|
||||
<tile id="521" type="ForegroundTile"/>
|
||||
<tile id="522" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="17" width="9" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="523" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="24" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="524" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="24" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="525" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="17" width="13" height="7"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="565" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="566" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="19" height="13"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="567" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="4" y="0" width="20" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="568" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="569" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="570" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="16" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="571" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="572" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="573" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="3">
|
||||
<object id="2" x="0" y="0" width="24" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="574" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="15"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="660" type="ForegroundTile"/>
|
||||
<tile id="661" type="ForegroundTile"/>
|
||||
<tile id="662" type="ForegroundTile"/>
|
||||
<tile id="709" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="15" width="18" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="710" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="15" width="24" height="9"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="711" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="14" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="758" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="9" y="0" width="15" height="11"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="759" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="11"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="760" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="3" height="1"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="882" type="ForegroundTile"/>
|
||||
<tile id="883" type="ForegroundTile"/>
|
||||
<tile id="884" type="ForegroundTile"/>
|
||||
<tile id="885" type="ForegroundTile"/>
|
||||
<tile id="886" type="ForegroundTile"/>
|
||||
<tile id="887" type="ForegroundTile"/>
|
||||
<tile id="931" type="ForegroundTile"/>
|
||||
<tile id="932" type="ForegroundTile"/>
|
||||
<tile id="933" type="ForegroundTile"/>
|
||||
<tile id="934" type="ForegroundTile"/>
|
||||
<tile id="935" type="ForegroundTile"/>
|
||||
<tile id="936" type="ForegroundTile"/>
|
||||
<tile id="980" type="ForegroundTile"/>
|
||||
<tile id="981" type="ForegroundTile"/>
|
||||
<tile id="982" type="ForegroundTile"/>
|
||||
<tile id="983" type="ForegroundTile"/>
|
||||
<tile id="984" type="ForegroundTile"/>
|
||||
<tile id="985" type="ForegroundTile"/>
|
||||
<tile id="1029" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="16" y="0" width="8" height="18"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1030" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1031" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1032" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1033" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="19"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1034" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="6" height="14"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1078" type="ForegroundTile"/>
|
||||
<tile id="1079" type="ForegroundTile"/>
|
||||
<tile id="1080" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="6" y="0" width="18" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1081" type="ForegroundTile">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="19" height="13"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1082" type="ForegroundTile"/>
|
||||
<tile id="1083" type="ForegroundTile"/>
|
||||
<tile id="1563">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="16" y="12" width="8" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1564">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="24" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1565">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="12" width="10" height="12"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1612">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1613">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1614">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1661">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1662">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1663">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="24"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1710">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="15" y="0" width="9" height="4"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1711">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="24" height="10"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
<tile id="1712">
|
||||
<objectgroup draworder="index" id="2">
|
||||
<object id="1" x="0" y="0" width="10" height="16"/>
|
||||
</objectgroup>
|
||||
</tile>
|
||||
</tileset>
|
||||
|
BIN
Adventures in Lestoria/assets/npcs/greg.png
Normal file
BIN
Adventures in Lestoria/assets/npcs/greg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
Adventures in Lestoria/assets/npcs/sherman.png
Normal file
BIN
Adventures in Lestoria/assets/npcs/sherman.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
Adventures in Lestoria/assets/npcs/traveling_merchant.png
Normal file
BIN
Adventures in Lestoria/assets/npcs/traveling_merchant.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
Adventures in Lestoria/assets/sounds/button_click2.ogg
Normal file
BIN
Adventures in Lestoria/assets/sounds/button_click2.ogg
Normal file
Binary file not shown.
BIN
Adventures in Lestoria/assets/sounds/campfire.ogg
Normal file
BIN
Adventures in Lestoria/assets/sounds/campfire.ogg
Normal file
Binary file not shown.
BIN
Adventures in Lestoria/assets/sounds/fireplace.wav
Normal file
BIN
Adventures in Lestoria/assets/sounds/fireplace.wav
Normal file
Binary file not shown.
15
Adventures in Lestoria/characters.txt
Normal file
15
Adventures in Lestoria/characters.txt
Normal file
@ -0,0 +1,15 @@
|
||||
i imagined it as a self-insert.
|
||||
|
||||
For the back story for the 2 Npc
|
||||
Our Blacksmith doesnt really has a backstory.
|
||||
Ment to be a bit of an odd goofball who already came around in the continent and even knows the more dangerous spots on the map.
|
||||
Often visited Merchant Crossing for work.
|
||||
|
||||
Visual i imagine the basic blacksmith bearded, with a belly, darker hair.
|
||||
|
||||
Sherman Introduces hisself in the story with
|
||||
Sherman. Professor of the Lestorian Science Corporation.
|
||||
Even though its a Corporation and not directly ruled by the king, they working closely together with the kingdom and therefore have knowledge about some state secrets. Not sure how far i will get into that part of lore between end of chapter 2 and early chapter 4.
|
||||
But the king basically knows about there current project and the Stone-Battery they found was already used to power lights and experiments with heating up buildings. Nothing was made known about that project to the public yet though. And its there first contact with an power source.
|
||||
|
||||
Visuals Lab coat, glasses, blonde groomed hair, healthy body not extremly nerdy or anything.
|
Loading…
x
Reference in New Issue
Block a user