2026-01-06 05:22:10 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace StrategicMapPlus
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Textures
|
|
|
|
|
|
{
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
// --- ZONA DE CONFIGURACIÓN ---
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
2026-01-06 15:29:51 +01:00
|
|
|
|
public static Dictionary<string, string> TextureMap = new Dictionary<string, string>()
|
2026-01-06 05:22:10 +01:00
|
|
|
|
{
|
2026-01-06 15:29:51 +01:00
|
|
|
|
// --- CONSOLIDAR PODER (Fuerza suele ser 0) ---
|
|
|
|
|
|
{"ConsolidatePower_0", "T_tkn_Order_ConsolidatePower" },
|
|
|
|
|
|
{"ConsolidatePower_0_Star", "T_tkn_Order_ConsolidatePowerStar" },
|
|
|
|
|
|
{"ConsolidatePower_122_Star", "T_tkn_Order_ConsolidatePowerStar" },
|
|
|
|
|
|
{"ConsolidatePower_121", "T_tkn_Order_ConsolidatePower"},
|
2026-01-06 05:22:10 +01:00
|
|
|
|
|
|
|
|
|
|
// March
|
|
|
|
|
|
{"March_130", "T_tkn_Order_MarchPlus0" },
|
|
|
|
|
|
{"March_129_Star", "T_tkn_Order_MarchPlus1" },
|
2026-01-06 15:29:51 +01:00
|
|
|
|
{"March_128", "T_tkn_Order_MarchMinus1" },
|
2026-01-06 05:22:10 +01:00
|
|
|
|
// Defense
|
|
|
|
|
|
{"Defense_124_Star", "T_tkn_Order_DefendPlus2" },
|
2026-01-06 06:07:12 +01:00
|
|
|
|
|
2026-01-06 15:29:51 +01:00
|
|
|
|
// Raid
|
|
|
|
|
|
{"Raid_131", "T_tkn_Order_Raid" },
|
|
|
|
|
|
{"Raid_132_Star", "T_tkn_Order_RaidStar" },
|
2026-01-06 06:07:12 +01:00
|
|
|
|
|
2026-01-06 15:29:51 +01:00
|
|
|
|
// Defense
|
|
|
|
|
|
{"Defense_123", "T_tkn_Order_DefendPlus1" },
|
2026-01-06 06:07:12 +01:00
|
|
|
|
|
2026-01-06 15:29:51 +01:00
|
|
|
|
// Support
|
|
|
|
|
|
{"Support_135", "T_tkn_Order_Support" },
|
|
|
|
|
|
{"Support_136_Star", "T_tkn_Order_SupportPlus1" }
|
2026-01-06 05:22:10 +01:00
|
|
|
|
};
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
2026-01-06 16:15:35 +01:00
|
|
|
|
static public Dictionary<string, IconOffset> IconsOffsets = new Dictionary<string, IconOffset>() {};
|
2026-01-06 15:29:51 +01:00
|
|
|
|
|
|
|
|
|
|
public class IconOffset
|
|
|
|
|
|
{
|
|
|
|
|
|
public float x; public float y;
|
|
|
|
|
|
public float size;
|
|
|
|
|
|
|
|
|
|
|
|
public IconOffset(float x, float y, float size)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.x = x;
|
|
|
|
|
|
this.y = y;
|
|
|
|
|
|
this.size = size;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-06 05:22:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|