Merge branch 'master' of github.com:progtime-net/ZoFo
49
MonogameLibrary/UI/Elements/Bar.cs
Normal file
|
@ -0,0 +1,49 @@
|
|||
using Microsoft.Xna.Framework.Graphics;
|
||||
using MonogameLibrary.UI.Base;
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using MonogameLibrary.UI.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
using Microsoft.Xna.Framework.Input;
|
||||
|
||||
namespace MonogameLibrary.UI.Elements;
|
||||
|
||||
public class Bar : DrawableUIElement
|
||||
{
|
||||
public float percent = 0.5f;
|
||||
private DrawableUIElement barInside;
|
||||
public Color inColor;
|
||||
public string inTextureName;
|
||||
|
||||
public Bar(UIManager manager, int layerIndex = 0, string textureName = "") : base(manager, layerIndex, textureName)
|
||||
{
|
||||
}
|
||||
|
||||
public void Initialize()
|
||||
{
|
||||
barInside = new DrawableUIElement(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(rectangle.X + rectangle.Height / 8, rectangle.Y + rectangle.Height / 8,
|
||||
(int)((rectangle.Width - rectangle.Height / 4) * percent), rectangle.Height / 8 * 7),
|
||||
mainColor = inColor,
|
||||
textureName = inTextureName
|
||||
};
|
||||
}
|
||||
|
||||
public override void LoadTexture(ContentManager content)
|
||||
{
|
||||
barInside.LoadTexture(content);
|
||||
base.LoadTexture(content);
|
||||
}
|
||||
|
||||
public void Update(GameTime gameTime, float percent)
|
||||
{
|
||||
barInside.rectangle = new Rectangle(rectangle.X + rectangle.Height / 8, rectangle.Y + rectangle.Height / 8,
|
||||
(int)((rectangle.Width - rectangle.Height / 4) * percent), rectangle.Height / 8 * 7);
|
||||
}
|
||||
}
|
91
MonogameLibrary/UI/Elements/HoverWindow.cs
Normal file
|
@ -0,0 +1,91 @@
|
|||
using Microsoft.Xna.Framework.Graphics;
|
||||
using MonogameLibrary.UI.Base;
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using MonogameLibrary.UI.Enums;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
|
||||
namespace MonogameLibrary.UI.Elements;
|
||||
|
||||
public class HoverWindow : DrawableUIElement
|
||||
{
|
||||
public string tagItem;
|
||||
public string discriptions;
|
||||
public Dictionary<string, int> resourcesNeededToCraft;
|
||||
private List<Label> Labels = new List<Label>();
|
||||
public float scale2;
|
||||
public string fontName2;
|
||||
public Color fontColor2;
|
||||
public string itemTextureName1;
|
||||
private DrawableUIElement icon;
|
||||
private Label itemName;
|
||||
private Label discription;
|
||||
private int labelIndex = 0;
|
||||
|
||||
|
||||
public HoverWindow(UIManager manager, int layerIndex = 0, string textureName = "") : base(manager, layerIndex, textureName)
|
||||
{
|
||||
}
|
||||
|
||||
public void Initialize(ContentManager content)
|
||||
{
|
||||
icon = new DrawableUIElement(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(rectangle.X + rectangle.Width / 20, rectangle.Y + rectangle.Width / 20, rectangle.Width / 5, rectangle.Width / 5),
|
||||
mainColor = Color.White, textureName = itemTextureName1
|
||||
};
|
||||
icon.LoadTexture(content);
|
||||
itemName = new Label(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(rectangle.X + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 20, rectangle.Y + rectangle.Width / 10, rectangle.Width / 3 * 2, rectangle.Width / 5 ),
|
||||
fontColor = fontColor2, text = tagItem, scale = scale2, fontName = fontName2, mainColor = Color.Transparent, textAligment = TextAligment.Left
|
||||
};
|
||||
itemName.LoadTexture(content);
|
||||
discription = new Label(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(rectangle.X + rectangle.Width / 20, rectangle.Y + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 20, rectangle.Width / 5, rectangle.Width / 5),
|
||||
fontColor = fontColor2, text = discriptions, scale = scale2 / 1.5f, fontName = fontName2, mainColor = Color.Transparent, textAligment = TextAligment.Left
|
||||
};
|
||||
discription.LoadTexture(content);
|
||||
foreach (var resource in resourcesNeededToCraft)
|
||||
{
|
||||
Label res = new Label(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(rectangle.X + rectangle.Width / 2 - rectangle.Width / 3 / 2, rectangle.Y + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 5 + rectangle.Width / 20 + (rectangle.Width / 10 + rectangle.Width / 40) * labelIndex, rectangle.Width / 3, rectangle.Width / 10),
|
||||
fontColor = fontColor2, text = resource.Key + " " + resource.Value, scale = scale2, fontName = fontName2, mainColor = Color.Transparent
|
||||
};
|
||||
res.LoadTexture(content);
|
||||
Labels.Add(res);
|
||||
labelIndex++;
|
||||
}
|
||||
}
|
||||
|
||||
public override void LoadTexture(ContentManager content)
|
||||
{
|
||||
base.LoadTexture(content);
|
||||
}
|
||||
|
||||
public void Update(GameTime gameTime)
|
||||
{
|
||||
labelIndex = 0;
|
||||
icon.rectangle = new Rectangle(rectangle.X + rectangle.Width / 20, rectangle.Y + rectangle.Width / 20, rectangle.Width / 5, rectangle.Width / 5);
|
||||
itemName.rectangle = new Rectangle(rectangle.X + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 20,
|
||||
rectangle.Y + rectangle.Width / 10, rectangle.Width / 3 * 2, rectangle.Width / 5);
|
||||
discription.rectangle = new Rectangle(rectangle.X + rectangle.Width / 20,
|
||||
rectangle.Y + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 20, rectangle.Width / 5,
|
||||
rectangle.Width / 5);
|
||||
foreach (var label in Labels)
|
||||
{
|
||||
label.rectangle = new Rectangle(rectangle.X + rectangle.Width / 2 - rectangle.Width / 3 / 2,
|
||||
rectangle.Y + rectangle.Width / 20 + rectangle.Width / 5 + rectangle.Width / 5 + rectangle.Width / 20 +
|
||||
(rectangle.Width / 10 + rectangle.Width / 40) * labelIndex, rectangle.Width / 3, rectangle.Width / 10);
|
||||
labelIndex++;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -9,10 +9,11 @@ using System.Security.Cryptography.X509Certificates;
|
|||
using System.Text;
|
||||
using System.Threading;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
using Microsoft.Xna.Framework.Input;
|
||||
|
||||
namespace MonogameLibrary.UI.Elements;
|
||||
|
||||
public class ItemDisplayButton : DrawableUIElement
|
||||
public class ItemDisplayButton : Button
|
||||
{
|
||||
public int count;
|
||||
public string itemTextureName;
|
||||
|
@ -23,6 +24,11 @@ public class ItemDisplayButton : DrawableUIElement
|
|||
public string text1;
|
||||
public float scale1;
|
||||
private DrawableUIElement icon;
|
||||
private HoverState presentState = HoverState.None;
|
||||
private HoverWindow hoverWindow = null;
|
||||
private ContentManager content;
|
||||
public string discriptions1;
|
||||
public Dictionary<string, int> resourcesNeededToCraft1;
|
||||
|
||||
|
||||
public ItemDisplayButton(UIManager manager) : base(manager)
|
||||
|
@ -51,6 +57,7 @@ public class ItemDisplayButton : DrawableUIElement
|
|||
|
||||
public override void LoadTexture(ContentManager content)
|
||||
{
|
||||
this.content = content;
|
||||
icon.LoadTexture(content);
|
||||
base.LoadTexture(content);
|
||||
if (itemTextureName == "")
|
||||
|
@ -72,6 +79,47 @@ public class ItemDisplayButton : DrawableUIElement
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
public bool Update(GameTime gameTime)
|
||||
{
|
||||
|
||||
if (hoverState == HoverState.Hovering)
|
||||
{
|
||||
if (presentState != hoverState)
|
||||
{
|
||||
hoverWindow = new HoverWindow(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(Mouse.GetState().Position.X, Mouse.GetState().Position.Y, rectangle.Width, rectangle.Height * 10),
|
||||
mainColor = Color.Gray,
|
||||
tagItem = text1,
|
||||
discriptions = discriptions1,
|
||||
resourcesNeededToCraft = resourcesNeededToCraft1,
|
||||
fontColor2 = fontColor1,
|
||||
fontName2 = fontName1,
|
||||
scale2 = scale1,
|
||||
itemTextureName1 = itemTextureName
|
||||
};
|
||||
hoverWindow.Initialize(content);
|
||||
hoverWindow.LoadTexture(content);
|
||||
}
|
||||
|
||||
hoverWindow.rectangle.X = Mouse.GetState().Position.X;
|
||||
hoverWindow.rectangle.Y = Mouse.GetState().Position.Y;
|
||||
hoverWindow.Update(gameTime);
|
||||
}
|
||||
else if (hoverState == HoverState.None)
|
||||
{
|
||||
if (presentState != hoverState)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
presentState = hoverState;
|
||||
return false;
|
||||
}
|
||||
|
||||
public override void Draw(SpriteBatch _spriteBatch)
|
||||
{
|
||||
base.Draw(_spriteBatch);
|
|
@ -9,6 +9,7 @@ using System.Security.Cryptography.X509Certificates;
|
|||
using System.Text;
|
||||
using System.Threading;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
using Microsoft.Xna.Framework.Input;
|
||||
|
||||
namespace MonogameLibrary.UI.Elements;
|
||||
|
||||
|
@ -23,6 +24,12 @@ public class ItemDisplayLabel : DrawableUIElement
|
|||
public string text1;
|
||||
public float scale1;
|
||||
private DrawableUIElement icon;
|
||||
private HoverState presentState = HoverState.None;
|
||||
private HoverWindow hoverWindow = null;
|
||||
public string discriptions1;
|
||||
public Dictionary<string, int> resourcesNeededToCraft1;
|
||||
public HoverState hoverState = HoverState.None;
|
||||
private ContentManager content;
|
||||
|
||||
|
||||
public ItemDisplayLabel(UIManager manager) : base(manager)
|
||||
|
@ -51,6 +58,7 @@ public class ItemDisplayLabel : DrawableUIElement
|
|||
|
||||
public override void LoadTexture(ContentManager content)
|
||||
{
|
||||
this.content = content;
|
||||
icon.LoadTexture(content);
|
||||
base.LoadTexture(content);
|
||||
if (itemTextureName == "")
|
||||
|
@ -71,9 +79,72 @@ public class ItemDisplayLabel : DrawableUIElement
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool Update(GameTime gameTime)
|
||||
{
|
||||
if (rectangle.Intersects(new Rectangle(Mouse.GetState().Position, Point.Zero)))
|
||||
{
|
||||
hoverState = HoverState.Hovering;
|
||||
}
|
||||
else
|
||||
{
|
||||
hoverState = HoverState.None;
|
||||
}
|
||||
|
||||
if (hoverState == HoverState.Hovering)
|
||||
{
|
||||
if (presentState != hoverState)
|
||||
{
|
||||
if (resourcesNeededToCraft1 == null)
|
||||
{
|
||||
resourcesNeededToCraft1 = new Dictionary<string, int>();
|
||||
}
|
||||
|
||||
hoverWindow = new HoverWindow(Manager)
|
||||
{
|
||||
rectangle = new Rectangle(Mouse.GetState().Position.X, Mouse.GetState().Position.Y, rectangle.Width, rectangle.Height * 10),
|
||||
mainColor = Color.Gray,
|
||||
tagItem = text1,
|
||||
discriptions = discriptions1,
|
||||
resourcesNeededToCraft = resourcesNeededToCraft1,
|
||||
fontColor2 = fontColor1,
|
||||
fontName2 = fontName1,
|
||||
scale2 = scale1,
|
||||
itemTextureName1 = itemTextureName
|
||||
};
|
||||
hoverWindow.Initialize(content);
|
||||
hoverWindow.LoadTexture(content);
|
||||
}
|
||||
|
||||
hoverWindow.rectangle.X = Mouse.GetState().Position.X;
|
||||
hoverWindow.rectangle.Y = Mouse.GetState().Position.Y;
|
||||
hoverWindow.Update(gameTime);
|
||||
}
|
||||
else if (hoverState == HoverState.None)
|
||||
{
|
||||
if (presentState != hoverState)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
presentState = hoverState;
|
||||
return false;
|
||||
}
|
||||
|
||||
public override void Draw(SpriteBatch _spriteBatch)
|
||||
{
|
||||
|
||||
if (hoverState == HoverState.None)
|
||||
{
|
||||
_spriteBatch.Draw(texture, rectangle, Color.White);
|
||||
}
|
||||
else if (hoverState == HoverState.Hovering)
|
||||
{
|
||||
_spriteBatch.Draw(texture, rectangle, new Color(211, 211, 211));
|
||||
}
|
||||
base.Draw(_spriteBatch);
|
||||
_spriteBatch.Draw(texture, rectangle, Color.White);
|
||||
}
|
||||
}
|
|
@ -34,9 +34,22 @@
|
|||
/processorParam:TextureFormat=Compressed
|
||||
/build:Fonts/Font3.spritefont
|
||||
|
||||
#begin Fonts/Font4.spritefont
|
||||
/importer:FontDescriptionImporter
|
||||
/processor:FontDescriptionProcessor
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:TextureFormat=Compressed
|
||||
/build:Fonts/Font4.spritefont
|
||||
|
||||
#begin MapData/TileMaps/main.tmj
|
||||
/copy:MapData/TileMaps/main.tmj
|
||||
|
||||
#begin MapData/TileSets/bonfire.tsj
|
||||
/copy:MapData/TileSets/bonfire.tsj
|
||||
|
||||
#begin MapData/TileSets/IconSet.tsj
|
||||
/copy:MapData/TileSets/IconSet.tsj
|
||||
|
||||
#begin MapData/TileSets/tileset 1 collision.tsj
|
||||
/copy:MapData/TileSets/tileset 1 collision.tsj
|
||||
|
||||
|
@ -124,54 +137,54 @@
|
|||
#begin Textures/Animations/player_left_idle.animation
|
||||
/copy:Textures/Animations/player_left_idle.animation
|
||||
|
||||
#begin Textures/Animations/player_look_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_down_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_down.animation
|
||||
/copy:Textures/Animations/player_look_down.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_down_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left_down.animation
|
||||
/copy:Textures/Animations/player_look_left_down.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_up_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left_up.animation
|
||||
/copy:Textures/Animations/player_look_left_up.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_weapon.animation
|
||||
#begin Textures/Animations/player_look_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_down_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_left.animation
|
||||
/copy:Textures/Animations/player_look_left.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_down_weapon.animation
|
||||
#begin Textures/Animations/player_look_left_down.animation
|
||||
/copy:Textures/Animations/player_look_left_down.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_down.animation
|
||||
/copy:Textures/Animations/player_look_right_down.animation
|
||||
#begin Textures/Animations/player_look_left_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_down_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_up_weapon.animation
|
||||
#begin Textures/Animations/player_look_left_up.animation
|
||||
/copy:Textures/Animations/player_look_left_up.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_up.animation
|
||||
/copy:Textures/Animations/player_look_right_up.animation
|
||||
#begin Textures/Animations/player_look_left_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_up_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_weapon.animation
|
||||
#begin Textures/Animations/player_look_left_weapon.animation
|
||||
/copy:Textures/Animations/player_look_left_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right.animation
|
||||
/copy:Textures/Animations/player_look_right.animation
|
||||
|
||||
#begin Textures/Animations/player_look_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_up_weapon.animation
|
||||
#begin Textures/Animations/player_look_right_down.animation
|
||||
/copy:Textures/Animations/player_look_right_down.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_down_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_down_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_up.animation
|
||||
/copy:Textures/Animations/player_look_right_up.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_up_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_right_weapon.animation
|
||||
/copy:Textures/Animations/player_look_right_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_look_up.animation
|
||||
/copy:Textures/Animations/player_look_up.animation
|
||||
|
||||
#begin Textures/Animations/player_look_up_weapon.animation
|
||||
/copy:Textures/Animations/player_look_up_weapon.animation
|
||||
|
||||
#begin Textures/Animations/player_right_idle.animation
|
||||
/copy:Textures/Animations/player_right_idle.animation
|
||||
|
||||
|
@ -196,6 +209,21 @@
|
|||
#begin Textures/Animations/testAnimationExample.animation
|
||||
/copy:Textures/Animations/testAnimationExample.animation
|
||||
|
||||
#begin Textures/Animations/zombie_attack.animation
|
||||
/copy:Textures/Animations/zombie_attack.animation
|
||||
|
||||
#begin Textures/Animations/zombie_damaged.animation
|
||||
/copy:Textures/Animations/zombie_damaged.animation
|
||||
|
||||
#begin Textures/Animations/zombie_death.animation
|
||||
/copy:Textures/Animations/zombie_death.animation
|
||||
|
||||
#begin Textures/Animations/zombie_idle.animation
|
||||
/copy:Textures/Animations/zombie_idle.animation
|
||||
|
||||
#begin Textures/Animations/zombie_walk.animation
|
||||
/copy:Textures/Animations/zombie_walk.animation
|
||||
|
||||
#begin Textures/AnimationTextures/Character/hr-level1_idle.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
|
@ -280,6 +308,30 @@
|
|||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/AnimationTextures/unicorn.png
|
||||
|
||||
#begin Textures/AnimationTextures/Zombie/zombie_spritesheet_v1.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/AnimationTextures/Zombie/zombie_spritesheet_v1.png
|
||||
|
||||
#begin Textures/AnimationTextures/Zombie/zombie_spritesheet_v2.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/AnimationTextures/Zombie/zombie_spritesheet_v2.png
|
||||
|
||||
#begin Textures/GUI/background/base.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
|
@ -568,6 +620,810 @@
|
|||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/9.png
|
||||
|
||||
#begin Textures/icons/Collectables/Ammo.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/Ammo.png
|
||||
|
||||
#begin Textures/icons/Collectables/BottleOfWater.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/BottleOfWater.png
|
||||
|
||||
#begin Textures/icons/Collectables/Peeble.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/Peeble.png
|
||||
|
||||
#begin Textures/icons/Collectables/PureBottleOfWater.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/PureBottleOfWater.png
|
||||
|
||||
#begin Textures/icons/Collectables/RottenFlesh.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/RottenFlesh.png
|
||||
|
||||
#begin Textures/icons/Collectables/Steel.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/Steel.png
|
||||
|
||||
#begin Textures/icons/Collectables/Wood.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Collectables/Wood.png
|
||||
|
||||
#begin Textures/icons/Material/Fabric.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Fabric.png
|
||||
|
||||
#begin Textures/icons/Material/Leather.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Leather.png
|
||||
|
||||
#begin Textures/icons/Material/Paper.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Paper.png
|
||||
|
||||
#begin Textures/icons/Material/Rope.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Rope.png
|
||||
|
||||
#begin Textures/icons/Material/String.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/String.png
|
||||
|
||||
#begin Textures/icons/Material/Wooden Plank.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Wooden Plank.png
|
||||
|
||||
#begin Textures/icons/Material/Wool.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Material/Wool.png
|
||||
|
||||
#begin Textures/icons/Misc/Book 2.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Book 2.png
|
||||
|
||||
#begin Textures/icons/Misc/Book 3.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Book 3.png
|
||||
|
||||
#begin Textures/icons/Misc/Book.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Book.png
|
||||
|
||||
#begin Textures/icons/Misc/Candle.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Candle.png
|
||||
|
||||
#begin Textures/icons/Misc/Chest.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Chest.png
|
||||
|
||||
#begin Textures/icons/Misc/Copper Coin.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Copper Coin.png
|
||||
|
||||
#begin Textures/icons/Misc/Crate.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Crate.png
|
||||
|
||||
#begin Textures/icons/Misc/Envolop.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Envolop.png
|
||||
|
||||
#begin Textures/icons/Misc/Gear.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Gear.png
|
||||
|
||||
#begin Textures/icons/Misc/Golden Coin.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Golden Coin.png
|
||||
|
||||
#begin Textures/icons/Misc/Golden Key.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Golden Key.png
|
||||
|
||||
#begin Textures/icons/Misc/Heart.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Heart.png
|
||||
|
||||
#begin Textures/icons/Misc/Iron Key.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Iron Key.png
|
||||
|
||||
#begin Textures/icons/Misc/Lantern.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Lantern.png
|
||||
|
||||
#begin Textures/icons/Misc/Map.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Map.png
|
||||
|
||||
#begin Textures/icons/Misc/Rune Stone.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Rune Stone.png
|
||||
|
||||
#begin Textures/icons/Misc/Scroll.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Scroll.png
|
||||
|
||||
#begin Textures/icons/Misc/Silver Coin.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Silver Coin.png
|
||||
|
||||
#begin Textures/icons/Misc/Silver Key.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Misc/Silver Key.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Bone.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Bone.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Egg.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Egg.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Feather.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Feather.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Monster Egg.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Monster Egg.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Monster Eye.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Monster Eye.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Skull.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Skull.png
|
||||
|
||||
#begin Textures/icons/Monster Part/Slime Gel.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Monster Part/Slime Gel.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Coal.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Coal.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Copper Ingot.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Copper Ingot.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Copper Nugget.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Copper Nugget.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Crystal.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Crystal.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Cut Emerald.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Cut Emerald.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Cut Ruby.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Cut Ruby.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Cut Sapphire.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Cut Sapphire.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Cut Topaz.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Cut Topaz.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Diamond.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Diamond.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Emerald.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Emerald.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Gold Nugget.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Gold Nugget.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Golden Ingot.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Golden Ingot.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Obsidian.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Obsidian.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Pearl.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Pearl.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Ruby.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Ruby.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Sapphire.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Sapphire.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Silver Nugget.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Silver Nugget.png
|
||||
|
||||
#begin Textures/icons/Ore & Gem/Topaz.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Ore & Gem/Topaz.png
|
||||
|
||||
#begin Textures/icons/Potion/Blue Potion 2.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Blue Potion 2.png
|
||||
|
||||
#begin Textures/icons/Potion/Blue Potion 3.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Blue Potion 3.png
|
||||
|
||||
#begin Textures/icons/Potion/Empty Bottle.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Empty Bottle.png
|
||||
|
||||
#begin Textures/icons/Potion/Green Potion 2.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Green Potion 2.png
|
||||
|
||||
#begin Textures/icons/Potion/Green Potion 3.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Green Potion 3.png
|
||||
|
||||
#begin Textures/icons/Potion/Green Potion.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Green Potion.png
|
||||
|
||||
#begin Textures/icons/Potion/Red Potion 2.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Red Potion 2.png
|
||||
|
||||
#begin Textures/icons/Potion/Red Potion 3.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Red Potion 3.png
|
||||
|
||||
#begin Textures/icons/Potion/Red Potion.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/icons/Potion/Red Potion.png
|
||||
|
||||
#begin Textures/Test/pickaxe.webp
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
|
@ -616,6 +1472,18 @@
|
|||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/Test/wood.jpg
|
||||
|
||||
#begin Textures/TileSetImages/Campfire.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
/processorParam:ColorKeyColor=255,0,255,255
|
||||
/processorParam:ColorKeyEnabled=True
|
||||
/processorParam:GenerateMipmaps=False
|
||||
/processorParam:PremultiplyAlpha=True
|
||||
/processorParam:ResizeToPowerOfTwo=False
|
||||
/processorParam:MakeSquare=False
|
||||
/processorParam:TextureFormat=Color
|
||||
/build:Textures/TileSetImages/Campfire.png
|
||||
|
||||
#begin Textures/TileSetImages/Pipes.png
|
||||
/importer:TextureImporter
|
||||
/processor:TextureProcessor
|
||||
|
|
64
ZoFo/Content/Fonts/Font4.spritefont
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file contains an xml description of a font, and will be read by the XNA
|
||||
Framework Content Pipeline. Follow the comments to customize the appearance
|
||||
of the font in your game, and to change the characters which are available to draw
|
||||
with.
|
||||
-->
|
||||
<XnaContent xmlns:Graphics="Microsoft.Xna.Framework.Content.Pipeline.Graphics">
|
||||
<Asset Type="Graphics:FontDescription">
|
||||
|
||||
<!--
|
||||
Modify this string to change the font that will be imported.
|
||||
-->
|
||||
<FontName>Troubleside-lgjxX.ttf</FontName>
|
||||
|
||||
<!--
|
||||
Size is a float value, measured in points. Modify this value to change
|
||||
the size of the font.
|
||||
-->
|
||||
<Size>50</Size>
|
||||
|
||||
<!--
|
||||
Spacing is a float value, measured in pixels. Modify this value to change
|
||||
the amount of spacing in between characters.
|
||||
-->
|
||||
<Spacing>0</Spacing>
|
||||
|
||||
<!--
|
||||
UseKerning controls the layout of the font. If this value is true, kerning information
|
||||
will be used when placing characters.
|
||||
-->
|
||||
<UseKerning>true</UseKerning>
|
||||
|
||||
<!--
|
||||
Style controls the style of the font. Valid entries are "Regular", "Bold", "Italic",
|
||||
and "Bold, Italic", and are case sensitive.
|
||||
-->
|
||||
<Style>Regular</Style>
|
||||
|
||||
<!--
|
||||
If you uncomment this line, the default character will be substituted if you draw
|
||||
or measure text that contains characters which were not included in the font.
|
||||
-->
|
||||
<!-- <DefaultCharacter>*</DefaultCharacter> -->
|
||||
|
||||
<!--
|
||||
CharacterRegions control what letters are available in the font. Every
|
||||
character from Start to End will be built and made available for drawing. The
|
||||
default range is from 32, (ASCII space), to 126, ('~'), covering the basic Latin
|
||||
character set. The characters are ordered according to the Unicode standard.
|
||||
See the documentation for more information.
|
||||
-->
|
||||
<CharacterRegions>
|
||||
<CharacterRegion>
|
||||
<Start>32</Start>
|
||||
<End>127</End>
|
||||
</CharacterRegion>
|
||||
<CharacterRegion>
|
||||
<Start>А</Start>
|
||||
<End>ј</End>
|
||||
</CharacterRegion>
|
||||
</CharacterRegions>
|
||||
</Asset>
|
||||
</XnaContent>
|
BIN
ZoFo/Content/Fonts/Troubleside-lgjxX.ttf
Normal file
|
@ -1,57 +1,26 @@
|
|||
{
|
||||
"Map/SizeTest": {
|
||||
"height": 4300,
|
||||
"width": 2
|
||||
},
|
||||
"activeFile": "TileMaps/main.tmj",
|
||||
"expandedProjectPaths": [
|
||||
"TileSets",
|
||||
"TileMaps",
|
||||
"."
|
||||
],
|
||||
"fileStates": {
|
||||
"TileMaps/TileSets/TileSet 1.tsj": {
|
||||
"scaleInDock": 1
|
||||
},
|
||||
"TileMaps/main.tmj": {
|
||||
"scale": 0.5,
|
||||
"selectedLayer": 1,
|
||||
"scale": 0.33,
|
||||
"selectedLayer": 0,
|
||||
"viewCenter": {
|
||||
"x": 895,
|
||||
"y": 270
|
||||
"x": -463.63636363636374,
|
||||
"y": 300
|
||||
}
|
||||
},
|
||||
"TileSets/CollisionTileSet.tsj": {
|
||||
"scaleInDock": 0.75,
|
||||
"scaleInEditor": 1
|
||||
"TileSets/IconSet.tsj": {
|
||||
"dynamicWrapping": true
|
||||
},
|
||||
"TileSets/TileSet 1.tsj": {
|
||||
"scaleInDock": 1,
|
||||
"scaleInEditor": 1.5
|
||||
"dynamicWrapping": false,
|
||||
"scaleInDock": 1
|
||||
},
|
||||
"TileSets/WallSet.tsj": {
|
||||
"scaleInDock": 1,
|
||||
"scaleInEditor": 1
|
||||
"TileSets/TilesetNature.tsj": {
|
||||
"scaleInDock": 1.5
|
||||
},
|
||||
"TileSets/tileset 1 collision.tsj": {
|
||||
"dynamicWrapping": false,
|
||||
"scaleInDock": 1
|
||||
}
|
||||
},
|
||||
"last.imagePath": "D:/C#/Я смотрел ваши ХАКАТОНЫ/ZoFo/ZoFo/Content/Textures/TileSetImages",
|
||||
"openFiles": [
|
||||
"TileSets/TileSet 1.tsj",
|
||||
"TileMaps/main.tmj",
|
||||
"TileSets/CollisionTileSet.tsj"
|
||||
],
|
||||
"project": "MapSession.tiled-project",
|
||||
"recentFiles": [
|
||||
"TileMaps/main.tmj",
|
||||
"TileSets/CollisionTileSet.tsj",
|
||||
"TileSets/TileSet 1.tsj",
|
||||
"TileSets/WallSet.tsj"
|
||||
],
|
||||
"tileset.lastUsedFormat": "json",
|
||||
"tileset.margin": 0,
|
||||
"tileset.spacing": 0,
|
||||
"tileset.tileSize": {
|
||||
"height": 16,
|
||||
"width": 16
|
||||
}
|
||||
}
|
||||
|
|
17
ZoFo/Content/MapData/Templates/Collectables/Ammo.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":1,
|
||||
"height":16,
|
||||
"id":13,
|
||||
"name":"Ammo",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
17
ZoFo/Content/MapData/Templates/Collectables/BottleOfWater.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":3,
|
||||
"height":16,
|
||||
"id":11,
|
||||
"name":"BottleOfWater",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
17
ZoFo/Content/MapData/Templates/Collectables/Peeble.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":7,
|
||||
"height":16,
|
||||
"id":17,
|
||||
"name":"Peeble",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":2,
|
||||
"height":16,
|
||||
"id":10,
|
||||
"name":"PureBottleOfWater",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset":
|
||||
{
|
||||
"firstgid":1,
|
||||
"source":"..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
17
ZoFo/Content/MapData/Templates/Collectables/RottenFlesh.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":6,
|
||||
"height":16,
|
||||
"id":16,
|
||||
"name":"RottenFlesh",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
17
ZoFo/Content/MapData/Templates/Collectables/Steel.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":5,
|
||||
"height":16,
|
||||
"id":15,
|
||||
"name":"Steel",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
17
ZoFo/Content/MapData/Templates/Collectables/Wood.tj
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":4,
|
||||
"height":16,
|
||||
"id":12,
|
||||
"name":"Wood",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset": {
|
||||
"firstgid": 1,
|
||||
"source": "..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
18
ZoFo/Content/MapData/Templates/Enemies/Zombie.tj
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ "object":
|
||||
{
|
||||
"gid":8,
|
||||
"height":16,
|
||||
"id":1,
|
||||
"name":"Zombie",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16
|
||||
},
|
||||
"tileset":
|
||||
{
|
||||
"firstgid":1,
|
||||
"source":"..\/..\/TileSets\/IconSet.tsj"
|
||||
},
|
||||
"type":"template"
|
||||
}
|
66
ZoFo/Content/MapData/TileSets/IconSet.tsj
Normal file
|
@ -0,0 +1,66 @@
|
|||
{ "columns":0,
|
||||
"grid":
|
||||
{
|
||||
"height":1,
|
||||
"orientation":"orthogonal",
|
||||
"width":1
|
||||
},
|
||||
"margin":0,
|
||||
"name":"IconSet",
|
||||
"spacing":0,
|
||||
"tilecount":8,
|
||||
"tiledversion":"1.10.2",
|
||||
"tileheight":1200,
|
||||
"tiles":[
|
||||
{
|
||||
"id":0,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/Ammo.png",
|
||||
"imageheight":512,
|
||||
"imagewidth":512
|
||||
},
|
||||
{
|
||||
"id":1,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/PureBottleOfWater.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":32
|
||||
},
|
||||
{
|
||||
"id":2,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/BottleOfWater.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":32
|
||||
},
|
||||
{
|
||||
"id":3,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/Wood.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":32
|
||||
},
|
||||
{
|
||||
"id":4,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/Steel.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":32
|
||||
},
|
||||
{
|
||||
"id":5,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/RottenFlesh.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":32
|
||||
},
|
||||
{
|
||||
"id":6,
|
||||
"image":"..\/..\/Textures\/icons\/Collectables\/Peeble.png",
|
||||
"imageheight":1200,
|
||||
"imagewidth":1200
|
||||
},
|
||||
{
|
||||
"id":7,
|
||||
"image":"..\/..\/Textures\/icons\/zombie_218153.png",
|
||||
"imageheight":512,
|
||||
"imagewidth":512
|
||||
}],
|
||||
"tilewidth":1200,
|
||||
"type":"tileset",
|
||||
"version":"1.10"
|
||||
}
|
|
@ -8,13 +8,13 @@
|
|||
"width":24
|
||||
},
|
||||
"image":"..\/..\/Textures\/TileSetImages\/TilesetFloor.png",
|
||||
"imageheight":417,
|
||||
"imageheight":464,
|
||||
"imagewidth":352,
|
||||
"margin":0,
|
||||
"name":"TileSet 1",
|
||||
"objectalignment":"topleft",
|
||||
"spacing":0,
|
||||
"tilecount":572,
|
||||
"tilecount":638,
|
||||
"tiledversion":"1.10.2",
|
||||
"tileheight":16,
|
||||
"tiles":[
|
||||
|
@ -2314,6 +2314,270 @@
|
|||
{
|
||||
"id":571,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":572,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":573,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":574,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":575,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":576,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":577,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":578,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":579,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":580,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":581,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":582,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":583,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":584,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":585,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":586,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":587,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":588,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":589,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":590,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":591,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":592,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":593,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":594,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":595,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":596,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":597,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":598,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":599,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":600,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":601,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":602,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":603,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":604,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":605,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":606,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":607,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":608,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":609,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":610,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":611,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":612,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":613,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":614,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":615,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":616,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":617,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":618,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":619,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":620,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":621,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":622,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":623,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":624,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":625,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":626,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":627,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":628,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":629,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":630,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":631,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":632,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":633,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":634,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":635,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":636,
|
||||
"type":"Tile"
|
||||
},
|
||||
{
|
||||
"id":637,
|
||||
"type":"Tile"
|
||||
}],
|
||||
"tilewidth":16,
|
||||
"type":"tileset",
|
||||
|
@ -2332,8 +2596,20 @@
|
|||
"name":"SandStone",
|
||||
"probability":0.3,
|
||||
"tile":110
|
||||
},
|
||||
{
|
||||
"color":"#0000ff",
|
||||
"name":"LightGrass",
|
||||
"probability":1,
|
||||
"tile":265
|
||||
},
|
||||
{
|
||||
"color":"#ff7700",
|
||||
"name":"Dirt",
|
||||
"probability":1,
|
||||
"tile":177
|
||||
}],
|
||||
"name":"\u041f\u0435\u0441\u0447\u0430\u043d\u044b\u0439",
|
||||
"name":"\u0411\u0438\u043e\u043c\u043d\u044b\u0439",
|
||||
"tile":-1,
|
||||
"type":"corner",
|
||||
"wangtiles":[
|
||||
|
@ -2424,6 +2700,228 @@
|
|||
{
|
||||
"tileid":114,
|
||||
"wangid":[0, 2, 0, 2, 0, 2, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":154,
|
||||
"wangid":[0, 3, 0, 4, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":155,
|
||||
"wangid":[0, 3, 0, 4, 0, 4, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":156,
|
||||
"wangid":[0, 3, 0, 3, 0, 4, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":163,
|
||||
"wangid":[0, 3, 0, 4, 0, 3, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":176,
|
||||
"wangid":[0, 4, 0, 4, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":177,
|
||||
"wangid":[0, 4, 0, 4, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":178,
|
||||
"wangid":[0, 3, 0, 3, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":181,
|
||||
"wangid":[0, 4, 0, 3, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":182,
|
||||
"wangid":[0, 4, 0, 4, 0, 3, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":185,
|
||||
"wangid":[0, 4, 0, 3, 0, 4, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":198,
|
||||
"wangid":[0, 4, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":199,
|
||||
"wangid":[0, 4, 0, 3, 0, 3, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":200,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":203,
|
||||
"wangid":[0, 3, 0, 4, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":204,
|
||||
"wangid":[0, 4, 0, 4, 0, 4, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":242,
|
||||
"wangid":[0, 4, 0, 4, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":243,
|
||||
"wangid":[0, 4, 0, 4, 0, 4, 0, 4]
|
||||
},
|
||||
{
|
||||
"tileid":244,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":245,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":264,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":265,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":266,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":267,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":268,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":578,
|
||||
"wangid":[0, 3, 0, 2, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":579,
|
||||
"wangid":[0, 3, 0, 2, 0, 2, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":580,
|
||||
"wangid":[0, 3, 0, 3, 0, 2, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":581,
|
||||
"wangid":[0, 2, 0, 3, 0, 2, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":582,
|
||||
"wangid":[0, 2, 0, 2, 0, 3, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":600,
|
||||
"wangid":[0, 2, 0, 2, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":601,
|
||||
"wangid":[0, 2, 0, 2, 0, 2, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":602,
|
||||
"wangid":[0, 3, 0, 3, 0, 2, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":603,
|
||||
"wangid":[0, 3, 0, 2, 0, 2, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":604,
|
||||
"wangid":[0, 2, 0, 2, 0, 2, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":622,
|
||||
"wangid":[0, 2, 0, 3, 0, 3, 0, 3]
|
||||
},
|
||||
{
|
||||
"tileid":623,
|
||||
"wangid":[0, 2, 0, 3, 0, 3, 0, 2]
|
||||
},
|
||||
{
|
||||
"tileid":624,
|
||||
"wangid":[0, 3, 0, 3, 0, 3, 0, 2]
|
||||
}]
|
||||
},
|
||||
{
|
||||
"colors":[
|
||||
{
|
||||
"color":"#ff0000",
|
||||
"name":"",
|
||||
"probability":1,
|
||||
"tile":264
|
||||
}],
|
||||
"name":"\u0422\u0440\u0430\u0432\u0430",
|
||||
"tile":244,
|
||||
"type":"corner",
|
||||
"wangtiles":[
|
||||
{
|
||||
"tileid":244,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":245,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":264,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":265,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":266,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":267,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":268,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
}]
|
||||
},
|
||||
{
|
||||
"colors":[
|
||||
{
|
||||
"color":"#ff0000",
|
||||
"name":"",
|
||||
"probability":1,
|
||||
"tile":110
|
||||
}],
|
||||
"name":"\u041f\u0435\u0441\u0447\u0430\u043d\u0438\u043a",
|
||||
"tile":111,
|
||||
"type":"corner",
|
||||
"wangtiles":[
|
||||
{
|
||||
"tileid":110,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":111,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":112,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":113,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
},
|
||||
{
|
||||
"tileid":114,
|
||||
"wangid":[0, 1, 0, 1, 0, 1, 0, 1]
|
||||
}]
|
||||
}]
|
||||
}
|
102
ZoFo/Content/MapData/TileSets/bonfire.tsj
Normal file
|
@ -0,0 +1,102 @@
|
|||
{ "columns":4,
|
||||
"image":"..\/..\/Textures\/TileSetImages\/Campfire.png",
|
||||
"imageheight":32,
|
||||
"imagewidth":128,
|
||||
"margin":0,
|
||||
"name":"bonfire",
|
||||
"spacing":0,
|
||||
"tilecount":22,
|
||||
"tiledversion":"1.10.2",
|
||||
"tileheight":32,
|
||||
"tiles":[
|
||||
{
|
||||
"animation":[
|
||||
{
|
||||
"duration":250,
|
||||
"tileid":0
|
||||
},
|
||||
{
|
||||
"duration":250,
|
||||
"tileid":1
|
||||
},
|
||||
{
|
||||
"duration":250,
|
||||
"tileid":2
|
||||
},
|
||||
{
|
||||
"duration":250,
|
||||
"tileid":3
|
||||
}],
|
||||
"id":0,
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":1,
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":2,
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":3,
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":4
|
||||
},
|
||||
{
|
||||
"id":7
|
||||
},
|
||||
{
|
||||
"id":8
|
||||
},
|
||||
{
|
||||
"id":9
|
||||
},
|
||||
{
|
||||
"id":10
|
||||
},
|
||||
{
|
||||
"id":11
|
||||
},
|
||||
{
|
||||
"id":12
|
||||
},
|
||||
{
|
||||
"id":13
|
||||
},
|
||||
{
|
||||
"id":14
|
||||
},
|
||||
{
|
||||
"id":20
|
||||
},
|
||||
{
|
||||
"id":16
|
||||
},
|
||||
{
|
||||
"id":17
|
||||
},
|
||||
{
|
||||
"id":18
|
||||
},
|
||||
{
|
||||
"id":19
|
||||
},
|
||||
{
|
||||
"id":21
|
||||
},
|
||||
{
|
||||
"id":5
|
||||
},
|
||||
{
|
||||
"id":6
|
||||
},
|
||||
{
|
||||
"id":15
|
||||
}],
|
||||
"tilewidth":32,
|
||||
"type":"tileset",
|
||||
"version":"1.10"
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
"name":"tileset 1 collision",
|
||||
"spacing":0,
|
||||
"tilecount":240,
|
||||
"tiledversion":"1.10.2",
|
||||
"tiledversion":"1.11.0",
|
||||
"tileheight":16,
|
||||
"tiles":[
|
||||
{
|
||||
|
@ -105,7 +105,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -133,7 +132,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -161,7 +159,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -189,7 +186,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -217,7 +213,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -245,7 +240,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -273,7 +267,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -301,7 +294,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -329,7 +321,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -357,7 +348,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -385,7 +375,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -449,7 +438,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -477,7 +465,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -505,7 +492,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -533,7 +519,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -561,7 +546,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -589,7 +573,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -617,7 +600,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -645,7 +627,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -673,7 +654,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -701,7 +681,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -729,7 +708,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -861,7 +839,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -889,7 +866,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -917,7 +893,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -1013,7 +988,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -1041,7 +1015,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -1069,7 +1042,6 @@
|
|||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
|
@ -1386,10 +1358,56 @@
|
|||
},
|
||||
{
|
||||
"id":173,
|
||||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
"height":16,
|
||||
"id":1,
|
||||
"name":"",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16,
|
||||
"x":0,
|
||||
"y":0
|
||||
}],
|
||||
"opacity":1,
|
||||
"type":"objectgroup",
|
||||
"visible":true,
|
||||
"x":0,
|
||||
"y":0
|
||||
},
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":174,
|
||||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
"height":16,
|
||||
"id":1,
|
||||
"name":"",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16,
|
||||
"x":0,
|
||||
"y":0
|
||||
}],
|
||||
"opacity":1,
|
||||
"type":"objectgroup",
|
||||
"visible":true,
|
||||
"x":0,
|
||||
"y":0
|
||||
},
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
|
@ -1466,10 +1484,56 @@
|
|||
},
|
||||
{
|
||||
"id":193,
|
||||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
"height":16,
|
||||
"id":1,
|
||||
"name":"",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16,
|
||||
"x":0,
|
||||
"y":0
|
||||
}],
|
||||
"opacity":1,
|
||||
"type":"objectgroup",
|
||||
"visible":true,
|
||||
"x":0,
|
||||
"y":0
|
||||
},
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
"id":194,
|
||||
"objectgroup":
|
||||
{
|
||||
"draworder":"index",
|
||||
"id":2,
|
||||
"name":"",
|
||||
"objects":[
|
||||
{
|
||||
"height":16,
|
||||
"id":1,
|
||||
"name":"",
|
||||
"rotation":0,
|
||||
"type":"",
|
||||
"visible":true,
|
||||
"width":16,
|
||||
"x":0,
|
||||
"y":0
|
||||
}],
|
||||
"opacity":1,
|
||||
"type":"objectgroup",
|
||||
"visible":true,
|
||||
"x":0,
|
||||
"y":0
|
||||
},
|
||||
"type":"StopObject"
|
||||
},
|
||||
{
|
||||
|
|
1
ZoFo/Content/MapData/TileStamps/boulders.stamp
Normal file
1
ZoFo/Content/MapData/TileStamps/bushes.stamp
Normal file
1
ZoFo/Content/MapData/TileStamps/flowers.stamp
Normal file
|
@ -0,0 +1 @@
|
|||
{"name":"Flowers","variations":[{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZGRgAAAAKwAL","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYmRgAAAALwAM","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZmRgAAAAMwAN","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYWRgAAAANwAO","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZWRgAAAAOwAP","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjY2RgAAAAPwAQ","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1},{"map":{"compressionlevel":-1,"height":1,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZ2RgAAAAQwAR","encoding":"base64","height":1,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":1,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":1},"probability":1}]}
|
1
ZoFo/Content/MapData/TileStamps/green trees.stamp
Normal file
|
@ -0,0 +1 @@
|
|||
{"name":"Green Trees","variations":[{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwzZWBgMANicyC2AGJfIPYDYn8gDgDiVCBOA+J0IM4AYgBToAOv","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJxjZGBgYAJiSSCWAmIAAWgANw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJw7zsDAcAKI7wPxAyAGACBYA08=","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzbwsjAsBWItwHxGSA+C8TngPgJED8F4mdADACKGwc/","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTZGBgEAJiTSDWAmIAA+gAdw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALBZ45iAYYLjP7RJS0RUm93hNF1uj9fnB2JABD8=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALCZ45iAYYIjnzZpiYhqszucpsvt8fr8ZyAEbw==","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJwTZmBgEAFibSDWAWIABDgAfw==","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":2,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.10.2","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/TilesetNature.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":2},"probability":1}]}
|
1
ZoFo/Content/MapData/TileStamps/stone buildings.stamp
Normal file
|
@ -0,0 +1 @@
|
|||
{"name":"Stone Buildings","variations":[{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwcNACAMALBxLMCwwPGvjzZpiYhqszucpsvt8fr8EWABDw==","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJxjZWBgYANidiDmAGJJIJYCYmkglgFiXSDWA2J9IDYAYgAWQAE/","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjZGBg4AJibiCWBWI5IJYHYkMgNgJiYyAGAA+EAQ8=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":3,"infinite":false,"layers":[{"compression":"zlib","data":"eJzjYWBg4AViPiBWAGJFIFYCYhMgNgViMyAGABGgASo=","encoding":"base64","height":3,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":2,"infinite":false,"layers":[{"compression":"zlib","data":"eJzzY2Bg8AfiACBOAuJkIE4BYgAb1AIX","encoding":"base64","height":2,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":3,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":3},"probability":1},{"map":{"compressionlevel":-1,"height":5,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwsRgCAUALBXXqGCQgXQCooV/MRxu9sUEbPJ7OJqsdrsbu4eng4vbx9fP38Kng2j","encoding":"base64","height":5,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1},{"map":{"compressionlevel":-1,"height":5,"infinite":false,"layers":[{"compression":"zlib","data":"eJwNwwsRgCAUALBXWqGCQgXQCooV/MRyu9sUEbPJ7OJqsdrsbu4eng4vbx9fP3/WDwxj","encoding":"base64","height":5,"id":1,"name":"","opacity":1,"type":"tilelayer","visible":true,"width":4,"x":0,"y":0}],"nextlayerid":2,"nextobjectid":1,"orientation":"orthogonal","renderorder":"right-down","tiledversion":"1.11.0","tileheight":16,"tilesets":[{"firstgid":1,"source":"../TileSets/tileset 1 collision.tsj"}],"tilewidth":16,"type":"map","version":"1.10","width":4},"probability":1}]}
|
After Width: | Height: | Size: 5 KiB |
After Width: | Height: | Size: 16 KiB |
1
ZoFo/Content/Textures/Animations/zombie_attack.animation
Normal file
|
@ -0,0 +1 @@
|
|||
{"id":"zombie_attack","textureName":"Textures/AnimationTextures/Zombie/zombie_spritesheet_v1","startSpriteRectangle":{"X":0,"Y":64,"Width":32,"Height":32},"frameSecond":[{"Item1":0,"Item2":5}],"textureFrameInterval":0,"framesCount":3,"isCycle":false,"offset":"0, 0"}
|
|
@ -0,0 +1 @@
|
|||
{"id":"zombie_damaged","textureName":"Textures/AnimationTextures/Zombie/zombie_spritesheet_v1","startSpriteRectangle":{"X":0,"Y":128,"Width":32,"Height":32},"frameSecond":[{"Item1":0,"Item2":5}],"textureFrameInterval":0,"framesCount":1,"isCycle":true,"offset":"0, 0"}
|
1
ZoFo/Content/Textures/Animations/zombie_death.animation
Normal file
|
@ -0,0 +1 @@
|
|||
{"id":"zombie_death","textureName":"Textures/AnimationTextures/Zombie/zombie_spritesheet_v1","startSpriteRectangle":{"X":0,"Y":96,"Width":32,"Height":32},"frameSecond":[{"Item1":0,"Item2":5}],"textureFrameInterval":0,"framesCount":9,"isCycle":true,"offset":"0, 0"}
|
1
ZoFo/Content/Textures/Animations/zombie_idle.animation
Normal file
|
@ -0,0 +1 @@
|
|||
{"id":"zombie_idle","textureName":"Textures/AnimationTextures/Zombie/zombie_spritesheet_v1","startSpriteRectangle":{"X":0,"Y":0,"Width":32,"Height":32},"frameSecond":[{"Item1":0,"Item2":60}],"textureFrameInterval":0,"framesCount":2,"isCycle":true,"offset":"0, 0"}
|
1
ZoFo/Content/Textures/Animations/zombie_walk.animation
Normal file
|
@ -0,0 +1 @@
|
|||
{"id":"zombie_walk","textureName":"Textures/AnimationTextures/Zombie/zombie_spritesheet_v1","startSpriteRectangle":{"X":0,"Y":32,"Width":32,"Height":32},"frameSecond":[{"Item1":0,"Item2":30}],"textureFrameInterval":0,"framesCount":8,"isCycle":true,"offset":"0, 0"}
|
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 3.8 MiB |
BIN
ZoFo/Content/Textures/TileSetImages/Campfire.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 33 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/Ammo.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/BottleOfWater.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/Peeble.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/PureBottleOfWater.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/RottenFlesh.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/Steel.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Collectables/Wood.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Fabric.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Leather.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Paper.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Rope.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Material/String.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Wooden Plank.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Material/Wool.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Book 2.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Book 3.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Book.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Candle.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Chest.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Copper Coin.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Crate.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Envolop.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Gear.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Golden Coin.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Golden Key.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Heart.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Iron Key.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Lantern.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Map.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Rune Stone.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Scroll.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Silver Coin.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Misc/Silver Key.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Bone.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Egg.png
Normal file
After Width: | Height: | Size: 1,011 B |
BIN
ZoFo/Content/Textures/icons/Monster Part/Feather.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Monster Egg.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Monster Eye.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Skull.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
ZoFo/Content/Textures/icons/Monster Part/Slime Gel.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Coal.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Copper Ingot.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Copper Nugget.png
Normal file
After Width: | Height: | Size: 999 B |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Crystal.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Cut Emerald.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Cut Ruby.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Cut Sapphire.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Cut Topaz.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Diamond.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Emerald.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Gold Nugget.png
Normal file
After Width: | Height: | Size: 921 B |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Golden Ingot.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Obsidian.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Pearl.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Ruby.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Sapphire.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Silver Nugget.png
Normal file
After Width: | Height: | Size: 973 B |
BIN
ZoFo/Content/Textures/icons/Ore & Gem/Topaz.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Blue Potion 2.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Blue Potion 3.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Empty Bottle.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Green Potion 2.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Green Potion 3.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
ZoFo/Content/Textures/icons/Potion/Green Potion.png
Normal file
After Width: | Height: | Size: 1.6 KiB |