mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-31 11:44:47 +00:00
Split Tile Data
This commit is contained in:
@@ -23,7 +23,13 @@ namespace PckStudio.Internal
|
||||
{
|
||||
_entityImages ??= Resources.entities_sheet.SplitHorizontal(32).ToArray();
|
||||
DataCacher ??= new FileCacher(Program.AppDataCache);
|
||||
_ = Tiles.JsonTileData;
|
||||
_ = Tiles.JsonBlockData;
|
||||
_ = Tiles.JsonItemData;
|
||||
_ = Tiles.JsonParticleData;
|
||||
_ = Tiles.JsonMoonPhaseData;
|
||||
_ = Tiles.JsonExplosionData;
|
||||
_ = Tiles.JsonMapIconData;
|
||||
_ = Tiles.JsonExperienceOrbData;
|
||||
_ = Tiles.ItemImageList;
|
||||
_ = Tiles.BlockImageList;
|
||||
SettingsManager.Initialize();
|
||||
|
||||
@@ -40,18 +40,27 @@ namespace PckStudio.Internal.Json
|
||||
|
||||
internal static class Tiles
|
||||
{
|
||||
private static JsonTiles _jsonData;
|
||||
internal static JsonTiles JsonTileData => _jsonData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.tileData);
|
||||
private static JsonTiles
|
||||
_jsonBlockData, _jsonItemData,
|
||||
_jsonParticleData, _jsonMoonPhaseData,
|
||||
_jsonMapIconData, _jsonExplosionData,
|
||||
_jsonExperienceOrbData;
|
||||
internal static JsonTiles JsonBlockData => _jsonBlockData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.blockData);
|
||||
internal static JsonTiles JsonItemData => _jsonItemData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.itemData);
|
||||
internal static JsonTiles JsonParticleData => _jsonParticleData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.particleData);
|
||||
internal static JsonTiles JsonMoonPhaseData => _jsonMoonPhaseData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.moonPhaseData);
|
||||
internal static JsonTiles JsonMapIconData => _jsonMapIconData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.mapIconData);
|
||||
internal static JsonTiles JsonExplosionData => _jsonExplosionData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.explosionData);
|
||||
internal static JsonTiles JsonExperienceOrbData => _jsonExperienceOrbData ??= JsonConvert.DeserializeObject<JsonTiles>(Resources.experienceOrbData);
|
||||
|
||||
internal static List<JsonTileInfo> ItemTileInfos => JsonTileData.Items;
|
||||
|
||||
internal static List<JsonTileInfo> BlockTileInfos => JsonTileData.Blocks;
|
||||
internal static List<JsonTileInfo> ParticleTileInfos => JsonTileData.Particles;
|
||||
internal static List<JsonTileInfo> MoonPhaseTileInfos => JsonTileData.MoonPhases;
|
||||
internal static List<JsonTileInfo> MapIconTileInfos => JsonTileData.MapIcons;
|
||||
internal static List<JsonTileInfo> AdditionalMapIconTileInfos => JsonTileData.AdditionalMapIcons;
|
||||
internal static List<JsonTileInfo> ExperienceOrbTileInfos => JsonTileData.ExperienceOrbs;
|
||||
internal static List<JsonTileInfo> ExplosionTileInfos => JsonTileData.Explosion;
|
||||
internal static List<JsonTileInfo> ItemTileInfos => JsonItemData.Items;
|
||||
internal static List<JsonTileInfo> BlockTileInfos => JsonBlockData.Blocks;
|
||||
internal static List<JsonTileInfo> ParticleTileInfos => JsonParticleData.Particles;
|
||||
internal static List<JsonTileInfo> MoonPhaseTileInfos => JsonMoonPhaseData.MoonPhases;
|
||||
internal static List<JsonTileInfo> MapIconTileInfos => JsonMapIconData.MapIcons;
|
||||
internal static List<JsonTileInfo> AdditionalMapIconTileInfos => JsonMapIconData.AdditionalMapIcons;
|
||||
internal static List<JsonTileInfo> ExperienceOrbTileInfos => JsonExperienceOrbData.ExperienceOrbs;
|
||||
internal static List<JsonTileInfo> ExplosionTileInfos => JsonExplosionData.Explosion;
|
||||
|
||||
private static Image[] _itemImages;
|
||||
public static Image[] ItemImages => _itemImages ??= Resources.items_sheet.SplitHorizontal(16).ToArray();
|
||||
|
||||
@@ -628,7 +628,14 @@
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\atlases\blockData.json" />
|
||||
<None Include="Resources\atlases\entityData.json" />
|
||||
<None Include="Resources\atlases\experienceOrbData.json" />
|
||||
<None Include="Resources\atlases\explosionData.json" />
|
||||
<None Include="Resources\atlases\itemData.json" />
|
||||
<None Include="Resources\atlases\mapIconData.json" />
|
||||
<None Include="Resources\atlases\moonPhaseData.json" />
|
||||
<None Include="Resources\atlases\particleData.json" />
|
||||
<None Include="Resources\atlases\tileData.json" />
|
||||
<None Include="Resources\TexturePackIcon.png" />
|
||||
<None Include="Resources\binka\binkawin.asi" />
|
||||
|
||||
255
PCK-Studio/Properties/Resources.Designer.cs
generated
255
PCK-Studio/Properties/Resources.Designer.cs
generated
@@ -150,6 +150,38 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "Tile data research by MattNL",
|
||||
/// "COMMENT_2": "JSON by PhoenixARC, MattNL, and NessieHax (Miku-666)",
|
||||
/// "blocks": [
|
||||
/// {
|
||||
/// "internalName": "grass_top",
|
||||
/// "displayName": "Grass Block (Top)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "Grass_Common",
|
||||
/// "variants": [
|
||||
/// "Grass_Common",
|
||||
/// "Grass_Mesa",
|
||||
/// "Grass_Swamp1",
|
||||
/// "Grass_Swamp2"
|
||||
/// ]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "stone",
|
||||
/// "displayName": "Stone"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string blockData {
|
||||
get {
|
||||
return ResourceManager.GetString("blockData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -304,6 +336,36 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "JSON by MattNL",
|
||||
/// "experience_orbs": [
|
||||
/// {
|
||||
/// "internalName": "experience_orb_0",
|
||||
/// "displayName": "Experience Orb (Size 1)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "experience_orb",
|
||||
/// "variants": ["experience_orb"]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "experience_orb_1",
|
||||
/// "displayName": "Experience Orb (Size 2)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "experience_orb",
|
||||
/// "variants": ["experience_orb"]
|
||||
/// }
|
||||
/// },
|
||||
/// [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string experienceOrbData {
|
||||
get {
|
||||
return ResourceManager.GetString("experienceOrbData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -314,6 +376,37 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "JSON by MattNL",
|
||||
/// "explosion": [
|
||||
/// {
|
||||
/// "internalName": "explosion_0",
|
||||
/// "displayName": "Explosion (Stage 1)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "Particle_Explode",
|
||||
/// "variants": [
|
||||
/// "Particle_Explode",
|
||||
/// "Particle_HugeExplosion"
|
||||
/// ]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "explosion_1",
|
||||
/// "displayName": "Explosion (Stage 2)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "Particle_Explode",
|
||||
/// "variants": [
|
||||
/// [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string explosionData {
|
||||
get {
|
||||
return ResourceManager.GetString("explosionData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -414,6 +507,34 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "Tile data research by MattNL",
|
||||
/// "COMMENT_2": "JSON by PhoenixARC, MattNL, and NessieHax (Miku-666)",
|
||||
/// "items": [
|
||||
/// {
|
||||
/// "internalName": "helmetCloth",
|
||||
/// "displayName": "Leather Cap",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "hasCustomColour": true,
|
||||
/// "defaultName": "Armour_Default_Leather_Colour",
|
||||
/// "variants": [ "Armour_Default_Leather_Colour" ]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "helmetChain",
|
||||
/// "displayName": "Chain Helmet"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "he [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string itemData {
|
||||
get {
|
||||
return ResourceManager.GetString("itemData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -444,6 +565,43 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "JSON by MattNL",
|
||||
/// "map_icons": [
|
||||
/// {
|
||||
/// "internalName": "player_1",
|
||||
/// "displayName": "Player 1"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "player_2",
|
||||
/// "displayName": "Player 2"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "player_3",
|
||||
/// "displayName": "Player 3"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "player_4",
|
||||
/// "displayName": "Player 4"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "target_x",
|
||||
/// "displayName": "Unused"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "target_point",
|
||||
/// "displayName": "Target Point (Unused)"
|
||||
/// },
|
||||
/// {
|
||||
/// [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string mapIconData {
|
||||
get {
|
||||
return ResourceManager.GetString("mapIconData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -464,6 +622,40 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "JSON by MattNL",
|
||||
/// "moon_phases": [
|
||||
/// {
|
||||
/// "internalName": "moon_phase_0",
|
||||
/// "displayName": "Full Moon"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "moon_phase_1",
|
||||
/// "displayName": "Waning Gibbous"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "moon_phase_2",
|
||||
/// "displayName": "Last Quarter"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "moon_phase_3",
|
||||
/// "displayName": "Waning Crescent"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "moon_phase_4",
|
||||
/// "displayName": "New Moon"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "moon_phase_5",
|
||||
/// "displayNa [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string moonPhaseData {
|
||||
get {
|
||||
return ResourceManager.GetString("moonPhaseData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Byte[].
|
||||
/// </summary>
|
||||
@@ -504,6 +696,37 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "JSON by MattNL",
|
||||
/// "particles": [
|
||||
/// {
|
||||
/// "internalName": "generic_0",
|
||||
/// "displayName": "Generic (Stage 1)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "None",
|
||||
/// "variants": [
|
||||
/// "None",
|
||||
/// "Particle_Smoke",
|
||||
/// "Particle_NetherPortal",
|
||||
/// "Particle_EnderPortal",
|
||||
/// "Particle_Ender",
|
||||
/// "Particle_DragonBreathMin",
|
||||
/// "Particle_DragonBreathMax"
|
||||
/// ]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "generic_1",
|
||||
/// "displayName": "Generic (Stage 2)", [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string particleData {
|
||||
get {
|
||||
return ResourceManager.GetString("particleData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
@@ -674,38 +897,6 @@ namespace PckStudio.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "COMMENT_1": "Tile data research by MattNL",
|
||||
/// "COMMENT_2": "JSON by PhoenixARC, MattNL, and NessieHax (Miku-666)",
|
||||
/// "blocks": [
|
||||
/// {
|
||||
/// "internalName": "grass_top",
|
||||
/// "displayName": "Grass Block (Top)",
|
||||
/// "hasColourEntry": true,
|
||||
/// "colourEntry": {
|
||||
/// "defaultName": "Grass_Common",
|
||||
/// "variants": [
|
||||
/// "Grass_Common",
|
||||
/// "Grass_Mesa",
|
||||
/// "Grass_Swamp1",
|
||||
/// "Grass_Swamp2"
|
||||
/// ]
|
||||
/// }
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": "stone",
|
||||
/// "displayName": "Stone"
|
||||
/// },
|
||||
/// {
|
||||
/// "internalName": [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
public static string tileData {
|
||||
get {
|
||||
return ResourceManager.GetString("tileData", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Byte[].
|
||||
/// </summary>
|
||||
|
||||
@@ -172,9 +172,6 @@
|
||||
<data name="GRH_ICON" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\iconImageList\GRH ICON.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="tileData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\tileData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="pckClosed" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\pckClosed.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
@@ -340,9 +337,30 @@
|
||||
<data name="experience_orbs_sheet" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\experience_orbs.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="blockData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\blockData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="experienceOrbData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\experienceOrbData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="explosionData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\explosionData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="explosion_sheet" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\explosion.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="itemData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\itemData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="mapIconData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\mapIconData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="moonPhaseData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\moonPhaseData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="particleData" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\particleData.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
|
||||
</data>
|
||||
<data name="particles_sheet" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\atlases\particles.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
||||
2922
PCK-Studio/Resources/atlases/blockData.json
Normal file
2922
PCK-Studio/Resources/atlases/blockData.json
Normal file
File diff suppressed because it is too large
Load Diff
124
PCK-Studio/Resources/atlases/experienceOrbData.json
Normal file
124
PCK-Studio/Resources/atlases/experienceOrbData.json
Normal file
@@ -0,0 +1,124 @@
|
||||
{
|
||||
"COMMENT_1": "JSON by MattNL",
|
||||
"experience_orbs": [
|
||||
{
|
||||
"internalName": "experience_orb_0",
|
||||
"displayName": "Experience Orb (Size 1)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_1",
|
||||
"displayName": "Experience Orb (Size 2)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_2",
|
||||
"displayName": "Experience Orb (Size 3)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_3",
|
||||
"displayName": "Experience Orb (Size 4)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_4",
|
||||
"displayName": "Experience Orb (Size 5)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_5",
|
||||
"displayName": "Experience Orb (Size 6)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_6",
|
||||
"displayName": "Experience Orb (Size 7)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_7",
|
||||
"displayName": "Experience Orb (Size 8)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_8",
|
||||
"displayName": "Experience Orb (Size 9)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_9",
|
||||
"displayName": "Experience Orb (Size 10)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "experience_orb_10",
|
||||
"displayName": "Experience Orb (Size 11)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "experience_orb",
|
||||
"variants": ["experience_orb"]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
197
PCK-Studio/Resources/atlases/explosionData.json
Normal file
197
PCK-Studio/Resources/atlases/explosionData.json
Normal file
@@ -0,0 +1,197 @@
|
||||
{
|
||||
"COMMENT_1": "JSON by MattNL",
|
||||
"explosion": [
|
||||
{
|
||||
"internalName": "explosion_0",
|
||||
"displayName": "Explosion (Stage 1)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_1",
|
||||
"displayName": "Explosion (Stage 2)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_2",
|
||||
"displayName": "Explosion (Stage 3)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_3",
|
||||
"displayName": "Explosion (Stage 4)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_4",
|
||||
"displayName": "Explosion (Stage 5)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_5",
|
||||
"displayName": "Explosion (Stage 6)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_6",
|
||||
"displayName": "Explosion (Stage 7)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_7",
|
||||
"displayName": "Explosion (Stage 8)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_8",
|
||||
"displayName": "Explosion (Stage 9)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_9",
|
||||
"displayName": "Explosion (Stage 10)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_10",
|
||||
"displayName": "Explosion (Stage 11)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_11",
|
||||
"displayName": "Explosion (Stage 12)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_12",
|
||||
"displayName": "Explosion (Stage 13)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_13",
|
||||
"displayName": "Explosion (Stage 14)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_14",
|
||||
"displayName": "Explosion (Stage 15)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"internalName": "explosion_15",
|
||||
"displayName": "Explosion (Stage 16)",
|
||||
"hasColourEntry": true,
|
||||
"colourEntry": {
|
||||
"defaultName": "Particle_Explode",
|
||||
"variants": [
|
||||
"Particle_Explode",
|
||||
"Particle_HugeExplosion"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
1366
PCK-Studio/Resources/atlases/itemData.json
Normal file
1366
PCK-Studio/Resources/atlases/itemData.json
Normal file
File diff suppressed because it is too large
Load Diff
135
PCK-Studio/Resources/atlases/mapIconData.json
Normal file
135
PCK-Studio/Resources/atlases/mapIconData.json
Normal file
@@ -0,0 +1,135 @@
|
||||
{
|
||||
"COMMENT_1": "JSON by MattNL",
|
||||
"map_icons": [
|
||||
{
|
||||
"internalName": "player_1",
|
||||
"displayName": "Player 1"
|
||||
},
|
||||
{
|
||||
"internalName": "player_2",
|
||||
"displayName": "Player 2"
|
||||
},
|
||||
{
|
||||
"internalName": "player_3",
|
||||
"displayName": "Player 3"
|
||||
},
|
||||
{
|
||||
"internalName": "player_4",
|
||||
"displayName": "Player 4"
|
||||
},
|
||||
{
|
||||
"internalName": "target_x",
|
||||
"displayName": "Unused"
|
||||
},
|
||||
{
|
||||
"internalName": "target_point",
|
||||
"displayName": "Target Point (Unused)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_off_map",
|
||||
"displayName": "Player (Off Map) (Unused)"
|
||||
},
|
||||
{
|
||||
"internalName": "frame",
|
||||
"displayName": "Item Frame"
|
||||
},
|
||||
{
|
||||
"internalName": "player_5",
|
||||
"displayName": "Player 5"
|
||||
},
|
||||
{
|
||||
"internalName": "player_6",
|
||||
"displayName": "Player 6"
|
||||
},
|
||||
{
|
||||
"internalName": "player_7",
|
||||
"displayName": "Player 7"
|
||||
},
|
||||
{
|
||||
"internalName": "player_8",
|
||||
"displayName": "Player 8"
|
||||
},
|
||||
{
|
||||
"internalName": "structure",
|
||||
"displayName": "Structure (Explorer Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_off_limits",
|
||||
"displayName": "Player (Off Limits) (Unused)"
|
||||
},
|
||||
{
|
||||
"internalName": "mansion",
|
||||
"displayName": "Woodland Mansion (Explorer Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "monument",
|
||||
"displayName": "Ocean Monument (Explorer Map)"
|
||||
}
|
||||
],
|
||||
"additional_map_icons": [
|
||||
{
|
||||
"internalName": "player_1_off_map",
|
||||
"displayName": "Player 1 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_2_off_map",
|
||||
"displayName": "Player 2 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_3_off_map",
|
||||
"displayName": "Player 3 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_4_off_map",
|
||||
"displayName": "Player 4 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "treasure",
|
||||
"displayName": "Buried Treasure"
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "player_5_off_map",
|
||||
"displayName": "Player 5 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_6_off_map",
|
||||
"displayName": "Player 6 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_7_off_map",
|
||||
"displayName": "Player 7 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "player_8_off_map",
|
||||
"displayName": "Player 8 (Off Map)"
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
},
|
||||
{
|
||||
"internalName": "",
|
||||
"displayName": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
37
PCK-Studio/Resources/atlases/moonPhaseData.json
Normal file
37
PCK-Studio/Resources/atlases/moonPhaseData.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"COMMENT_1": "JSON by MattNL",
|
||||
"moon_phases": [
|
||||
{
|
||||
"internalName": "moon_phase_0",
|
||||
"displayName": "Full Moon"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_1",
|
||||
"displayName": "Waning Gibbous"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_2",
|
||||
"displayName": "Last Quarter"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_3",
|
||||
"displayName": "Waning Crescent"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_4",
|
||||
"displayName": "New Moon"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_5",
|
||||
"displayName": "Waxing Crescent"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_6",
|
||||
"displayName": "First Quarter"
|
||||
},
|
||||
{
|
||||
"internalName": "moon_phase_7",
|
||||
"displayName": "Waxing Gibbous"
|
||||
}
|
||||
]
|
||||
}
|
||||
2112
PCK-Studio/Resources/atlases/particleData.json
Normal file
2112
PCK-Studio/Resources/atlases/particleData.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user