diff --git a/src/main/java/com/bernard/greposimu/GrepoSimu.java b/src/main/java/com/bernard/greposimu/GrepoSimu.java index 6a23894..ee6b5ed 100644 --- a/src/main/java/com/bernard/greposimu/GrepoSimu.java +++ b/src/main/java/com/bernard/greposimu/GrepoSimu.java @@ -5,8 +5,10 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; +import java.util.HashMap; import java.util.Iterator; import java.util.Map; +import java.util.Set; import java.util.stream.Collectors; import com.bernard.greposimu.engine.Registerar; @@ -16,6 +18,7 @@ import com.bernard.greposimu.model.Dieu; import com.bernard.greposimu.model.Heros; import com.bernard.greposimu.model.OffDefStats; import com.bernard.greposimu.model.game.GameData; +import com.bernard.greposimu.model.game.Power; import com.fasterxml.jackson.core.JsonFactory; import com.fasterxml.jackson.core.StreamReadFeature; import com.fasterxml.jackson.databind.ObjectMapper; @@ -42,6 +45,22 @@ public class GrepoSimu { ObjectMapper mapper = new ObjectMapper(jsonFactory); mapper.registerModule(module); GameData data = mapper.readValue(json, GameData.class); + + // Adapting power map + Map pmap = new HashMap<>(); + for(String id : data.powers.keySet()) { + Set types = data.powers.get(id).getTypes(); + if(types.isEmpty()) { + pmap.put(id, new Power(data.powers.get(id))); + } else { + for(String type : types) { + pmap.put(id+"."+type, new Power(data.powers.get(id), type)); + } + } + + } + data.powers = pmap; + System.out.println(data.powers.get("effort_of_the_huntress")); return data; } } diff --git a/src/main/java/com/bernard/greposimu/engine/game/Fight.java b/src/main/java/com/bernard/greposimu/engine/game/Fight.java index a016d0a..eab8d17 100644 --- a/src/main/java/com/bernard/greposimu/engine/game/Fight.java +++ b/src/main/java/com/bernard/greposimu/engine/game/Fight.java @@ -88,8 +88,13 @@ public class Fight { } public static List relevantDefPowers(GameData gd) { - return List.of("acumen","divine_senses","myrmidion_attack","trojan_defense","defense_boost","defense_penalty","longterm_defense_boost","assassins_acumen","rare_defense_boost","epic_defense_boost","olympic_torch","olympic_senses","missions_power_4","divine_battle_strategy_rare","divine_battle_strategy_epic","naval_battle_strategy_rare","naval_battle_strategy_epic","land_battle_strategy_rare","land_battle_strategy_epic","soterias_shrine") - .stream().map(gd.powers::get).toList(); + System.out.println(gd.powers); + return List.of("acumen", "divine_senses", "myrmidion_attack", "trojan_defense", "defense_boost", + "defense_penalty", "longterm_defense_boost", "assassins_acumen", "rare_defense_boost", + "epic_defense_boost", "olympic_torch.grepolympia_summer", "olympic_senses.grepolympia_summer", "missions_power_4.missions_dionysia", + "divine_battle_strategy_rare", "divine_battle_strategy_epic", "naval_battle_strategy_rare", + "naval_battle_strategy_epic", "land_battle_strategy_rare", "land_battle_strategy_epic", + "soterias_shrine.not_cast").stream().map(gd.powers::get).map(p -> (Power)p).toList(); } public static List relevantDefResearch(GameData gd) { return List.of("divine_selection","phalanx","ram") diff --git a/src/main/java/com/bernard/greposimu/model/game/GameData.java b/src/main/java/com/bernard/greposimu/model/game/GameData.java index a51693e..71d5d30 100644 --- a/src/main/java/com/bernard/greposimu/model/game/GameData.java +++ b/src/main/java/com/bernard/greposimu/model/game/GameData.java @@ -14,7 +14,7 @@ public class GameData { public Map units; - public Map powers; + public Map powers; public Map gods; diff --git a/src/main/java/com/bernard/greposimu/model/game/JsonPower.java b/src/main/java/com/bernard/greposimu/model/game/JsonPower.java new file mode 100644 index 0000000..223e003 --- /dev/null +++ b/src/main/java/com/bernard/greposimu/model/game/JsonPower.java @@ -0,0 +1,115 @@ +package com.bernard.greposimu.model.game; + +import java.math.BigInteger; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public class JsonPower { + public Object effect; + public Object name; + public Object description; + public int lifetime; + public String id; + public String short_effect; + public int favor; + public int fury_percentage_cost; + public String god_id; + public BigInteger temple_level_sum_dependency; + public List targets; + public boolean only_own_towns; + public boolean boost; + public boolean is_fake_power; + public List area_of_effect; + public boolean destructive; + public boolean negative; + public boolean extendible; + public String power_group; + public int power_group_level; + public List seeds_to; + public Image images; + public List effects; + public boolean is_valid_for_happenings; + public List meta_fields; + public Object meta_defaults; + public boolean removed_on_target_loss; + public boolean needs_level; + public boolean requires_god; + public boolean ignores_democritus; + public boolean display_amount; + public boolean wasteable; + public boolean is_ritual; + public boolean recreate_on_restart; + public boolean transfer_to_casual_world; + public boolean is_onetime_power; + public boolean is_upgradable; + public boolean is_capped; + public List compatible_powers; + public boolean no_lifetime; + public boolean passive; + + @SuppressWarnings("unchecked") + public Set getTypes() { + Set types = new HashSet<>(); + if(name instanceof Map) { + if(((Map>)name).containsKey("type")) + types.addAll(((Map>)name).get("type").keySet()); + else + name = ((Map>)name).get("god").get("athena"); + } + if(description instanceof Map) + types.addAll(((Map>)description).get("type").keySet()); + if(effect instanceof Map) + types.addAll(((Map>)effect).get("type").keySet()); + return types; + } + + @Override + public String toString() { + return "JsonPower [effect=" + effect + ", lifetime=" + lifetime + ", id=" + id + ", name=" + name + + ", description=" + description + ", short_effect=" + short_effect + ", favor=" + favor + + ", fury_percentage_cost=" + fury_percentage_cost + ", god_id=" + god_id + + ", temple_level_sum_dependency=" + temple_level_sum_dependency + ", targets=" + targets + + ", only_own_towns=" + only_own_towns + ", boost=" + boost + ", is_fake_power=" + is_fake_power + + ", area_of_effect=" + area_of_effect + ", destructive=" + destructive + ", negative=" + negative + + ", extendible=" + extendible + ", power_group=" + power_group + ", power_group_level=" + + power_group_level + ", seeds_to=" + seeds_to + ", images=" + images + ", effects=" + effects + + ", is_valid_for_happenings=" + is_valid_for_happenings + ", meta_fields=" + meta_fields + + ", meta_defaults=" + meta_defaults + ", removed_on_target_loss=" + removed_on_target_loss + + ", needs_level=" + needs_level + ", requires_god=" + requires_god + ", ignores_democritus=" + + ignores_democritus + ", display_amount=" + display_amount + ", wasteable=" + wasteable + + ", is_ritual=" + is_ritual + ", recreate_on_restart=" + recreate_on_restart + + ", transfer_to_casual_world=" + transfer_to_casual_world + ", is_onetime_power=" + is_onetime_power + + ", is_upgradable=" + is_upgradable + ", is_capped=" + is_capped + ", compatible_powers=" + + compatible_powers + ", no_lifetime=" + no_lifetime + ", passive=" + passive + "]"; + } + + public Object getEffect() { + return effect; + } + + public void setEffect(Object effect) { + this.effect = effect; + } + + public Object getName() { + return name; + } + + public void setName(Object name) { + this.name = name; + } + + public Object getDescription() { + return description; + } + + public void setDescription(Object description) { + this.description = description; + } + + + + +} diff --git a/src/main/java/com/bernard/greposimu/model/game/Power.java b/src/main/java/com/bernard/greposimu/model/game/Power.java index e6883c9..690acd4 100644 --- a/src/main/java/com/bernard/greposimu/model/game/Power.java +++ b/src/main/java/com/bernard/greposimu/model/game/Power.java @@ -1,48 +1,126 @@ package com.bernard.greposimu.model.game; -import java.math.BigInteger; -import java.util.List; +import java.util.Map; -public class Power { - public Object effect; - public int lifetime; - public String id; - public Object name; - public Object description; - public String short_effect; - public int favor; - public int fury_percentage_cost; - public String god_id; - public BigInteger temple_level_sum_dependency; - public List targets; - public boolean only_own_towns; - public boolean boost; - public boolean is_fake_power; - public List area_of_effect; - public boolean destructive; - public boolean negative; - public boolean extendible; - public String power_group; - public int power_group_level; - public List seeds_to; - public Image images; - public List effects; - public boolean is_valid_for_happenings; - public List meta_fields; - public Object meta_defaults; - public boolean removed_on_target_loss; - public boolean needs_level; - public boolean requires_god; - public boolean ignores_democritus; - public boolean display_amount; - public boolean wasteable; - public boolean is_ritual; - public boolean recreate_on_restart; - public boolean transfer_to_casual_world; - public boolean is_onetime_power; - public boolean is_upgradable; - public boolean is_capped; - public List compatible_powers; - public boolean no_lifetime; - public boolean passive; +public class Power extends JsonPower { + public String effect; + public String name; + public String description; + + @SuppressWarnings("unchecked") + public Power(JsonPower power, String type) { + this.effect = (power.effect instanceof String)?(String)power.effect:((Map>)power.effect).get("type").get(type); + this.lifetime = power.lifetime; + this.id = power.id+"."+type; + this.name = (power.name instanceof String)?(String)power.name:((Map>)power.name).get("type").get(type); + this.description = (power.description instanceof String)?(String)power.description:((Map>)power.description).get("type").get(type); + this.short_effect = power.short_effect; + this.favor = power.favor; + this.fury_percentage_cost = power.fury_percentage_cost; + this.god_id = power.god_id; + this.temple_level_sum_dependency = power.temple_level_sum_dependency; + this.targets = power.targets; + this.only_own_towns = power.only_own_towns; + this.boost = power.boost; + this.is_fake_power = power.is_fake_power; + this.area_of_effect = power.area_of_effect; + this.destructive = power.destructive; + this.negative = power.negative; + this.extendible = power.extendible; + this.power_group = power.power_group; + this.power_group_level = power.power_group_level; + this.seeds_to = power.seeds_to; + this.images = power.images; + this.effects = power.effects; + this.is_valid_for_happenings = power.is_valid_for_happenings; + this.meta_fields = power.meta_fields; + this.meta_defaults = power.meta_defaults; + this.removed_on_target_loss = power.removed_on_target_loss; + this.needs_level = power.needs_level; + this.requires_god = power.requires_god; + this.ignores_democritus = power.ignores_democritus; + this.display_amount = power.display_amount; + this.wasteable = power.wasteable; + this.is_ritual = power.is_ritual; + this.recreate_on_restart = power.recreate_on_restart; + this.transfer_to_casual_world = power.transfer_to_casual_world; + this.is_onetime_power = power.is_onetime_power; + this.is_upgradable = power.is_upgradable; + this.is_capped = power.is_capped; + this.compatible_powers = power.compatible_powers; + this.no_lifetime = power.no_lifetime; + this.passive = power.passive; + } + public Power(JsonPower power) { + this.effect = (String) power.effect; + this.lifetime = power.lifetime; + this.id = power.id; + this.name = (String) power.name; + this.description = (String) power.description; + this.short_effect = power.short_effect; + this.favor = power.favor; + this.fury_percentage_cost = power.fury_percentage_cost; + this.god_id = power.god_id; + this.temple_level_sum_dependency = power.temple_level_sum_dependency; + this.targets = power.targets; + this.only_own_towns = power.only_own_towns; + this.boost = power.boost; + this.is_fake_power = power.is_fake_power; + this.area_of_effect = power.area_of_effect; + this.destructive = power.destructive; + this.negative = power.negative; + this.extendible = power.extendible; + this.power_group = power.power_group; + this.power_group_level = power.power_group_level; + this.seeds_to = power.seeds_to; + this.images = power.images; + this.effects = power.effects; + this.is_valid_for_happenings = power.is_valid_for_happenings; + this.meta_fields = power.meta_fields; + this.meta_defaults = power.meta_defaults; + this.removed_on_target_loss = power.removed_on_target_loss; + this.needs_level = power.needs_level; + this.requires_god = power.requires_god; + this.ignores_democritus = power.ignores_democritus; + this.display_amount = power.display_amount; + this.wasteable = power.wasteable; + this.is_ritual = power.is_ritual; + this.recreate_on_restart = power.recreate_on_restart; + this.transfer_to_casual_world = power.transfer_to_casual_world; + this.is_onetime_power = power.is_onetime_power; + this.is_upgradable = power.is_upgradable; + this.is_capped = power.is_capped; + this.compatible_powers = power.compatible_powers; + this.no_lifetime = power.no_lifetime; + this.passive = power.passive; + } + + + public String getEffect() { + return effect; + } + + public void setEffect(String effect) { + this.effect = effect; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + + + } diff --git a/src/main/resources/static/images/counsellors/administrator.png b/src/main/resources/static/images/counsellors/administrator.png new file mode 100644 index 0000000..3839d84 Binary files /dev/null and b/src/main/resources/static/images/counsellors/administrator.png differ diff --git a/src/main/resources/static/images/counsellors/captain.png b/src/main/resources/static/images/counsellors/captain.png new file mode 100644 index 0000000..40a9857 Binary files /dev/null and b/src/main/resources/static/images/counsellors/captain.png differ diff --git a/src/main/resources/static/images/counsellors/commander.png b/src/main/resources/static/images/counsellors/commander.png new file mode 100644 index 0000000..705930d Binary files /dev/null and b/src/main/resources/static/images/counsellors/commander.png differ diff --git a/src/main/resources/static/images/counsellors/priest.png b/src/main/resources/static/images/counsellors/priest.png new file mode 100644 index 0000000..81bfcb5 Binary files /dev/null and b/src/main/resources/static/images/counsellors/priest.png differ diff --git a/src/main/resources/static/images/counsellors/trader.png b/src/main/resources/static/images/counsellors/trader.png new file mode 100644 index 0000000..fee4c9f Binary files /dev/null and b/src/main/resources/static/images/counsellors/trader.png differ diff --git a/src/main/resources/static/images/powers/a_new_hope.disabled.png b/src/main/resources/static/images/powers/a_new_hope.disabled.png new file mode 100644 index 0000000..961d36f Binary files /dev/null and b/src/main/resources/static/images/powers/a_new_hope.disabled.png differ diff --git a/src/main/resources/static/images/powers/a_new_hope.hover.png b/src/main/resources/static/images/powers/a_new_hope.hover.png new file mode 100644 index 0000000..238553b Binary files /dev/null and b/src/main/resources/static/images/powers/a_new_hope.hover.png differ diff --git a/src/main/resources/static/images/powers/a_new_hope.png b/src/main/resources/static/images/powers/a_new_hope.png new file mode 100644 index 0000000..00342fd Binary files /dev/null and b/src/main/resources/static/images/powers/a_new_hope.png differ diff --git a/src/main/resources/static/images/powers/acumen.disabled.png b/src/main/resources/static/images/powers/acumen.disabled.png new file mode 100644 index 0000000..0b8982a Binary files /dev/null and b/src/main/resources/static/images/powers/acumen.disabled.png differ diff --git a/src/main/resources/static/images/powers/acumen.hover.png b/src/main/resources/static/images/powers/acumen.hover.png new file mode 100644 index 0000000..447a010 Binary files /dev/null and b/src/main/resources/static/images/powers/acumen.hover.png differ diff --git a/src/main/resources/static/images/powers/acumen.png b/src/main/resources/static/images/powers/acumen.png new file mode 100644 index 0000000..32123df Binary files /dev/null and b/src/main/resources/static/images/powers/acumen.png differ diff --git a/src/main/resources/static/images/powers/archer_generation.disabled.png b/src/main/resources/static/images/powers/archer_generation.disabled.png new file mode 100644 index 0000000..89f5037 Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/archer_generation.hover.png b/src/main/resources/static/images/powers/archer_generation.hover.png new file mode 100644 index 0000000..143c572 Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/archer_generation.png b/src/main/resources/static/images/powers/archer_generation.png new file mode 100644 index 0000000..1fd2e6f Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation.png differ diff --git a/src/main/resources/static/images/powers/archer_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/archer_generation_non_scaling.disabled.png new file mode 100644 index 0000000..78ce433 Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/archer_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/archer_generation_non_scaling.hover.png new file mode 100644 index 0000000..d458175 Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/archer_generation_non_scaling.png b/src/main/resources/static/images/powers/archer_generation_non_scaling.png new file mode 100644 index 0000000..477798d Binary files /dev/null and b/src/main/resources/static/images/powers/archer_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/archer_instant.disabled.png b/src/main/resources/static/images/powers/archer_instant.disabled.png new file mode 100644 index 0000000..0adcecd Binary files /dev/null and b/src/main/resources/static/images/powers/archer_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/archer_instant.hover.png b/src/main/resources/static/images/powers/archer_instant.hover.png new file mode 100644 index 0000000..9113d79 Binary files /dev/null and b/src/main/resources/static/images/powers/archer_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/archer_instant.png b/src/main/resources/static/images/powers/archer_instant.png new file mode 100644 index 0000000..8dca1ed Binary files /dev/null and b/src/main/resources/static/images/powers/archer_instant.png differ diff --git a/src/main/resources/static/images/powers/ares_army.disabled.png b/src/main/resources/static/images/powers/ares_army.disabled.png new file mode 100644 index 0000000..ac90025 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_army.disabled.png differ diff --git a/src/main/resources/static/images/powers/ares_army.hover.png b/src/main/resources/static/images/powers/ares_army.hover.png new file mode 100644 index 0000000..d4ddb78 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_army.hover.png differ diff --git a/src/main/resources/static/images/powers/ares_army.png b/src/main/resources/static/images/powers/ares_army.png new file mode 100644 index 0000000..b9f30c9 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_army.png differ diff --git a/src/main/resources/static/images/powers/ares_rage.disabled.png b/src/main/resources/static/images/powers/ares_rage.disabled.png new file mode 100644 index 0000000..5527b4b Binary files /dev/null and b/src/main/resources/static/images/powers/ares_rage.disabled.png differ diff --git a/src/main/resources/static/images/powers/ares_rage.hover.png b/src/main/resources/static/images/powers/ares_rage.hover.png new file mode 100644 index 0000000..9116858 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_rage.hover.png differ diff --git a/src/main/resources/static/images/powers/ares_rage.png b/src/main/resources/static/images/powers/ares_rage.png new file mode 100644 index 0000000..d00c314 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_rage.png differ diff --git a/src/main/resources/static/images/powers/ares_sacrifice.disabled.png b/src/main/resources/static/images/powers/ares_sacrifice.disabled.png new file mode 100644 index 0000000..b326ae9 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_sacrifice.disabled.png differ diff --git a/src/main/resources/static/images/powers/ares_sacrifice.hover.png b/src/main/resources/static/images/powers/ares_sacrifice.hover.png new file mode 100644 index 0000000..4febf51 Binary files /dev/null and b/src/main/resources/static/images/powers/ares_sacrifice.hover.png differ diff --git a/src/main/resources/static/images/powers/ares_sacrifice.png b/src/main/resources/static/images/powers/ares_sacrifice.png new file mode 100644 index 0000000..544224b Binary files /dev/null and b/src/main/resources/static/images/powers/ares_sacrifice.png differ diff --git a/src/main/resources/static/images/powers/assassins_acumen.disabled.png b/src/main/resources/static/images/powers/assassins_acumen.disabled.png new file mode 100644 index 0000000..10ab199 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_acumen.disabled.png differ diff --git a/src/main/resources/static/images/powers/assassins_acumen.hover.png b/src/main/resources/static/images/powers/assassins_acumen.hover.png new file mode 100644 index 0000000..54d3acb Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_acumen.hover.png differ diff --git a/src/main/resources/static/images/powers/assassins_acumen.png b/src/main/resources/static/images/powers/assassins_acumen.png new file mode 100644 index 0000000..9ee60d8 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_acumen.png differ diff --git a/src/main/resources/static/images/powers/assassins_building_order_boost.disabled.png b/src/main/resources/static/images/powers/assassins_building_order_boost.disabled.png new file mode 100644 index 0000000..54277d2 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_building_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/assassins_building_order_boost.hover.png b/src/main/resources/static/images/powers/assassins_building_order_boost.hover.png new file mode 100644 index 0000000..5ba4989 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_building_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/assassins_building_order_boost.png b/src/main/resources/static/images/powers/assassins_building_order_boost.png new file mode 100644 index 0000000..0965463 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_building_order_boost.png differ diff --git a/src/main/resources/static/images/powers/assassins_favor_boost.disabled.png b/src/main/resources/static/images/powers/assassins_favor_boost.disabled.png new file mode 100644 index 0000000..741eadb Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_favor_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/assassins_favor_boost.hover.png b/src/main/resources/static/images/powers/assassins_favor_boost.hover.png new file mode 100644 index 0000000..5d0764c Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_favor_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/assassins_favor_boost.png b/src/main/resources/static/images/powers/assassins_favor_boost.png new file mode 100644 index 0000000..249ddd1 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_favor_boost.png differ diff --git a/src/main/resources/static/images/powers/assassins_resource_boost.disabled.png b/src/main/resources/static/images/powers/assassins_resource_boost.disabled.png new file mode 100644 index 0000000..bda213e Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/assassins_resource_boost.hover.png b/src/main/resources/static/images/powers/assassins_resource_boost.hover.png new file mode 100644 index 0000000..44efbec Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/assassins_resource_boost.png b/src/main/resources/static/images/powers/assassins_resource_boost.png new file mode 100644 index 0000000..654241b Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_resource_boost.png differ diff --git a/src/main/resources/static/images/powers/assassins_unit_order_boost.disabled.png b/src/main/resources/static/images/powers/assassins_unit_order_boost.disabled.png new file mode 100644 index 0000000..40e4aae Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_unit_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/assassins_unit_order_boost.hover.png b/src/main/resources/static/images/powers/assassins_unit_order_boost.hover.png new file mode 100644 index 0000000..fea0faa Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_unit_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/assassins_unit_order_boost.png b/src/main/resources/static/images/powers/assassins_unit_order_boost.png new file mode 100644 index 0000000..4aca1b0 Binary files /dev/null and b/src/main/resources/static/images/powers/assassins_unit_order_boost.png differ diff --git a/src/main/resources/static/images/powers/attack_boost.disabled.png b/src/main/resources/static/images/powers/attack_boost.disabled.png new file mode 100644 index 0000000..efea16b Binary files /dev/null and b/src/main/resources/static/images/powers/attack_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_boost.hover.png b/src/main/resources/static/images/powers/attack_boost.hover.png new file mode 100644 index 0000000..504e0ca Binary files /dev/null and b/src/main/resources/static/images/powers/attack_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_boost.png b/src/main/resources/static/images/powers/attack_boost.png new file mode 100644 index 0000000..64a931c Binary files /dev/null and b/src/main/resources/static/images/powers/attack_boost.png differ diff --git a/src/main/resources/static/images/powers/attack_penalty.disabled.png b/src/main/resources/static/images/powers/attack_penalty.disabled.png new file mode 100644 index 0000000..b8c033b Binary files /dev/null and b/src/main/resources/static/images/powers/attack_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_penalty.hover.png b/src/main/resources/static/images/powers/attack_penalty.hover.png new file mode 100644 index 0000000..bb2b78c Binary files /dev/null and b/src/main/resources/static/images/powers/attack_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_penalty.png b/src/main/resources/static/images/powers/attack_penalty.png new file mode 100644 index 0000000..ed1c900 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_penalty.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_large.disabled.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.disabled.png new file mode 100644 index 0000000..5d99d2a Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_large.hover.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.hover.png new file mode 100644 index 0000000..19eee5e Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_large.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.png new file mode 100644 index 0000000..fec0b2a Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_large.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.disabled.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.disabled.png new file mode 100644 index 0000000..d821cbb Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.hover.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.hover.png new file mode 100644 index 0000000..0cf8143 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.png new file mode 100644 index 0000000..a885d32 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_medium.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_small.disabled.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.disabled.png new file mode 100644 index 0000000..c531c75 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_small.hover.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.hover.png new file mode 100644 index 0000000..a106d92 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_attack_boost_small.png b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.png new file mode 100644 index 0000000..c79bd98 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_attack_boost_small.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation.disabled.png b/src/main/resources/static/images/powers/attack_ship_generation.disabled.png new file mode 100644 index 0000000..573203d Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation.hover.png b/src/main/resources/static/images/powers/attack_ship_generation.hover.png new file mode 100644 index 0000000..ae81031 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation.png b/src/main/resources/static/images/powers/attack_ship_generation.png new file mode 100644 index 0000000..32ba6fc Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.disabled.png new file mode 100644 index 0000000..749df3f Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.hover.png new file mode 100644 index 0000000..f360225 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.png b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.png new file mode 100644 index 0000000..b4ab301 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_instant.disabled.png b/src/main/resources/static/images/powers/attack_ship_instant.disabled.png new file mode 100644 index 0000000..51f4d1d Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_instant.hover.png b/src/main/resources/static/images/powers/attack_ship_instant.hover.png new file mode 100644 index 0000000..4c254cf Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/attack_ship_instant.png b/src/main/resources/static/images/powers/attack_ship_instant.png new file mode 100644 index 0000000..0f21898 Binary files /dev/null and b/src/main/resources/static/images/powers/attack_ship_instant.png differ diff --git a/src/main/resources/static/images/powers/aura_of_healing.disabled.png b/src/main/resources/static/images/powers/aura_of_healing.disabled.png new file mode 100644 index 0000000..1879c47 Binary files /dev/null and b/src/main/resources/static/images/powers/aura_of_healing.disabled.png differ diff --git a/src/main/resources/static/images/powers/aura_of_healing.hover.png b/src/main/resources/static/images/powers/aura_of_healing.hover.png new file mode 100644 index 0000000..930fcfc Binary files /dev/null and b/src/main/resources/static/images/powers/aura_of_healing.hover.png differ diff --git a/src/main/resources/static/images/powers/aura_of_healing.png b/src/main/resources/static/images/powers/aura_of_healing.png new file mode 100644 index 0000000..6e32bfd Binary files /dev/null and b/src/main/resources/static/images/powers/aura_of_healing.png differ diff --git a/src/main/resources/static/images/powers/battle_tokens_generation.disabled.png b/src/main/resources/static/images/powers/battle_tokens_generation.disabled.png new file mode 100644 index 0000000..de16711 Binary files /dev/null and b/src/main/resources/static/images/powers/battle_tokens_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/battle_tokens_generation.hover.png b/src/main/resources/static/images/powers/battle_tokens_generation.hover.png new file mode 100644 index 0000000..6db4971 Binary files /dev/null and b/src/main/resources/static/images/powers/battle_tokens_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/battle_tokens_generation.png b/src/main/resources/static/images/powers/battle_tokens_generation.png new file mode 100644 index 0000000..7c03131 Binary files /dev/null and b/src/main/resources/static/images/powers/battle_tokens_generation.png differ diff --git a/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.disabled.png b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.disabled.png new file mode 100644 index 0000000..e680601 Binary files /dev/null and b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.disabled.png differ diff --git a/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.hover.png b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.hover.png new file mode 100644 index 0000000..2f24890 Binary files /dev/null and b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.hover.png differ diff --git a/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.png b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.png new file mode 100644 index 0000000..98af2e1 Binary files /dev/null and b/src/main/resources/static/images/powers/battleships.grid_event_advanced_scouts.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation.disabled.png b/src/main/resources/static/images/powers/big_transporter_generation.disabled.png new file mode 100644 index 0000000..695f908 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation.hover.png b/src/main/resources/static/images/powers/big_transporter_generation.hover.png new file mode 100644 index 0000000..3c537f1 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation.png b/src/main/resources/static/images/powers/big_transporter_generation.png new file mode 100644 index 0000000..2b60a11 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.disabled.png new file mode 100644 index 0000000..ac9bc03 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.hover.png new file mode 100644 index 0000000..82a82c1 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.png b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.png new file mode 100644 index 0000000..1dda20a Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_instant.disabled.png b/src/main/resources/static/images/powers/big_transporter_instant.disabled.png new file mode 100644 index 0000000..69a5cfa Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_instant.hover.png b/src/main/resources/static/images/powers/big_transporter_instant.hover.png new file mode 100644 index 0000000..46fec1a Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/big_transporter_instant.png b/src/main/resources/static/images/powers/big_transporter_instant.png new file mode 100644 index 0000000..87f1721 Binary files /dev/null and b/src/main/resources/static/images/powers/big_transporter_instant.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation.disabled.png b/src/main/resources/static/images/powers/bireme_generation.disabled.png new file mode 100644 index 0000000..8c67542 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation.hover.png b/src/main/resources/static/images/powers/bireme_generation.hover.png new file mode 100644 index 0000000..79de48d Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation.png b/src/main/resources/static/images/powers/bireme_generation.png new file mode 100644 index 0000000..8169c13 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/bireme_generation_non_scaling.disabled.png new file mode 100644 index 0000000..ad0e1ca Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/bireme_generation_non_scaling.hover.png new file mode 100644 index 0000000..4418e84 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/bireme_generation_non_scaling.png b/src/main/resources/static/images/powers/bireme_generation_non_scaling.png new file mode 100644 index 0000000..aa4ee58 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/bireme_instant.disabled.png b/src/main/resources/static/images/powers/bireme_instant.disabled.png new file mode 100644 index 0000000..0cd71b4 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/bireme_instant.hover.png b/src/main/resources/static/images/powers/bireme_instant.hover.png new file mode 100644 index 0000000..21efed8 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/bireme_instant.png b/src/main/resources/static/images/powers/bireme_instant.png new file mode 100644 index 0000000..8ca70f7 Binary files /dev/null and b/src/main/resources/static/images/powers/bireme_instant.png differ diff --git a/src/main/resources/static/images/powers/bloodlust.disabled.png b/src/main/resources/static/images/powers/bloodlust.disabled.png new file mode 100644 index 0000000..219f531 Binary files /dev/null and b/src/main/resources/static/images/powers/bloodlust.disabled.png differ diff --git a/src/main/resources/static/images/powers/bloodlust.hover.png b/src/main/resources/static/images/powers/bloodlust.hover.png new file mode 100644 index 0000000..04b9b6a Binary files /dev/null and b/src/main/resources/static/images/powers/bloodlust.hover.png differ diff --git a/src/main/resources/static/images/powers/bloodlust.png b/src/main/resources/static/images/powers/bloodlust.png new file mode 100644 index 0000000..2c22ba9 Binary files /dev/null and b/src/main/resources/static/images/powers/bloodlust.png differ diff --git a/src/main/resources/static/images/powers/bolt.disabled.png b/src/main/resources/static/images/powers/bolt.disabled.png new file mode 100644 index 0000000..1edffb2 Binary files /dev/null and b/src/main/resources/static/images/powers/bolt.disabled.png differ diff --git a/src/main/resources/static/images/powers/bolt.hover.png b/src/main/resources/static/images/powers/bolt.hover.png new file mode 100644 index 0000000..8791a7a Binary files /dev/null and b/src/main/resources/static/images/powers/bolt.hover.png differ diff --git a/src/main/resources/static/images/powers/bolt.png b/src/main/resources/static/images/powers/bolt.png new file mode 100644 index 0000000..f342cb9 Binary files /dev/null and b/src/main/resources/static/images/powers/bolt.png differ diff --git a/src/main/resources/static/images/powers/building_order_boost.disabled.png b/src/main/resources/static/images/powers/building_order_boost.disabled.png new file mode 100644 index 0000000..d545293 Binary files /dev/null and b/src/main/resources/static/images/powers/building_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/building_order_boost.hover.png b/src/main/resources/static/images/powers/building_order_boost.hover.png new file mode 100644 index 0000000..4708912 Binary files /dev/null and b/src/main/resources/static/images/powers/building_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/building_order_boost.png b/src/main/resources/static/images/powers/building_order_boost.png new file mode 100644 index 0000000..a650902 Binary files /dev/null and b/src/main/resources/static/images/powers/building_order_boost.png differ diff --git a/src/main/resources/static/images/powers/call_of_the_ocean.disabled.png b/src/main/resources/static/images/powers/call_of_the_ocean.disabled.png new file mode 100644 index 0000000..b707d26 Binary files /dev/null and b/src/main/resources/static/images/powers/call_of_the_ocean.disabled.png differ diff --git a/src/main/resources/static/images/powers/call_of_the_ocean.hover.png b/src/main/resources/static/images/powers/call_of_the_ocean.hover.png new file mode 100644 index 0000000..b45d68d Binary files /dev/null and b/src/main/resources/static/images/powers/call_of_the_ocean.hover.png differ diff --git a/src/main/resources/static/images/powers/call_of_the_ocean.png b/src/main/resources/static/images/powers/call_of_the_ocean.png new file mode 100644 index 0000000..386cd98 Binary files /dev/null and b/src/main/resources/static/images/powers/call_of_the_ocean.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation.disabled.png b/src/main/resources/static/images/powers/calydonian_boar_generation.disabled.png new file mode 100644 index 0000000..ff5d368 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation.hover.png b/src/main/resources/static/images/powers/calydonian_boar_generation.hover.png new file mode 100644 index 0000000..4fe8cb2 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation.png b/src/main/resources/static/images/powers/calydonian_boar_generation.png new file mode 100644 index 0000000..b665b4b Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.disabled.png new file mode 100644 index 0000000..eb0aac9 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.hover.png new file mode 100644 index 0000000..5f993b0 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.png b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.png new file mode 100644 index 0000000..0c6ba65 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_instant.disabled.png b/src/main/resources/static/images/powers/calydonian_boar_instant.disabled.png new file mode 100644 index 0000000..aa90940 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_instant.hover.png b/src/main/resources/static/images/powers/calydonian_boar_instant.hover.png new file mode 100644 index 0000000..e2e634f Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/calydonian_boar_instant.png b/src/main/resources/static/images/powers/calydonian_boar_instant.png new file mode 100644 index 0000000..1c69575 Binary files /dev/null and b/src/main/resources/static/images/powers/calydonian_boar_instant.png differ diff --git a/src/main/resources/static/images/powers/cap_of_invisibility.disabled.png b/src/main/resources/static/images/powers/cap_of_invisibility.disabled.png new file mode 100644 index 0000000..a2da32f Binary files /dev/null and b/src/main/resources/static/images/powers/cap_of_invisibility.disabled.png differ diff --git a/src/main/resources/static/images/powers/cap_of_invisibility.hover.png b/src/main/resources/static/images/powers/cap_of_invisibility.hover.png new file mode 100644 index 0000000..155a0c3 Binary files /dev/null and b/src/main/resources/static/images/powers/cap_of_invisibility.hover.png differ diff --git a/src/main/resources/static/images/powers/cap_of_invisibility.png b/src/main/resources/static/images/powers/cap_of_invisibility.png new file mode 100644 index 0000000..35b818f Binary files /dev/null and b/src/main/resources/static/images/powers/cap_of_invisibility.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation.disabled.png b/src/main/resources/static/images/powers/catapult_generation.disabled.png new file mode 100644 index 0000000..167f8f5 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation.hover.png b/src/main/resources/static/images/powers/catapult_generation.hover.png new file mode 100644 index 0000000..687c5bf Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation.png b/src/main/resources/static/images/powers/catapult_generation.png new file mode 100644 index 0000000..e549d1d Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/catapult_generation_non_scaling.disabled.png new file mode 100644 index 0000000..f17cf44 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/catapult_generation_non_scaling.hover.png new file mode 100644 index 0000000..3d2dda8 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/catapult_generation_non_scaling.png b/src/main/resources/static/images/powers/catapult_generation_non_scaling.png new file mode 100644 index 0000000..5084064 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/catapult_instant.disabled.png b/src/main/resources/static/images/powers/catapult_instant.disabled.png new file mode 100644 index 0000000..b35e51f Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/catapult_instant.hover.png b/src/main/resources/static/images/powers/catapult_instant.hover.png new file mode 100644 index 0000000..8e15142 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/catapult_instant.png b/src/main/resources/static/images/powers/catapult_instant.png new file mode 100644 index 0000000..93a6151 Binary files /dev/null and b/src/main/resources/static/images/powers/catapult_instant.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation.disabled.png b/src/main/resources/static/images/powers/centaur_generation.disabled.png new file mode 100644 index 0000000..414f906 Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation.hover.png b/src/main/resources/static/images/powers/centaur_generation.hover.png new file mode 100644 index 0000000..1d9970c Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation.png b/src/main/resources/static/images/powers/centaur_generation.png new file mode 100644 index 0000000..8442c0e Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/centaur_generation_non_scaling.disabled.png new file mode 100644 index 0000000..18cbf1f Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/centaur_generation_non_scaling.hover.png new file mode 100644 index 0000000..bbb0545 Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/centaur_generation_non_scaling.png b/src/main/resources/static/images/powers/centaur_generation_non_scaling.png new file mode 100644 index 0000000..8c40b8e Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/centaur_instant.disabled.png b/src/main/resources/static/images/powers/centaur_instant.disabled.png new file mode 100644 index 0000000..00e4313 Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/centaur_instant.hover.png b/src/main/resources/static/images/powers/centaur_instant.hover.png new file mode 100644 index 0000000..6e647ad Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/centaur_instant.png b/src/main/resources/static/images/powers/centaur_instant.png new file mode 100644 index 0000000..c90f2fe Binary files /dev/null and b/src/main/resources/static/images/powers/centaur_instant.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation.disabled.png b/src/main/resources/static/images/powers/cerberus_generation.disabled.png new file mode 100644 index 0000000..ced6bde Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation.hover.png b/src/main/resources/static/images/powers/cerberus_generation.hover.png new file mode 100644 index 0000000..84aee90 Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation.png b/src/main/resources/static/images/powers/cerberus_generation.png new file mode 100644 index 0000000..bf8159f Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.disabled.png new file mode 100644 index 0000000..15512e3 Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.hover.png new file mode 100644 index 0000000..6b162e1 Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/cerberus_generation_non_scaling.png b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.png new file mode 100644 index 0000000..7c9a4c2 Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/cerberus_instant.disabled.png b/src/main/resources/static/images/powers/cerberus_instant.disabled.png new file mode 100644 index 0000000..bd382df Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/cerberus_instant.hover.png b/src/main/resources/static/images/powers/cerberus_instant.hover.png new file mode 100644 index 0000000..0d0458c Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/cerberus_instant.png b/src/main/resources/static/images/powers/cerberus_instant.png new file mode 100644 index 0000000..9105b4f Binary files /dev/null and b/src/main/resources/static/images/powers/cerberus_instant.png differ diff --git a/src/main/resources/static/images/powers/chain_lightning.disabled.png b/src/main/resources/static/images/powers/chain_lightning.disabled.png new file mode 100644 index 0000000..7588a8e Binary files /dev/null and b/src/main/resources/static/images/powers/chain_lightning.disabled.png differ diff --git a/src/main/resources/static/images/powers/chain_lightning.hover.png b/src/main/resources/static/images/powers/chain_lightning.hover.png new file mode 100644 index 0000000..35c55fc Binary files /dev/null and b/src/main/resources/static/images/powers/chain_lightning.hover.png differ diff --git a/src/main/resources/static/images/powers/chain_lightning.png b/src/main/resources/static/images/powers/chain_lightning.png new file mode 100644 index 0000000..5f62278 Binary files /dev/null and b/src/main/resources/static/images/powers/chain_lightning.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation.disabled.png b/src/main/resources/static/images/powers/chariot_generation.disabled.png new file mode 100644 index 0000000..3bd6c18 Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation.hover.png b/src/main/resources/static/images/powers/chariot_generation.hover.png new file mode 100644 index 0000000..e55832c Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation.png b/src/main/resources/static/images/powers/chariot_generation.png new file mode 100644 index 0000000..18d0a8f Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/chariot_generation_non_scaling.disabled.png new file mode 100644 index 0000000..9e791fb Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/chariot_generation_non_scaling.hover.png new file mode 100644 index 0000000..9dd76bc Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/chariot_generation_non_scaling.png b/src/main/resources/static/images/powers/chariot_generation_non_scaling.png new file mode 100644 index 0000000..4f076ff Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/chariot_instant.disabled.png b/src/main/resources/static/images/powers/chariot_instant.disabled.png new file mode 100644 index 0000000..c8f9a7a Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/chariot_instant.hover.png b/src/main/resources/static/images/powers/chariot_instant.hover.png new file mode 100644 index 0000000..982b853 Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/chariot_instant.png b/src/main/resources/static/images/powers/chariot_instant.png new file mode 100644 index 0000000..523171a Binary files /dev/null and b/src/main/resources/static/images/powers/chariot_instant.png differ diff --git a/src/main/resources/static/images/powers/charitable_festival.disabled.png b/src/main/resources/static/images/powers/charitable_festival.disabled.png new file mode 100644 index 0000000..63c8c0a Binary files /dev/null and b/src/main/resources/static/images/powers/charitable_festival.disabled.png differ diff --git a/src/main/resources/static/images/powers/charitable_festival.hover.png b/src/main/resources/static/images/powers/charitable_festival.hover.png new file mode 100644 index 0000000..c09ec16 Binary files /dev/null and b/src/main/resources/static/images/powers/charitable_festival.hover.png differ diff --git a/src/main/resources/static/images/powers/charitable_festival.png b/src/main/resources/static/images/powers/charitable_festival.png new file mode 100644 index 0000000..4f7348b Binary files /dev/null and b/src/main/resources/static/images/powers/charitable_festival.png differ diff --git a/src/main/resources/static/images/powers/city_skin_fleet_port.disabled.png b/src/main/resources/static/images/powers/city_skin_fleet_port.disabled.png new file mode 100644 index 0000000..782ba34 Binary files /dev/null and b/src/main/resources/static/images/powers/city_skin_fleet_port.disabled.png differ diff --git a/src/main/resources/static/images/powers/city_skin_fleet_port.hover.png b/src/main/resources/static/images/powers/city_skin_fleet_port.hover.png new file mode 100644 index 0000000..f84ccba Binary files /dev/null and b/src/main/resources/static/images/powers/city_skin_fleet_port.hover.png differ diff --git a/src/main/resources/static/images/powers/city_skin_fleet_port.png b/src/main/resources/static/images/powers/city_skin_fleet_port.png new file mode 100644 index 0000000..6969421 Binary files /dev/null and b/src/main/resources/static/images/powers/city_skin_fleet_port.png differ diff --git a/src/main/resources/static/images/powers/cleanse.disabled.png b/src/main/resources/static/images/powers/cleanse.disabled.png new file mode 100644 index 0000000..ba0bd01 Binary files /dev/null and b/src/main/resources/static/images/powers/cleanse.disabled.png differ diff --git a/src/main/resources/static/images/powers/cleanse.hover.png b/src/main/resources/static/images/powers/cleanse.hover.png new file mode 100644 index 0000000..b04e6c1 Binary files /dev/null and b/src/main/resources/static/images/powers/cleanse.hover.png differ diff --git a/src/main/resources/static/images/powers/cleanse.png b/src/main/resources/static/images/powers/cleanse.png new file mode 100644 index 0000000..6c095be Binary files /dev/null and b/src/main/resources/static/images/powers/cleanse.png differ diff --git a/src/main/resources/static/images/powers/coins_of_both_generation.disabled.png b/src/main/resources/static/images/powers/coins_of_both_generation.disabled.png new file mode 100644 index 0000000..5a53ddd Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_both_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/coins_of_both_generation.hover.png b/src/main/resources/static/images/powers/coins_of_both_generation.hover.png new file mode 100644 index 0000000..40f548d Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_both_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/coins_of_both_generation.png b/src/main/resources/static/images/powers/coins_of_both_generation.png new file mode 100644 index 0000000..2a9452d Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_both_generation.png differ diff --git a/src/main/resources/static/images/powers/coins_of_war_generation.disabled.png b/src/main/resources/static/images/powers/coins_of_war_generation.disabled.png new file mode 100644 index 0000000..c014df1 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_war_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/coins_of_war_generation.hover.png b/src/main/resources/static/images/powers/coins_of_war_generation.hover.png new file mode 100644 index 0000000..ac068a8 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_war_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/coins_of_war_generation.png b/src/main/resources/static/images/powers/coins_of_war_generation.png new file mode 100644 index 0000000..2229d45 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_war_generation.png differ diff --git a/src/main/resources/static/images/powers/coins_of_wisdom_generation.disabled.png b/src/main/resources/static/images/powers/coins_of_wisdom_generation.disabled.png new file mode 100644 index 0000000..b752359 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_wisdom_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/coins_of_wisdom_generation.hover.png b/src/main/resources/static/images/powers/coins_of_wisdom_generation.hover.png new file mode 100644 index 0000000..df2fc76 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_wisdom_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/coins_of_wisdom_generation.png b/src/main/resources/static/images/powers/coins_of_wisdom_generation.png new file mode 100644 index 0000000..d76f0d3 Binary files /dev/null and b/src/main/resources/static/images/powers/coins_of_wisdom_generation.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation.disabled.png b/src/main/resources/static/images/powers/colonize_ship_generation.disabled.png new file mode 100644 index 0000000..6eae063 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation.hover.png b/src/main/resources/static/images/powers/colonize_ship_generation.hover.png new file mode 100644 index 0000000..3663c22 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation.png b/src/main/resources/static/images/powers/colonize_ship_generation.png new file mode 100644 index 0000000..0987227 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.disabled.png new file mode 100644 index 0000000..8869cb2 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.hover.png new file mode 100644 index 0000000..cbc1ddd Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.png b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.png new file mode 100644 index 0000000..6b0ac83 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_instant.disabled.png b/src/main/resources/static/images/powers/colonize_ship_instant.disabled.png new file mode 100644 index 0000000..c78e654 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_instant.hover.png b/src/main/resources/static/images/powers/colonize_ship_instant.hover.png new file mode 100644 index 0000000..e9ea562 Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/colonize_ship_instant.png b/src/main/resources/static/images/powers/colonize_ship_instant.png new file mode 100644 index 0000000..3d4de8a Binary files /dev/null and b/src/main/resources/static/images/powers/colonize_ship_instant.png differ diff --git a/src/main/resources/static/images/powers/culture_level.disabled.png b/src/main/resources/static/images/powers/culture_level.disabled.png new file mode 100644 index 0000000..074f3ab Binary files /dev/null and b/src/main/resources/static/images/powers/culture_level.disabled.png differ diff --git a/src/main/resources/static/images/powers/culture_level.hover.png b/src/main/resources/static/images/powers/culture_level.hover.png new file mode 100644 index 0000000..11e7549 Binary files /dev/null and b/src/main/resources/static/images/powers/culture_level.hover.png differ diff --git a/src/main/resources/static/images/powers/culture_level.png b/src/main/resources/static/images/powers/culture_level.png new file mode 100644 index 0000000..b2af55b Binary files /dev/null and b/src/main/resources/static/images/powers/culture_level.png differ diff --git a/src/main/resources/static/images/powers/culture_points.disabled.png b/src/main/resources/static/images/powers/culture_points.disabled.png new file mode 100644 index 0000000..dcf0cd3 Binary files /dev/null and b/src/main/resources/static/images/powers/culture_points.disabled.png differ diff --git a/src/main/resources/static/images/powers/culture_points.hover.png b/src/main/resources/static/images/powers/culture_points.hover.png new file mode 100644 index 0000000..440c957 Binary files /dev/null and b/src/main/resources/static/images/powers/culture_points.hover.png differ diff --git a/src/main/resources/static/images/powers/culture_points.png b/src/main/resources/static/images/powers/culture_points.png new file mode 100644 index 0000000..f5a47af Binary files /dev/null and b/src/main/resources/static/images/powers/culture_points.png differ diff --git a/src/main/resources/static/images/powers/defense_boost.disabled.png b/src/main/resources/static/images/powers/defense_boost.disabled.png new file mode 100644 index 0000000..c9689bf Binary files /dev/null and b/src/main/resources/static/images/powers/defense_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/defense_boost.hover.png b/src/main/resources/static/images/powers/defense_boost.hover.png new file mode 100644 index 0000000..2ff36ff Binary files /dev/null and b/src/main/resources/static/images/powers/defense_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/defense_boost.png b/src/main/resources/static/images/powers/defense_boost.png new file mode 100644 index 0000000..6c4b940 Binary files /dev/null and b/src/main/resources/static/images/powers/defense_boost.png differ diff --git a/src/main/resources/static/images/powers/defense_penalty.disabled.png b/src/main/resources/static/images/powers/defense_penalty.disabled.png new file mode 100644 index 0000000..ab6d574 Binary files /dev/null and b/src/main/resources/static/images/powers/defense_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/defense_penalty.hover.png b/src/main/resources/static/images/powers/defense_penalty.hover.png new file mode 100644 index 0000000..4e02bab Binary files /dev/null and b/src/main/resources/static/images/powers/defense_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/defense_penalty.png b/src/main/resources/static/images/powers/defense_penalty.png new file mode 100644 index 0000000..63368b9 Binary files /dev/null and b/src/main/resources/static/images/powers/defense_penalty.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation.disabled.png b/src/main/resources/static/images/powers/demolition_ship_generation.disabled.png new file mode 100644 index 0000000..8540dae Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation.hover.png b/src/main/resources/static/images/powers/demolition_ship_generation.hover.png new file mode 100644 index 0000000..724a1a6 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation.png b/src/main/resources/static/images/powers/demolition_ship_generation.png new file mode 100644 index 0000000..4c4988d Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.disabled.png new file mode 100644 index 0000000..d6c8204 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.hover.png new file mode 100644 index 0000000..78c6578 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.png b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.png new file mode 100644 index 0000000..60cecbd Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_instant.disabled.png b/src/main/resources/static/images/powers/demolition_ship_instant.disabled.png new file mode 100644 index 0000000..4204636 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_instant.hover.png b/src/main/resources/static/images/powers/demolition_ship_instant.hover.png new file mode 100644 index 0000000..75f9788 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/demolition_ship_instant.png b/src/main/resources/static/images/powers/demolition_ship_instant.png new file mode 100644 index 0000000..7936759 Binary files /dev/null and b/src/main/resources/static/images/powers/demolition_ship_instant.png differ diff --git a/src/main/resources/static/images/powers/demoralized_army.disabled.png b/src/main/resources/static/images/powers/demoralized_army.disabled.png new file mode 100644 index 0000000..6e93338 Binary files /dev/null and b/src/main/resources/static/images/powers/demoralized_army.disabled.png differ diff --git a/src/main/resources/static/images/powers/demoralized_army.hover.png b/src/main/resources/static/images/powers/demoralized_army.hover.png new file mode 100644 index 0000000..5fda4b5 Binary files /dev/null and b/src/main/resources/static/images/powers/demoralized_army.hover.png differ diff --git a/src/main/resources/static/images/powers/demoralized_army.png b/src/main/resources/static/images/powers/demoralized_army.png new file mode 100644 index 0000000..530763f Binary files /dev/null and b/src/main/resources/static/images/powers/demoralized_army.png differ diff --git a/src/main/resources/static/images/powers/demoralizing_plague.disabled.png b/src/main/resources/static/images/powers/demoralizing_plague.disabled.png new file mode 100644 index 0000000..c81ebeb Binary files /dev/null and b/src/main/resources/static/images/powers/demoralizing_plague.disabled.png differ diff --git a/src/main/resources/static/images/powers/demoralizing_plague.hover.png b/src/main/resources/static/images/powers/demoralizing_plague.hover.png new file mode 100644 index 0000000..3aa0e7c Binary files /dev/null and b/src/main/resources/static/images/powers/demoralizing_plague.hover.png differ diff --git a/src/main/resources/static/images/powers/demoralizing_plague.png b/src/main/resources/static/images/powers/demoralizing_plague.png new file mode 100644 index 0000000..2fc5b38 Binary files /dev/null and b/src/main/resources/static/images/powers/demoralizing_plague.png differ diff --git a/src/main/resources/static/images/powers/desire.disabled.png b/src/main/resources/static/images/powers/desire.disabled.png new file mode 100644 index 0000000..3322aaf Binary files /dev/null and b/src/main/resources/static/images/powers/desire.disabled.png differ diff --git a/src/main/resources/static/images/powers/desire.hover.png b/src/main/resources/static/images/powers/desire.hover.png new file mode 100644 index 0000000..a15675c Binary files /dev/null and b/src/main/resources/static/images/powers/desire.hover.png differ diff --git a/src/main/resources/static/images/powers/desire.png b/src/main/resources/static/images/powers/desire.png new file mode 100644 index 0000000..0956cb6 Binary files /dev/null and b/src/main/resources/static/images/powers/desire.png differ diff --git a/src/main/resources/static/images/powers/divine_aura.disabled.png b/src/main/resources/static/images/powers/divine_aura.disabled.png new file mode 100644 index 0000000..eba0029 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_aura.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_aura.hover.png b/src/main/resources/static/images/powers/divine_aura.hover.png new file mode 100644 index 0000000..a1bc975 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_aura.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_aura.png b/src/main/resources/static/images/powers/divine_aura.png new file mode 100644 index 0000000..4eb81cf Binary files /dev/null and b/src/main/resources/static/images/powers/divine_aura.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_epic.disabled.png b/src/main/resources/static/images/powers/divine_battle_strategy_epic.disabled.png new file mode 100644 index 0000000..a15d5b7 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_epic.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_epic.hover.png b/src/main/resources/static/images/powers/divine_battle_strategy_epic.hover.png new file mode 100644 index 0000000..45c1d66 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_epic.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_epic.png b/src/main/resources/static/images/powers/divine_battle_strategy_epic.png new file mode 100644 index 0000000..6e4ef95 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_epic.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_rare.disabled.png b/src/main/resources/static/images/powers/divine_battle_strategy_rare.disabled.png new file mode 100644 index 0000000..a8ebbe4 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_rare.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_rare.hover.png b/src/main/resources/static/images/powers/divine_battle_strategy_rare.hover.png new file mode 100644 index 0000000..8817b3e Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_rare.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_battle_strategy_rare.png b/src/main/resources/static/images/powers/divine_battle_strategy_rare.png new file mode 100644 index 0000000..a0e62cf Binary files /dev/null and b/src/main/resources/static/images/powers/divine_battle_strategy_rare.png differ diff --git a/src/main/resources/static/images/powers/divine_intervention.disabled.png b/src/main/resources/static/images/powers/divine_intervention.disabled.png new file mode 100644 index 0000000..9056d94 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_intervention.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_intervention.hover.png b/src/main/resources/static/images/powers/divine_intervention.hover.png new file mode 100644 index 0000000..52bb0e2 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_intervention.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_intervention.png b/src/main/resources/static/images/powers/divine_intervention.png new file mode 100644 index 0000000..acf185c Binary files /dev/null and b/src/main/resources/static/images/powers/divine_intervention.png differ diff --git a/src/main/resources/static/images/powers/divine_senses.disabled.png b/src/main/resources/static/images/powers/divine_senses.disabled.png new file mode 100644 index 0000000..09623b3 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_senses.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_senses.hover.png b/src/main/resources/static/images/powers/divine_senses.hover.png new file mode 100644 index 0000000..b04b3e2 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_senses.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_senses.png b/src/main/resources/static/images/powers/divine_senses.png new file mode 100644 index 0000000..9be9b4a Binary files /dev/null and b/src/main/resources/static/images/powers/divine_senses.png differ diff --git a/src/main/resources/static/images/powers/divine_sign.disabled.png b/src/main/resources/static/images/powers/divine_sign.disabled.png new file mode 100644 index 0000000..f37378c Binary files /dev/null and b/src/main/resources/static/images/powers/divine_sign.disabled.png differ diff --git a/src/main/resources/static/images/powers/divine_sign.hover.png b/src/main/resources/static/images/powers/divine_sign.hover.png new file mode 100644 index 0000000..09488fc Binary files /dev/null and b/src/main/resources/static/images/powers/divine_sign.hover.png differ diff --git a/src/main/resources/static/images/powers/divine_sign.png b/src/main/resources/static/images/powers/divine_sign.png new file mode 100644 index 0000000..4f5f8d1 Binary files /dev/null and b/src/main/resources/static/images/powers/divine_sign.png differ diff --git a/src/main/resources/static/images/powers/earthquake.disabled.png b/src/main/resources/static/images/powers/earthquake.disabled.png new file mode 100644 index 0000000..cba3478 Binary files /dev/null and b/src/main/resources/static/images/powers/earthquake.disabled.png differ diff --git a/src/main/resources/static/images/powers/earthquake.hover.png b/src/main/resources/static/images/powers/earthquake.hover.png new file mode 100644 index 0000000..f5abf6d Binary files /dev/null and b/src/main/resources/static/images/powers/earthquake.hover.png differ diff --git a/src/main/resources/static/images/powers/earthquake.png b/src/main/resources/static/images/powers/earthquake.png new file mode 100644 index 0000000..bee3613 Binary files /dev/null and b/src/main/resources/static/images/powers/earthquake.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.disabled.png b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.disabled.png new file mode 100644 index 0000000..91a4738 Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.hover.png b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.hover.png new file mode 100644 index 0000000..766c103 Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.png b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.png new file mode 100644 index 0000000..b364b67 Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_demeter.crafting_ingredients_boost.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.disabled.png b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.disabled.png new file mode 100644 index 0000000..8781d1f Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.disabled.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.hover.png b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.hover.png new file mode 100644 index 0000000..a90609c Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.hover.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.png b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.png new file mode 100644 index 0000000..300740f Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_easter_hen.crafting_recipes_power.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.disabled.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.disabled.png new file mode 100644 index 0000000..d4dfffa Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.hover.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.hover.png new file mode 100644 index 0000000..02fd3db Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.png new file mode 100644 index 0000000..10b58c7 Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_ingredients_boost.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.disabled.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.disabled.png new file mode 100644 index 0000000..155654c Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.disabled.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.hover.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.hover.png new file mode 100644 index 0000000..b0ab9cb Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.hover.png differ diff --git a/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.png b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.png new file mode 100644 index 0000000..3ceeb4e Binary files /dev/null and b/src/main/resources/static/images/powers/easter_skin_incantation.crafting_recipes_power.png differ diff --git a/src/main/resources/static/images/powers/effort_of_the_huntress.disabled.png b/src/main/resources/static/images/powers/effort_of_the_huntress.disabled.png new file mode 100644 index 0000000..9a54b18 Binary files /dev/null and b/src/main/resources/static/images/powers/effort_of_the_huntress.disabled.png differ diff --git a/src/main/resources/static/images/powers/effort_of_the_huntress.hover.png b/src/main/resources/static/images/powers/effort_of_the_huntress.hover.png new file mode 100644 index 0000000..f297ae6 Binary files /dev/null and b/src/main/resources/static/images/powers/effort_of_the_huntress.hover.png differ diff --git a/src/main/resources/static/images/powers/effort_of_the_huntress.png b/src/main/resources/static/images/powers/effort_of_the_huntress.png new file mode 100644 index 0000000..c808621 Binary files /dev/null and b/src/main/resources/static/images/powers/effort_of_the_huntress.png differ diff --git a/src/main/resources/static/images/powers/enlist_militia_penalty.disabled.png b/src/main/resources/static/images/powers/enlist_militia_penalty.disabled.png new file mode 100644 index 0000000..d89d91b Binary files /dev/null and b/src/main/resources/static/images/powers/enlist_militia_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/enlist_militia_penalty.hover.png b/src/main/resources/static/images/powers/enlist_militia_penalty.hover.png new file mode 100644 index 0000000..80615c6 Binary files /dev/null and b/src/main/resources/static/images/powers/enlist_militia_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/enlist_militia_penalty.png b/src/main/resources/static/images/powers/enlist_militia_penalty.png new file mode 100644 index 0000000..47ef0ce Binary files /dev/null and b/src/main/resources/static/images/powers/enlist_militia_penalty.png differ diff --git a/src/main/resources/static/images/powers/epic_attack_boost.disabled.png b/src/main/resources/static/images/powers/epic_attack_boost.disabled.png new file mode 100644 index 0000000..b7a9b9f Binary files /dev/null and b/src/main/resources/static/images/powers/epic_attack_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_attack_boost.hover.png b/src/main/resources/static/images/powers/epic_attack_boost.hover.png new file mode 100644 index 0000000..a235698 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_attack_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_attack_boost.png b/src/main/resources/static/images/powers/epic_attack_boost.png new file mode 100644 index 0000000..0d8ef6b Binary files /dev/null and b/src/main/resources/static/images/powers/epic_attack_boost.png differ diff --git a/src/main/resources/static/images/powers/epic_building_order_boost.disabled.png b/src/main/resources/static/images/powers/epic_building_order_boost.disabled.png new file mode 100644 index 0000000..e652156 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_building_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_building_order_boost.hover.png b/src/main/resources/static/images/powers/epic_building_order_boost.hover.png new file mode 100644 index 0000000..580daf0 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_building_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_building_order_boost.png b/src/main/resources/static/images/powers/epic_building_order_boost.png new file mode 100644 index 0000000..6e69b1f Binary files /dev/null and b/src/main/resources/static/images/powers/epic_building_order_boost.png differ diff --git a/src/main/resources/static/images/powers/epic_defense_boost.disabled.png b/src/main/resources/static/images/powers/epic_defense_boost.disabled.png new file mode 100644 index 0000000..0cd1e5f Binary files /dev/null and b/src/main/resources/static/images/powers/epic_defense_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_defense_boost.hover.png b/src/main/resources/static/images/powers/epic_defense_boost.hover.png new file mode 100644 index 0000000..e9be571 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_defense_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_defense_boost.png b/src/main/resources/static/images/powers/epic_defense_boost.png new file mode 100644 index 0000000..dd76a6c Binary files /dev/null and b/src/main/resources/static/images/powers/epic_defense_boost.png differ diff --git a/src/main/resources/static/images/powers/epic_favor_boost.disabled.png b/src/main/resources/static/images/powers/epic_favor_boost.disabled.png new file mode 100644 index 0000000..079ba8b Binary files /dev/null and b/src/main/resources/static/images/powers/epic_favor_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_favor_boost.hover.png b/src/main/resources/static/images/powers/epic_favor_boost.hover.png new file mode 100644 index 0000000..dcefb1e Binary files /dev/null and b/src/main/resources/static/images/powers/epic_favor_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_favor_boost.png b/src/main/resources/static/images/powers/epic_favor_boost.png new file mode 100644 index 0000000..6b4cf6b Binary files /dev/null and b/src/main/resources/static/images/powers/epic_favor_boost.png differ diff --git a/src/main/resources/static/images/powers/epic_resource_boost.disabled.png b/src/main/resources/static/images/powers/epic_resource_boost.disabled.png new file mode 100644 index 0000000..b2bf012 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_resource_boost.hover.png b/src/main/resources/static/images/powers/epic_resource_boost.hover.png new file mode 100644 index 0000000..aceb4fd Binary files /dev/null and b/src/main/resources/static/images/powers/epic_resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_resource_boost.png b/src/main/resources/static/images/powers/epic_resource_boost.png new file mode 100644 index 0000000..7b41aa3 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_resource_boost.png differ diff --git a/src/main/resources/static/images/powers/epic_unit_order_boost.disabled.png b/src/main/resources/static/images/powers/epic_unit_order_boost.disabled.png new file mode 100644 index 0000000..d1b2bbf Binary files /dev/null and b/src/main/resources/static/images/powers/epic_unit_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/epic_unit_order_boost.hover.png b/src/main/resources/static/images/powers/epic_unit_order_boost.hover.png new file mode 100644 index 0000000..3e139a1 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_unit_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/epic_unit_order_boost.png b/src/main/resources/static/images/powers/epic_unit_order_boost.png new file mode 100644 index 0000000..c057171 Binary files /dev/null and b/src/main/resources/static/images/powers/epic_unit_order_boost.png differ diff --git a/src/main/resources/static/images/powers/event_pass_divine_prizes.disabled.png b/src/main/resources/static/images/powers/event_pass_divine_prizes.disabled.png new file mode 100644 index 0000000..287e5be Binary files /dev/null and b/src/main/resources/static/images/powers/event_pass_divine_prizes.disabled.png differ diff --git a/src/main/resources/static/images/powers/event_pass_divine_prizes.hover.png b/src/main/resources/static/images/powers/event_pass_divine_prizes.hover.png new file mode 100644 index 0000000..da5a008 Binary files /dev/null and b/src/main/resources/static/images/powers/event_pass_divine_prizes.hover.png differ diff --git a/src/main/resources/static/images/powers/event_pass_divine_prizes.png b/src/main/resources/static/images/powers/event_pass_divine_prizes.png new file mode 100644 index 0000000..9dcf5a2 Binary files /dev/null and b/src/main/resources/static/images/powers/event_pass_divine_prizes.png differ diff --git a/src/main/resources/static/images/powers/fair_wind.disabled.png b/src/main/resources/static/images/powers/fair_wind.disabled.png new file mode 100644 index 0000000..14e6073 Binary files /dev/null and b/src/main/resources/static/images/powers/fair_wind.disabled.png differ diff --git a/src/main/resources/static/images/powers/fair_wind.hover.png b/src/main/resources/static/images/powers/fair_wind.hover.png new file mode 100644 index 0000000..5dc341f Binary files /dev/null and b/src/main/resources/static/images/powers/fair_wind.hover.png differ diff --git a/src/main/resources/static/images/powers/fair_wind.png b/src/main/resources/static/images/powers/fair_wind.png new file mode 100644 index 0000000..c33bccb Binary files /dev/null and b/src/main/resources/static/images/powers/fair_wind.png differ diff --git a/src/main/resources/static/images/powers/favor_boost.disabled.png b/src/main/resources/static/images/powers/favor_boost.disabled.png new file mode 100644 index 0000000..12788b4 Binary files /dev/null and b/src/main/resources/static/images/powers/favor_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/favor_boost.hover.png b/src/main/resources/static/images/powers/favor_boost.hover.png new file mode 100644 index 0000000..0a4ce28 Binary files /dev/null and b/src/main/resources/static/images/powers/favor_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/favor_boost.png b/src/main/resources/static/images/powers/favor_boost.png new file mode 100644 index 0000000..7f64d25 Binary files /dev/null and b/src/main/resources/static/images/powers/favor_boost.png differ diff --git a/src/main/resources/static/images/powers/favor_of_the_gods.disabled.png b/src/main/resources/static/images/powers/favor_of_the_gods.disabled.png new file mode 100644 index 0000000..7b5b2af Binary files /dev/null and b/src/main/resources/static/images/powers/favor_of_the_gods.disabled.png differ diff --git a/src/main/resources/static/images/powers/favor_of_the_gods.hover.png b/src/main/resources/static/images/powers/favor_of_the_gods.hover.png new file mode 100644 index 0000000..a1a1f42 Binary files /dev/null and b/src/main/resources/static/images/powers/favor_of_the_gods.hover.png differ diff --git a/src/main/resources/static/images/powers/favor_of_the_gods.png b/src/main/resources/static/images/powers/favor_of_the_gods.png new file mode 100644 index 0000000..83b4d0f Binary files /dev/null and b/src/main/resources/static/images/powers/favor_of_the_gods.png differ diff --git a/src/main/resources/static/images/powers/favor_penalty.disabled.png b/src/main/resources/static/images/powers/favor_penalty.disabled.png new file mode 100644 index 0000000..20c790c Binary files /dev/null and b/src/main/resources/static/images/powers/favor_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/favor_penalty.hover.png b/src/main/resources/static/images/powers/favor_penalty.hover.png new file mode 100644 index 0000000..01e1cb2 Binary files /dev/null and b/src/main/resources/static/images/powers/favor_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/favor_penalty.png b/src/main/resources/static/images/powers/favor_penalty.png new file mode 100644 index 0000000..b5d4acc Binary files /dev/null and b/src/main/resources/static/images/powers/favor_penalty.png differ diff --git a/src/main/resources/static/images/powers/fertility_improvement.disabled.png b/src/main/resources/static/images/powers/fertility_improvement.disabled.png new file mode 100644 index 0000000..37b2ad2 Binary files /dev/null and b/src/main/resources/static/images/powers/fertility_improvement.disabled.png differ diff --git a/src/main/resources/static/images/powers/fertility_improvement.hover.png b/src/main/resources/static/images/powers/fertility_improvement.hover.png new file mode 100644 index 0000000..7469825 Binary files /dev/null and b/src/main/resources/static/images/powers/fertility_improvement.hover.png differ diff --git a/src/main/resources/static/images/powers/fertility_improvement.png b/src/main/resources/static/images/powers/fertility_improvement.png new file mode 100644 index 0000000..3a4eb54 Binary files /dev/null and b/src/main/resources/static/images/powers/fertility_improvement.png differ diff --git a/src/main/resources/static/images/powers/forced_loyalty.disabled.png b/src/main/resources/static/images/powers/forced_loyalty.disabled.png new file mode 100644 index 0000000..57208bd Binary files /dev/null and b/src/main/resources/static/images/powers/forced_loyalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/forced_loyalty.hover.png b/src/main/resources/static/images/powers/forced_loyalty.hover.png new file mode 100644 index 0000000..cb79a6f Binary files /dev/null and b/src/main/resources/static/images/powers/forced_loyalty.hover.png differ diff --git a/src/main/resources/static/images/powers/forced_loyalty.png b/src/main/resources/static/images/powers/forced_loyalty.png new file mode 100644 index 0000000..98f95b7 Binary files /dev/null and b/src/main/resources/static/images/powers/forced_loyalty.png differ diff --git a/src/main/resources/static/images/powers/fury_generation.disabled.png b/src/main/resources/static/images/powers/fury_generation.disabled.png new file mode 100644 index 0000000..c280e4a Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/fury_generation.hover.png b/src/main/resources/static/images/powers/fury_generation.hover.png new file mode 100644 index 0000000..58cf611 Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/fury_generation.png b/src/main/resources/static/images/powers/fury_generation.png new file mode 100644 index 0000000..8cd682a Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation.png differ diff --git a/src/main/resources/static/images/powers/fury_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/fury_generation_non_scaling.disabled.png new file mode 100644 index 0000000..9b553f2 Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/fury_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/fury_generation_non_scaling.hover.png new file mode 100644 index 0000000..dbcfc77 Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/fury_generation_non_scaling.png b/src/main/resources/static/images/powers/fury_generation_non_scaling.png new file mode 100644 index 0000000..e263eaf Binary files /dev/null and b/src/main/resources/static/images/powers/fury_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/fury_instant.disabled.png b/src/main/resources/static/images/powers/fury_instant.disabled.png new file mode 100644 index 0000000..e04476e Binary files /dev/null and b/src/main/resources/static/images/powers/fury_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/fury_instant.hover.png b/src/main/resources/static/images/powers/fury_instant.hover.png new file mode 100644 index 0000000..388732a Binary files /dev/null and b/src/main/resources/static/images/powers/fury_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/fury_instant.png b/src/main/resources/static/images/powers/fury_instant.png new file mode 100644 index 0000000..92e5ae2 Binary files /dev/null and b/src/main/resources/static/images/powers/fury_instant.png differ diff --git a/src/main/resources/static/images/powers/general_battle_points_bonus_icon.disabled.png b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.disabled.png new file mode 100644 index 0000000..69c625b Binary files /dev/null and b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.disabled.png differ diff --git a/src/main/resources/static/images/powers/general_battle_points_bonus_icon.hover.png b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.hover.png new file mode 100644 index 0000000..4969036 Binary files /dev/null and b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.hover.png differ diff --git a/src/main/resources/static/images/powers/general_battle_points_bonus_icon.png b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.png new file mode 100644 index 0000000..45821dd Binary files /dev/null and b/src/main/resources/static/images/powers/general_battle_points_bonus_icon.png differ diff --git a/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.disabled.png b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.disabled.png new file mode 100644 index 0000000..545bc06 Binary files /dev/null and b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.disabled.png differ diff --git a/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.hover.png b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.hover.png new file mode 100644 index 0000000..131e7d6 Binary files /dev/null and b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.hover.png differ diff --git a/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.png b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.png new file mode 100644 index 0000000..596dd6e Binary files /dev/null and b/src/main/resources/static/images/powers/gods_gifts.grid_event_advanced_scouts.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation.disabled.png b/src/main/resources/static/images/powers/godsent_generation.disabled.png new file mode 100644 index 0000000..57bd00d Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation.hover.png b/src/main/resources/static/images/powers/godsent_generation.hover.png new file mode 100644 index 0000000..84d4776 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation.png b/src/main/resources/static/images/powers/godsent_generation.png new file mode 100644 index 0000000..6fc1514 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/godsent_generation_non_scaling.disabled.png new file mode 100644 index 0000000..3807664 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/godsent_generation_non_scaling.hover.png new file mode 100644 index 0000000..03764ec Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/godsent_generation_non_scaling.png b/src/main/resources/static/images/powers/godsent_generation_non_scaling.png new file mode 100644 index 0000000..c9b06d0 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/godsent_instant.disabled.png b/src/main/resources/static/images/powers/godsent_instant.disabled.png new file mode 100644 index 0000000..132a15d Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/godsent_instant.hover.png b/src/main/resources/static/images/powers/godsent_instant.hover.png new file mode 100644 index 0000000..ac6a189 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/godsent_instant.png b/src/main/resources/static/images/powers/godsent_instant.png new file mode 100644 index 0000000..ef95564 Binary files /dev/null and b/src/main/resources/static/images/powers/godsent_instant.png differ diff --git a/src/main/resources/static/images/powers/great_arming.disabled.png b/src/main/resources/static/images/powers/great_arming.disabled.png new file mode 100644 index 0000000..eba623c Binary files /dev/null and b/src/main/resources/static/images/powers/great_arming.disabled.png differ diff --git a/src/main/resources/static/images/powers/great_arming.hover.png b/src/main/resources/static/images/powers/great_arming.hover.png new file mode 100644 index 0000000..b4dfcd5 Binary files /dev/null and b/src/main/resources/static/images/powers/great_arming.hover.png differ diff --git a/src/main/resources/static/images/powers/great_arming.png b/src/main/resources/static/images/powers/great_arming.png new file mode 100644 index 0000000..5574a55 Binary files /dev/null and b/src/main/resources/static/images/powers/great_arming.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_athlete_boost.disabled.png b/src/main/resources/static/images/powers/grepolympia_athlete_boost.disabled.png new file mode 100644 index 0000000..6ba1bd0 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_athlete_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_athlete_boost.hover.png b/src/main/resources/static/images/powers/grepolympia_athlete_boost.hover.png new file mode 100644 index 0000000..33891ee Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_athlete_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_athlete_boost.png b/src/main/resources/static/images/powers/grepolympia_athlete_boost.png new file mode 100644 index 0000000..b0a7856 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_athlete_boost.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_1.disabled.png b/src/main/resources/static/images/powers/grepolympia_championship_1.disabled.png new file mode 100644 index 0000000..e4b3607 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_1.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_1.hover.png b/src/main/resources/static/images/powers/grepolympia_championship_1.hover.png new file mode 100644 index 0000000..6b52a5d Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_1.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_1.png b/src/main/resources/static/images/powers/grepolympia_championship_1.png new file mode 100644 index 0000000..040ae91 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_1.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_2.disabled.png b/src/main/resources/static/images/powers/grepolympia_championship_2.disabled.png new file mode 100644 index 0000000..5a28cb6 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_2.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_2.hover.png b/src/main/resources/static/images/powers/grepolympia_championship_2.hover.png new file mode 100644 index 0000000..a0d2d5c Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_2.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_2.png b/src/main/resources/static/images/powers/grepolympia_championship_2.png new file mode 100644 index 0000000..23f42b4 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_2.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_3.disabled.png b/src/main/resources/static/images/powers/grepolympia_championship_3.disabled.png new file mode 100644 index 0000000..e8483c3 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_3.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_3.hover.png b/src/main/resources/static/images/powers/grepolympia_championship_3.hover.png new file mode 100644 index 0000000..81a6093 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_3.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_3.png b/src/main/resources/static/images/powers/grepolympia_championship_3.png new file mode 100644 index 0000000..ab74a97 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_3.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_4.disabled.png b/src/main/resources/static/images/powers/grepolympia_championship_4.disabled.png new file mode 100644 index 0000000..c99b2f0 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_4.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_4.hover.png b/src/main/resources/static/images/powers/grepolympia_championship_4.hover.png new file mode 100644 index 0000000..d8dae19 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_4.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_championship_4.png b/src/main/resources/static/images/powers/grepolympia_championship_4.png new file mode 100644 index 0000000..f3bdc39 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_championship_4.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.disabled.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.disabled.png new file mode 100644 index 0000000..a0ba0dc Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.hover.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.hover.png new file mode 100644 index 0000000..83c5cc7 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.png new file mode 100644 index 0000000..21e54b0 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_merchant.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.disabled.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.disabled.png new file mode 100644 index 0000000..96e01af Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.hover.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.hover.png new file mode 100644 index 0000000..bd4f41c Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.png new file mode 100644 index 0000000..c596c4e Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_senses.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.disabled.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.disabled.png new file mode 100644 index 0000000..848d3bc Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.hover.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.hover.png new file mode 100644 index 0000000..6dc0bea Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.png new file mode 100644 index 0000000..713f57b Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_sword.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.disabled.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.disabled.png new file mode 100644 index 0000000..7a9e7ab Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.disabled.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.hover.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.hover.png new file mode 100644 index 0000000..6f61cbd Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.hover.png differ diff --git a/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.png b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.png new file mode 100644 index 0000000..8cdaf59 Binary files /dev/null and b/src/main/resources/static/images/powers/grepolympia_worldcup.olympic_torch.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation.disabled.png b/src/main/resources/static/images/powers/griffin_generation.disabled.png new file mode 100644 index 0000000..a0d3e0d Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation.hover.png b/src/main/resources/static/images/powers/griffin_generation.hover.png new file mode 100644 index 0000000..03c3d63 Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation.png b/src/main/resources/static/images/powers/griffin_generation.png new file mode 100644 index 0000000..2a8e685 Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/griffin_generation_non_scaling.disabled.png new file mode 100644 index 0000000..4f4837b Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/griffin_generation_non_scaling.hover.png new file mode 100644 index 0000000..cdbce1f Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/griffin_generation_non_scaling.png b/src/main/resources/static/images/powers/griffin_generation_non_scaling.png new file mode 100644 index 0000000..75e2cfa Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/griffin_instant.disabled.png b/src/main/resources/static/images/powers/griffin_instant.disabled.png new file mode 100644 index 0000000..c84cef3 Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/griffin_instant.hover.png b/src/main/resources/static/images/powers/griffin_instant.hover.png new file mode 100644 index 0000000..3e36051 Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/griffin_instant.png b/src/main/resources/static/images/powers/griffin_instant.png new file mode 100644 index 0000000..f8cdee6 Binary files /dev/null and b/src/main/resources/static/images/powers/griffin_instant.png differ diff --git a/src/main/resources/static/images/powers/happiness.disabled.png b/src/main/resources/static/images/powers/happiness.disabled.png new file mode 100644 index 0000000..520aaf7 Binary files /dev/null and b/src/main/resources/static/images/powers/happiness.disabled.png differ diff --git a/src/main/resources/static/images/powers/happiness.hover.png b/src/main/resources/static/images/powers/happiness.hover.png new file mode 100644 index 0000000..c0993ea Binary files /dev/null and b/src/main/resources/static/images/powers/happiness.hover.png differ diff --git a/src/main/resources/static/images/powers/happiness.png b/src/main/resources/static/images/powers/happiness.png new file mode 100644 index 0000000..a271995 Binary files /dev/null and b/src/main/resources/static/images/powers/happiness.png differ diff --git a/src/main/resources/static/images/powers/happy_folks.disabled.png b/src/main/resources/static/images/powers/happy_folks.disabled.png new file mode 100644 index 0000000..efba33f Binary files /dev/null and b/src/main/resources/static/images/powers/happy_folks.disabled.png differ diff --git a/src/main/resources/static/images/powers/happy_folks.hover.png b/src/main/resources/static/images/powers/happy_folks.hover.png new file mode 100644 index 0000000..ddb914c Binary files /dev/null and b/src/main/resources/static/images/powers/happy_folks.hover.png differ diff --git a/src/main/resources/static/images/powers/happy_folks.png b/src/main/resources/static/images/powers/happy_folks.png new file mode 100644 index 0000000..6bb9351 Binary files /dev/null and b/src/main/resources/static/images/powers/happy_folks.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation.disabled.png b/src/main/resources/static/images/powers/harpy_generation.disabled.png new file mode 100644 index 0000000..0f3dea3 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation.hover.png b/src/main/resources/static/images/powers/harpy_generation.hover.png new file mode 100644 index 0000000..0709e36 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation.png b/src/main/resources/static/images/powers/harpy_generation.png new file mode 100644 index 0000000..56e3c71 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/harpy_generation_non_scaling.disabled.png new file mode 100644 index 0000000..2789177 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/harpy_generation_non_scaling.hover.png new file mode 100644 index 0000000..ea340cf Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/harpy_generation_non_scaling.png b/src/main/resources/static/images/powers/harpy_generation_non_scaling.png new file mode 100644 index 0000000..8c6b250 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/harpy_instant.disabled.png b/src/main/resources/static/images/powers/harpy_instant.disabled.png new file mode 100644 index 0000000..673da3c Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/harpy_instant.hover.png b/src/main/resources/static/images/powers/harpy_instant.hover.png new file mode 100644 index 0000000..80ea278 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/harpy_instant.png b/src/main/resources/static/images/powers/harpy_instant.png new file mode 100644 index 0000000..d749628 Binary files /dev/null and b/src/main/resources/static/images/powers/harpy_instant.png differ diff --git a/src/main/resources/static/images/powers/help_of_the_nereids.disabled.png b/src/main/resources/static/images/powers/help_of_the_nereids.disabled.png new file mode 100644 index 0000000..1314f87 Binary files /dev/null and b/src/main/resources/static/images/powers/help_of_the_nereids.disabled.png differ diff --git a/src/main/resources/static/images/powers/help_of_the_nereids.hover.png b/src/main/resources/static/images/powers/help_of_the_nereids.hover.png new file mode 100644 index 0000000..e10187f Binary files /dev/null and b/src/main/resources/static/images/powers/help_of_the_nereids.hover.png differ diff --git a/src/main/resources/static/images/powers/help_of_the_nereids.png b/src/main/resources/static/images/powers/help_of_the_nereids.png new file mode 100644 index 0000000..89e8282 Binary files /dev/null and b/src/main/resources/static/images/powers/help_of_the_nereids.png differ diff --git a/src/main/resources/static/images/powers/hermes_boost.disabled.png b/src/main/resources/static/images/powers/hermes_boost.disabled.png new file mode 100644 index 0000000..7da2ea1 Binary files /dev/null and b/src/main/resources/static/images/powers/hermes_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/hermes_boost.hover.png b/src/main/resources/static/images/powers/hermes_boost.hover.png new file mode 100644 index 0000000..de9e026 Binary files /dev/null and b/src/main/resources/static/images/powers/hermes_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/hermes_boost.png b/src/main/resources/static/images/powers/hermes_boost.png new file mode 100644 index 0000000..eb775e9 Binary files /dev/null and b/src/main/resources/static/images/powers/hermes_boost.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation.disabled.png b/src/main/resources/static/images/powers/hoplite_generation.disabled.png new file mode 100644 index 0000000..fb76ea8 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation.hover.png b/src/main/resources/static/images/powers/hoplite_generation.hover.png new file mode 100644 index 0000000..2455374 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation.png b/src/main/resources/static/images/powers/hoplite_generation.png new file mode 100644 index 0000000..a86899a Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.disabled.png new file mode 100644 index 0000000..36e4025 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.hover.png new file mode 100644 index 0000000..e4cc797 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/hoplite_generation_non_scaling.png b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.png new file mode 100644 index 0000000..b53be81 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/hoplite_instant.disabled.png b/src/main/resources/static/images/powers/hoplite_instant.disabled.png new file mode 100644 index 0000000..cfa846b Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/hoplite_instant.hover.png b/src/main/resources/static/images/powers/hoplite_instant.hover.png new file mode 100644 index 0000000..d26e39c Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/hoplite_instant.png b/src/main/resources/static/images/powers/hoplite_instant.png new file mode 100644 index 0000000..078fc07 Binary files /dev/null and b/src/main/resources/static/images/powers/hoplite_instant.png differ diff --git a/src/main/resources/static/images/powers/hymn_to_aphrodite.disabled.png b/src/main/resources/static/images/powers/hymn_to_aphrodite.disabled.png new file mode 100644 index 0000000..01c684c Binary files /dev/null and b/src/main/resources/static/images/powers/hymn_to_aphrodite.disabled.png differ diff --git a/src/main/resources/static/images/powers/hymn_to_aphrodite.hover.png b/src/main/resources/static/images/powers/hymn_to_aphrodite.hover.png new file mode 100644 index 0000000..e51508a Binary files /dev/null and b/src/main/resources/static/images/powers/hymn_to_aphrodite.hover.png differ diff --git a/src/main/resources/static/images/powers/hymn_to_aphrodite.png b/src/main/resources/static/images/powers/hymn_to_aphrodite.png new file mode 100644 index 0000000..b2d0a27 Binary files /dev/null and b/src/main/resources/static/images/powers/hymn_to_aphrodite.png differ diff --git a/src/main/resources/static/images/powers/illusion.disabled.png b/src/main/resources/static/images/powers/illusion.disabled.png new file mode 100644 index 0000000..16a11d3 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion.disabled.png differ diff --git a/src/main/resources/static/images/powers/illusion.hover.png b/src/main/resources/static/images/powers/illusion.hover.png new file mode 100644 index 0000000..e8da4f0 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion.hover.png differ diff --git a/src/main/resources/static/images/powers/illusion.png b/src/main/resources/static/images/powers/illusion.png new file mode 100644 index 0000000..e616955 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion.png differ diff --git a/src/main/resources/static/images/powers/illusion_defense_penalty.disabled.png b/src/main/resources/static/images/powers/illusion_defense_penalty.disabled.png new file mode 100644 index 0000000..c3c4790 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion_defense_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/illusion_defense_penalty.hover.png b/src/main/resources/static/images/powers/illusion_defense_penalty.hover.png new file mode 100644 index 0000000..ff217d2 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion_defense_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/illusion_defense_penalty.png b/src/main/resources/static/images/powers/illusion_defense_penalty.png new file mode 100644 index 0000000..cd33873 Binary files /dev/null and b/src/main/resources/static/images/powers/illusion_defense_penalty.png differ diff --git a/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.disabled.png new file mode 100644 index 0000000..956c82e Binary files /dev/null and b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.hover.png new file mode 100644 index 0000000..c0f14d7 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.png b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.png new file mode 100644 index 0000000..04d8537 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_currency_crm.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/instant_favor.disabled.png b/src/main/resources/static/images/powers/instant_favor.disabled.png new file mode 100644 index 0000000..8f69df8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_favor.hover.png b/src/main/resources/static/images/powers/instant_favor.hover.png new file mode 100644 index 0000000..1cef738 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_favor.png b/src/main/resources/static/images/powers/instant_favor.png new file mode 100644 index 0000000..71536cf Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor.png differ diff --git a/src/main/resources/static/images/powers/instant_favor_package.disabled.png b/src/main/resources/static/images/powers/instant_favor_package.disabled.png new file mode 100644 index 0000000..27f5039 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor_package.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_favor_package.hover.png b/src/main/resources/static/images/powers/instant_favor_package.hover.png new file mode 100644 index 0000000..a82d4a8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor_package.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_favor_package.png b/src/main/resources/static/images/powers/instant_favor_package.png new file mode 100644 index 0000000..9dd634f Binary files /dev/null and b/src/main/resources/static/images/powers/instant_favor_package.png differ diff --git a/src/main/resources/static/images/powers/instant_gold.disabled.png b/src/main/resources/static/images/powers/instant_gold.disabled.png new file mode 100644 index 0000000..1c380b1 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_gold.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_gold.hover.png b/src/main/resources/static/images/powers/instant_gold.hover.png new file mode 100644 index 0000000..8ec5a79 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_gold.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_gold.png b/src/main/resources/static/images/powers/instant_gold.png new file mode 100644 index 0000000..1697e22 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_gold.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_all.disabled.png b/src/main/resources/static/images/powers/instant_resources_all.disabled.png new file mode 100644 index 0000000..ca8223c Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_all.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_all.hover.png b/src/main/resources/static/images/powers/instant_resources_all.hover.png new file mode 100644 index 0000000..e238877 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_all.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_all.png b/src/main/resources/static/images/powers/instant_resources_all.png new file mode 100644 index 0000000..b4af78e Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_all.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_all.disabled.png b/src/main/resources/static/images/powers/instant_resources_epic_all.disabled.png new file mode 100644 index 0000000..711a564 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_all.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_all.hover.png b/src/main/resources/static/images/powers/instant_resources_epic_all.hover.png new file mode 100644 index 0000000..6edd57d Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_all.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_all.png b/src/main/resources/static/images/powers/instant_resources_epic_all.png new file mode 100644 index 0000000..10664d8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_all.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_iron.disabled.png b/src/main/resources/static/images/powers/instant_resources_epic_iron.disabled.png new file mode 100644 index 0000000..bdafca8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_iron.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_iron.hover.png b/src/main/resources/static/images/powers/instant_resources_epic_iron.hover.png new file mode 100644 index 0000000..ea58c0d Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_iron.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_iron.png b/src/main/resources/static/images/powers/instant_resources_epic_iron.png new file mode 100644 index 0000000..710adb8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_iron.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_stone.disabled.png b/src/main/resources/static/images/powers/instant_resources_epic_stone.disabled.png new file mode 100644 index 0000000..59c1776 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_stone.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_stone.hover.png b/src/main/resources/static/images/powers/instant_resources_epic_stone.hover.png new file mode 100644 index 0000000..d8e0442 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_stone.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_stone.png b/src/main/resources/static/images/powers/instant_resources_epic_stone.png new file mode 100644 index 0000000..a78aef9 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_stone.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_wood.disabled.png b/src/main/resources/static/images/powers/instant_resources_epic_wood.disabled.png new file mode 100644 index 0000000..c9c0ad3 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_wood.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_wood.hover.png b/src/main/resources/static/images/powers/instant_resources_epic_wood.hover.png new file mode 100644 index 0000000..72854bb Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_wood.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_epic_wood.png b/src/main/resources/static/images/powers/instant_resources_epic_wood.png new file mode 100644 index 0000000..b51e288 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_epic_wood.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_iron.disabled.png b/src/main/resources/static/images/powers/instant_resources_iron.disabled.png new file mode 100644 index 0000000..1affa79 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_iron.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_iron.hover.png b/src/main/resources/static/images/powers/instant_resources_iron.hover.png new file mode 100644 index 0000000..5f5a217 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_iron.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_iron.png b/src/main/resources/static/images/powers/instant_resources_iron.png new file mode 100644 index 0000000..6f9258c Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_iron.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_mermaid.disabled.png b/src/main/resources/static/images/powers/instant_resources_mermaid.disabled.png new file mode 100644 index 0000000..c65a47c Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_mermaid.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_mermaid.hover.png b/src/main/resources/static/images/powers/instant_resources_mermaid.hover.png new file mode 100644 index 0000000..6124744 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_mermaid.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_mermaid.png b/src/main/resources/static/images/powers/instant_resources_mermaid.png new file mode 100644 index 0000000..37c98c3 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_mermaid.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_package.disabled.png b/src/main/resources/static/images/powers/instant_resources_package.disabled.png new file mode 100644 index 0000000..6997436 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_package.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_package.hover.png b/src/main/resources/static/images/powers/instant_resources_package.hover.png new file mode 100644 index 0000000..aa3ded6 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_package.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_package.png b/src/main/resources/static/images/powers/instant_resources_package.png new file mode 100644 index 0000000..9dc55a8 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_package.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_all.disabled.png b/src/main/resources/static/images/powers/instant_resources_rare_all.disabled.png new file mode 100644 index 0000000..4849aa3 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_all.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_all.hover.png b/src/main/resources/static/images/powers/instant_resources_rare_all.hover.png new file mode 100644 index 0000000..3990443 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_all.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_all.png b/src/main/resources/static/images/powers/instant_resources_rare_all.png new file mode 100644 index 0000000..c5f592a Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_all.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_iron.disabled.png b/src/main/resources/static/images/powers/instant_resources_rare_iron.disabled.png new file mode 100644 index 0000000..8400093 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_iron.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_iron.hover.png b/src/main/resources/static/images/powers/instant_resources_rare_iron.hover.png new file mode 100644 index 0000000..dbc7433 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_iron.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_iron.png b/src/main/resources/static/images/powers/instant_resources_rare_iron.png new file mode 100644 index 0000000..b7d9fa0 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_iron.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_stone.disabled.png b/src/main/resources/static/images/powers/instant_resources_rare_stone.disabled.png new file mode 100644 index 0000000..45131c7 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_stone.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_stone.hover.png b/src/main/resources/static/images/powers/instant_resources_rare_stone.hover.png new file mode 100644 index 0000000..b5dcc19 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_stone.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_stone.png b/src/main/resources/static/images/powers/instant_resources_rare_stone.png new file mode 100644 index 0000000..6b59aac Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_stone.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_wood.disabled.png b/src/main/resources/static/images/powers/instant_resources_rare_wood.disabled.png new file mode 100644 index 0000000..be82f68 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_wood.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_wood.hover.png b/src/main/resources/static/images/powers/instant_resources_rare_wood.hover.png new file mode 100644 index 0000000..6f5b89d Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_wood.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_rare_wood.png b/src/main/resources/static/images/powers/instant_resources_rare_wood.png new file mode 100644 index 0000000..c5eaf6d Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_rare_wood.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_stone.disabled.png b/src/main/resources/static/images/powers/instant_resources_stone.disabled.png new file mode 100644 index 0000000..0c3856b Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_stone.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_stone.hover.png b/src/main/resources/static/images/powers/instant_resources_stone.hover.png new file mode 100644 index 0000000..212b044 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_stone.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_stone.png b/src/main/resources/static/images/powers/instant_resources_stone.png new file mode 100644 index 0000000..0b326df Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_stone.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_wood.disabled.png b/src/main/resources/static/images/powers/instant_resources_wood.disabled.png new file mode 100644 index 0000000..89cdf9a Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_wood.disabled.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_wood.hover.png b/src/main/resources/static/images/powers/instant_resources_wood.hover.png new file mode 100644 index 0000000..670ac17 Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_wood.hover.png differ diff --git a/src/main/resources/static/images/powers/instant_resources_wood.png b/src/main/resources/static/images/powers/instant_resources_wood.png new file mode 100644 index 0000000..4c2f62a Binary files /dev/null and b/src/main/resources/static/images/powers/instant_resources_wood.png differ diff --git a/src/main/resources/static/images/powers/iron_production_penalty.disabled.png b/src/main/resources/static/images/powers/iron_production_penalty.disabled.png new file mode 100644 index 0000000..775bd8d Binary files /dev/null and b/src/main/resources/static/images/powers/iron_production_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/iron_production_penalty.hover.png b/src/main/resources/static/images/powers/iron_production_penalty.hover.png new file mode 100644 index 0000000..5090de1 Binary files /dev/null and b/src/main/resources/static/images/powers/iron_production_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/iron_production_penalty.png b/src/main/resources/static/images/powers/iron_production_penalty.png new file mode 100644 index 0000000..eb6f2a9 Binary files /dev/null and b/src/main/resources/static/images/powers/iron_production_penalty.png differ diff --git a/src/main/resources/static/images/powers/kingly_gift.disabled.png b/src/main/resources/static/images/powers/kingly_gift.disabled.png new file mode 100644 index 0000000..b56a7ab Binary files /dev/null and b/src/main/resources/static/images/powers/kingly_gift.disabled.png differ diff --git a/src/main/resources/static/images/powers/kingly_gift.hover.png b/src/main/resources/static/images/powers/kingly_gift.hover.png new file mode 100644 index 0000000..373eec3 Binary files /dev/null and b/src/main/resources/static/images/powers/kingly_gift.hover.png differ diff --git a/src/main/resources/static/images/powers/kingly_gift.png b/src/main/resources/static/images/powers/kingly_gift.png new file mode 100644 index 0000000..ca280f4 Binary files /dev/null and b/src/main/resources/static/images/powers/kingly_gift.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation.disabled.png b/src/main/resources/static/images/powers/ladon_generation.disabled.png new file mode 100644 index 0000000..e3714ee Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation.hover.png b/src/main/resources/static/images/powers/ladon_generation.hover.png new file mode 100644 index 0000000..abdc925 Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation.png b/src/main/resources/static/images/powers/ladon_generation.png new file mode 100644 index 0000000..57b470a Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/ladon_generation_non_scaling.disabled.png new file mode 100644 index 0000000..e0812db Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/ladon_generation_non_scaling.hover.png new file mode 100644 index 0000000..d10cff2 Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/ladon_generation_non_scaling.png b/src/main/resources/static/images/powers/ladon_generation_non_scaling.png new file mode 100644 index 0000000..66d5ebc Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/ladon_instant.disabled.png b/src/main/resources/static/images/powers/ladon_instant.disabled.png new file mode 100644 index 0000000..b129a0f Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/ladon_instant.hover.png b/src/main/resources/static/images/powers/ladon_instant.hover.png new file mode 100644 index 0000000..9cb1500 Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/ladon_instant.png b/src/main/resources/static/images/powers/ladon_instant.png new file mode 100644 index 0000000..5be5e35 Binary files /dev/null and b/src/main/resources/static/images/powers/ladon_instant.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_epic.disabled.png b/src/main/resources/static/images/powers/land_battle_strategy_epic.disabled.png new file mode 100644 index 0000000..3d4111b Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_epic.disabled.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_epic.hover.png b/src/main/resources/static/images/powers/land_battle_strategy_epic.hover.png new file mode 100644 index 0000000..c420633 Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_epic.hover.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_epic.png b/src/main/resources/static/images/powers/land_battle_strategy_epic.png new file mode 100644 index 0000000..77cf02f Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_epic.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_rare.disabled.png b/src/main/resources/static/images/powers/land_battle_strategy_rare.disabled.png new file mode 100644 index 0000000..7252e53 Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_rare.disabled.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_rare.hover.png b/src/main/resources/static/images/powers/land_battle_strategy_rare.hover.png new file mode 100644 index 0000000..a3431ca Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_rare.hover.png differ diff --git a/src/main/resources/static/images/powers/land_battle_strategy_rare.png b/src/main/resources/static/images/powers/land_battle_strategy_rare.png new file mode 100644 index 0000000..db5be0b Binary files /dev/null and b/src/main/resources/static/images/powers/land_battle_strategy_rare.png differ diff --git a/src/main/resources/static/images/powers/large_temple_powers.disabled.png b/src/main/resources/static/images/powers/large_temple_powers.disabled.png new file mode 100644 index 0000000..3020bba Binary files /dev/null and b/src/main/resources/static/images/powers/large_temple_powers.disabled.png differ diff --git a/src/main/resources/static/images/powers/large_temple_powers.hover.png b/src/main/resources/static/images/powers/large_temple_powers.hover.png new file mode 100644 index 0000000..a901fae Binary files /dev/null and b/src/main/resources/static/images/powers/large_temple_powers.hover.png differ diff --git a/src/main/resources/static/images/powers/large_temple_powers.png b/src/main/resources/static/images/powers/large_temple_powers.png new file mode 100644 index 0000000..0402241 Binary files /dev/null and b/src/main/resources/static/images/powers/large_temple_powers.png differ diff --git a/src/main/resources/static/images/powers/longterm_all_boost.disabled.png b/src/main/resources/static/images/powers/longterm_all_boost.disabled.png new file mode 100644 index 0000000..07dcfb5 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_all_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_all_boost.hover.png b/src/main/resources/static/images/powers/longterm_all_boost.hover.png new file mode 100644 index 0000000..f2c631a Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_all_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_all_boost.png b/src/main/resources/static/images/powers/longterm_all_boost.png new file mode 100644 index 0000000..e0dc3f0 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_all_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_attack_boost.disabled.png b/src/main/resources/static/images/powers/longterm_attack_boost.disabled.png new file mode 100644 index 0000000..7a66908 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_attack_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_attack_boost.hover.png b/src/main/resources/static/images/powers/longterm_attack_boost.hover.png new file mode 100644 index 0000000..ea82058 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_attack_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_attack_boost.png b/src/main/resources/static/images/powers/longterm_attack_boost.png new file mode 100644 index 0000000..e8664b4 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_attack_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_defense_boost.disabled.png b/src/main/resources/static/images/powers/longterm_defense_boost.disabled.png new file mode 100644 index 0000000..0e44f50 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_defense_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_defense_boost.hover.png b/src/main/resources/static/images/powers/longterm_defense_boost.hover.png new file mode 100644 index 0000000..b8d4f1b Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_defense_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_defense_boost.png b/src/main/resources/static/images/powers/longterm_defense_boost.png new file mode 100644 index 0000000..f884227 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_defense_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_festival_resource_boost.disabled.png b/src/main/resources/static/images/powers/longterm_festival_resource_boost.disabled.png new file mode 100644 index 0000000..fbf2234 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_festival_resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_festival_resource_boost.hover.png b/src/main/resources/static/images/powers/longterm_festival_resource_boost.hover.png new file mode 100644 index 0000000..5a0f411 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_festival_resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_festival_resource_boost.png b/src/main/resources/static/images/powers/longterm_festival_resource_boost.png new file mode 100644 index 0000000..474c966 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_festival_resource_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_iron_boost.disabled.png b/src/main/resources/static/images/powers/longterm_iron_boost.disabled.png new file mode 100644 index 0000000..d12401b Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_iron_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_iron_boost.hover.png b/src/main/resources/static/images/powers/longterm_iron_boost.hover.png new file mode 100644 index 0000000..159efb4 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_iron_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_iron_boost.png b/src/main/resources/static/images/powers/longterm_iron_boost.png new file mode 100644 index 0000000..d280283 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_iron_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_stone_boost.disabled.png b/src/main/resources/static/images/powers/longterm_stone_boost.disabled.png new file mode 100644 index 0000000..776e595 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_stone_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_stone_boost.hover.png b/src/main/resources/static/images/powers/longterm_stone_boost.hover.png new file mode 100644 index 0000000..14f4cb1 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_stone_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_stone_boost.png b/src/main/resources/static/images/powers/longterm_stone_boost.png new file mode 100644 index 0000000..96485f6 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_stone_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_trade_speed_boost.disabled.png b/src/main/resources/static/images/powers/longterm_trade_speed_boost.disabled.png new file mode 100644 index 0000000..c742bab Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_trade_speed_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_trade_speed_boost.hover.png b/src/main/resources/static/images/powers/longterm_trade_speed_boost.hover.png new file mode 100644 index 0000000..ecb2600 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_trade_speed_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_trade_speed_boost.png b/src/main/resources/static/images/powers/longterm_trade_speed_boost.png new file mode 100644 index 0000000..b7e2f16 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_trade_speed_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_unit_order_boost.disabled.png b/src/main/resources/static/images/powers/longterm_unit_order_boost.disabled.png new file mode 100644 index 0000000..9738f74 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_unit_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_unit_order_boost.hover.png b/src/main/resources/static/images/powers/longterm_unit_order_boost.hover.png new file mode 100644 index 0000000..68884dd Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_unit_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_unit_order_boost.png b/src/main/resources/static/images/powers/longterm_unit_order_boost.png new file mode 100644 index 0000000..011770c Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_unit_order_boost.png differ diff --git a/src/main/resources/static/images/powers/longterm_wood_boost.disabled.png b/src/main/resources/static/images/powers/longterm_wood_boost.disabled.png new file mode 100644 index 0000000..50fed4d Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_wood_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/longterm_wood_boost.hover.png b/src/main/resources/static/images/powers/longterm_wood_boost.hover.png new file mode 100644 index 0000000..4cef178 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_wood_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/longterm_wood_boost.png b/src/main/resources/static/images/powers/longterm_wood_boost.png new file mode 100644 index 0000000..e1f74a8 Binary files /dev/null and b/src/main/resources/static/images/powers/longterm_wood_boost.png differ diff --git a/src/main/resources/static/images/powers/loyalty_loss.disabled.png b/src/main/resources/static/images/powers/loyalty_loss.disabled.png new file mode 100644 index 0000000..9d65fda Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_loss.disabled.png differ diff --git a/src/main/resources/static/images/powers/loyalty_loss.hover.png b/src/main/resources/static/images/powers/loyalty_loss.hover.png new file mode 100644 index 0000000..60d1866 Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_loss.hover.png differ diff --git a/src/main/resources/static/images/powers/loyalty_loss.png b/src/main/resources/static/images/powers/loyalty_loss.png new file mode 100644 index 0000000..dbe3dcf Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_loss.png differ diff --git a/src/main/resources/static/images/powers/loyalty_resource_boost.disabled.png b/src/main/resources/static/images/powers/loyalty_resource_boost.disabled.png new file mode 100644 index 0000000..98a4e35 Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/loyalty_resource_boost.hover.png b/src/main/resources/static/images/powers/loyalty_resource_boost.hover.png new file mode 100644 index 0000000..4b49bc0 Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/loyalty_resource_boost.png b/src/main/resources/static/images/powers/loyalty_resource_boost.png new file mode 100644 index 0000000..77b93e4 Binary files /dev/null and b/src/main/resources/static/images/powers/loyalty_resource_boost.png differ diff --git a/src/main/resources/static/images/powers/luxurious_residence.disabled.png b/src/main/resources/static/images/powers/luxurious_residence.disabled.png new file mode 100644 index 0000000..fad957a Binary files /dev/null and b/src/main/resources/static/images/powers/luxurious_residence.disabled.png differ diff --git a/src/main/resources/static/images/powers/luxurious_residence.hover.png b/src/main/resources/static/images/powers/luxurious_residence.hover.png new file mode 100644 index 0000000..d40325b Binary files /dev/null and b/src/main/resources/static/images/powers/luxurious_residence.hover.png differ diff --git a/src/main/resources/static/images/powers/luxurious_residence.png b/src/main/resources/static/images/powers/luxurious_residence.png new file mode 100644 index 0000000..b7ca480 Binary files /dev/null and b/src/main/resources/static/images/powers/luxurious_residence.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation.disabled.png b/src/main/resources/static/images/powers/manticore_generation.disabled.png new file mode 100644 index 0000000..1f9ec28 Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation.hover.png b/src/main/resources/static/images/powers/manticore_generation.hover.png new file mode 100644 index 0000000..ab8858d Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation.png b/src/main/resources/static/images/powers/manticore_generation.png new file mode 100644 index 0000000..cdf355e Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/manticore_generation_non_scaling.disabled.png new file mode 100644 index 0000000..4e9ebad Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/manticore_generation_non_scaling.hover.png new file mode 100644 index 0000000..29ef1a1 Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/manticore_generation_non_scaling.png b/src/main/resources/static/images/powers/manticore_generation_non_scaling.png new file mode 100644 index 0000000..051a8e3 Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/manticore_instant.disabled.png b/src/main/resources/static/images/powers/manticore_instant.disabled.png new file mode 100644 index 0000000..b8dd50b Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/manticore_instant.hover.png b/src/main/resources/static/images/powers/manticore_instant.hover.png new file mode 100644 index 0000000..e8567fa Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/manticore_instant.png b/src/main/resources/static/images/powers/manticore_instant.png new file mode 100644 index 0000000..000f526 Binary files /dev/null and b/src/main/resources/static/images/powers/manticore_instant.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation.disabled.png b/src/main/resources/static/images/powers/medusa_generation.disabled.png new file mode 100644 index 0000000..15b30cd Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation.hover.png b/src/main/resources/static/images/powers/medusa_generation.hover.png new file mode 100644 index 0000000..0363fe5 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation.png b/src/main/resources/static/images/powers/medusa_generation.png new file mode 100644 index 0000000..ffbf450 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/medusa_generation_non_scaling.disabled.png new file mode 100644 index 0000000..30bb7f2 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/medusa_generation_non_scaling.hover.png new file mode 100644 index 0000000..22221da Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/medusa_generation_non_scaling.png b/src/main/resources/static/images/powers/medusa_generation_non_scaling.png new file mode 100644 index 0000000..f8f78c9 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/medusa_instant.disabled.png b/src/main/resources/static/images/powers/medusa_instant.disabled.png new file mode 100644 index 0000000..02cfd53 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/medusa_instant.hover.png b/src/main/resources/static/images/powers/medusa_instant.hover.png new file mode 100644 index 0000000..b223896 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/medusa_instant.png b/src/main/resources/static/images/powers/medusa_instant.png new file mode 100644 index 0000000..6fabf39 Binary files /dev/null and b/src/main/resources/static/images/powers/medusa_instant.png differ diff --git a/src/main/resources/static/images/powers/militia_generation.disabled.png b/src/main/resources/static/images/powers/militia_generation.disabled.png new file mode 100644 index 0000000..e980700 Binary files /dev/null and b/src/main/resources/static/images/powers/militia_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/militia_generation.hover.png b/src/main/resources/static/images/powers/militia_generation.hover.png new file mode 100644 index 0000000..8435391 Binary files /dev/null and b/src/main/resources/static/images/powers/militia_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/militia_generation.png b/src/main/resources/static/images/powers/militia_generation.png new file mode 100644 index 0000000..a4157b2 Binary files /dev/null and b/src/main/resources/static/images/powers/militia_generation.png differ diff --git a/src/main/resources/static/images/powers/militia_instant.disabled.png b/src/main/resources/static/images/powers/militia_instant.disabled.png new file mode 100644 index 0000000..dda7e6b Binary files /dev/null and b/src/main/resources/static/images/powers/militia_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/militia_instant.hover.png b/src/main/resources/static/images/powers/militia_instant.hover.png new file mode 100644 index 0000000..93d8d73 Binary files /dev/null and b/src/main/resources/static/images/powers/militia_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/militia_instant.png b/src/main/resources/static/images/powers/militia_instant.png new file mode 100644 index 0000000..ded9672 Binary files /dev/null and b/src/main/resources/static/images/powers/militia_instant.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation.disabled.png b/src/main/resources/static/images/powers/minotaur_generation.disabled.png new file mode 100644 index 0000000..17ac214 Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation.hover.png b/src/main/resources/static/images/powers/minotaur_generation.hover.png new file mode 100644 index 0000000..45396d6 Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation.png b/src/main/resources/static/images/powers/minotaur_generation.png new file mode 100644 index 0000000..0c874d1 Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.disabled.png new file mode 100644 index 0000000..11f5e7e Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.hover.png new file mode 100644 index 0000000..1b43cd8 Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/minotaur_generation_non_scaling.png b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.png new file mode 100644 index 0000000..b8c533b Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/minotaur_instant.disabled.png b/src/main/resources/static/images/powers/minotaur_instant.disabled.png new file mode 100644 index 0000000..8cc489c Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/minotaur_instant.hover.png b/src/main/resources/static/images/powers/minotaur_instant.hover.png new file mode 100644 index 0000000..9033ae2 Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/minotaur_instant.png b/src/main/resources/static/images/powers/minotaur_instant.png new file mode 100644 index 0000000..98cbfbe Binary files /dev/null and b/src/main/resources/static/images/powers/minotaur_instant.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.disabled.png b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.disabled.png new file mode 100644 index 0000000..ee4df5b Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.hover.png b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.hover.png new file mode 100644 index 0000000..4f4dad2 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.png b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.png new file mode 100644 index 0000000..2b4ffa8 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missions_dionysia.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.disabled.png new file mode 100644 index 0000000..94570b9 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.hover.png new file mode 100644 index 0000000..8336d0d Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.png b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.png new file mode 100644 index 0000000..df3f12d Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_1.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.disabled.png b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.disabled.png new file mode 100644 index 0000000..890c89c Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.hover.png b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.hover.png new file mode 100644 index 0000000..7285aed Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.png b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.png new file mode 100644 index 0000000..c9b1239 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missions_dionysia.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.disabled.png new file mode 100644 index 0000000..f51c659 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.hover.png new file mode 100644 index 0000000..2c4daad Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.png b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.png new file mode 100644 index 0000000..62ccd5c Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_2.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.disabled.png b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.disabled.png new file mode 100644 index 0000000..e8a190b Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.hover.png b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.hover.png new file mode 100644 index 0000000..004d692 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.png b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.png new file mode 100644 index 0000000..b5b6783 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missions_dionysia.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.disabled.png new file mode 100644 index 0000000..90536db Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.hover.png new file mode 100644 index 0000000..9d65bcf Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.png b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.png new file mode 100644 index 0000000..50c8d56 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_3.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.disabled.png b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.disabled.png new file mode 100644 index 0000000..61072cc Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.hover.png b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.hover.png new file mode 100644 index 0000000..71a5186 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.png b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.png new file mode 100644 index 0000000..d90dadc Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missions_dionysia.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.disabled.png new file mode 100644 index 0000000..66a6538 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.hover.png new file mode 100644 index 0000000..1b2c1e2 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.png b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.png new file mode 100644 index 0000000..aed76b5 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_power_4.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.disabled.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.disabled.png new file mode 100644 index 0000000..3aaf354 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.hover.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.hover.png new file mode 100644 index 0000000..b0e71ce Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.png new file mode 100644 index 0000000..fc737bf Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missions_dionysia.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.disabled.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.disabled.png new file mode 100644 index 0000000..92406df Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.disabled.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.hover.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.hover.png new file mode 100644 index 0000000..4386290 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.hover.png differ diff --git a/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.png b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.png new file mode 100644 index 0000000..b87fd40 Binary files /dev/null and b/src/main/resources/static/images/powers/missions_reduce_ritual_cooldown.missionsskinpandora.png differ diff --git a/src/main/resources/static/images/powers/mourning.disabled.png b/src/main/resources/static/images/powers/mourning.disabled.png new file mode 100644 index 0000000..4baba76 Binary files /dev/null and b/src/main/resources/static/images/powers/mourning.disabled.png differ diff --git a/src/main/resources/static/images/powers/mourning.hover.png b/src/main/resources/static/images/powers/mourning.hover.png new file mode 100644 index 0000000..e18ccb4 Binary files /dev/null and b/src/main/resources/static/images/powers/mourning.hover.png differ diff --git a/src/main/resources/static/images/powers/mourning.png b/src/main/resources/static/images/powers/mourning.png new file mode 100644 index 0000000..0b43af9 Binary files /dev/null and b/src/main/resources/static/images/powers/mourning.png differ diff --git a/src/main/resources/static/images/powers/myrmidion_attack.disabled.png b/src/main/resources/static/images/powers/myrmidion_attack.disabled.png new file mode 100644 index 0000000..4fdb7a3 Binary files /dev/null and b/src/main/resources/static/images/powers/myrmidion_attack.disabled.png differ diff --git a/src/main/resources/static/images/powers/myrmidion_attack.hover.png b/src/main/resources/static/images/powers/myrmidion_attack.hover.png new file mode 100644 index 0000000..30489c2 Binary files /dev/null and b/src/main/resources/static/images/powers/myrmidion_attack.hover.png differ diff --git a/src/main/resources/static/images/powers/myrmidion_attack.png b/src/main/resources/static/images/powers/myrmidion_attack.png new file mode 100644 index 0000000..cd77d6f Binary files /dev/null and b/src/main/resources/static/images/powers/myrmidion_attack.png differ diff --git a/src/main/resources/static/images/powers/narcissism.disabled.png b/src/main/resources/static/images/powers/narcissism.disabled.png new file mode 100644 index 0000000..388a241 Binary files /dev/null and b/src/main/resources/static/images/powers/narcissism.disabled.png differ diff --git a/src/main/resources/static/images/powers/narcissism.hover.png b/src/main/resources/static/images/powers/narcissism.hover.png new file mode 100644 index 0000000..fa7ce8c Binary files /dev/null and b/src/main/resources/static/images/powers/narcissism.hover.png differ diff --git a/src/main/resources/static/images/powers/narcissism.png b/src/main/resources/static/images/powers/narcissism.png new file mode 100644 index 0000000..2d90f35 Binary files /dev/null and b/src/main/resources/static/images/powers/narcissism.png differ diff --git a/src/main/resources/static/images/powers/natures_gift.disabled.png b/src/main/resources/static/images/powers/natures_gift.disabled.png new file mode 100644 index 0000000..a110793 Binary files /dev/null and b/src/main/resources/static/images/powers/natures_gift.disabled.png differ diff --git a/src/main/resources/static/images/powers/natures_gift.hover.png b/src/main/resources/static/images/powers/natures_gift.hover.png new file mode 100644 index 0000000..64cfea3 Binary files /dev/null and b/src/main/resources/static/images/powers/natures_gift.hover.png differ diff --git a/src/main/resources/static/images/powers/natures_gift.png b/src/main/resources/static/images/powers/natures_gift.png new file mode 100644 index 0000000..4805f97 Binary files /dev/null and b/src/main/resources/static/images/powers/natures_gift.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_epic.disabled.png b/src/main/resources/static/images/powers/naval_battle_strategy_epic.disabled.png new file mode 100644 index 0000000..49fc54a Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_epic.disabled.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_epic.hover.png b/src/main/resources/static/images/powers/naval_battle_strategy_epic.hover.png new file mode 100644 index 0000000..a8db190 Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_epic.hover.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_epic.png b/src/main/resources/static/images/powers/naval_battle_strategy_epic.png new file mode 100644 index 0000000..6f3bb38 Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_epic.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_rare.disabled.png b/src/main/resources/static/images/powers/naval_battle_strategy_rare.disabled.png new file mode 100644 index 0000000..b64c6d9 Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_rare.disabled.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_rare.hover.png b/src/main/resources/static/images/powers/naval_battle_strategy_rare.hover.png new file mode 100644 index 0000000..996b6e7 Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_rare.hover.png differ diff --git a/src/main/resources/static/images/powers/naval_battle_strategy_rare.png b/src/main/resources/static/images/powers/naval_battle_strategy_rare.png new file mode 100644 index 0000000..94e1555 Binary files /dev/null and b/src/main/resources/static/images/powers/naval_battle_strategy_rare.png differ diff --git a/src/main/resources/static/images/powers/nwot.wheel_free_refill.disabled.png b/src/main/resources/static/images/powers/nwot.wheel_free_refill.disabled.png new file mode 100644 index 0000000..990895d Binary files /dev/null and b/src/main/resources/static/images/powers/nwot.wheel_free_refill.disabled.png differ diff --git a/src/main/resources/static/images/powers/nwot.wheel_free_refill.hover.png b/src/main/resources/static/images/powers/nwot.wheel_free_refill.hover.png new file mode 100644 index 0000000..73e10a5 Binary files /dev/null and b/src/main/resources/static/images/powers/nwot.wheel_free_refill.hover.png differ diff --git a/src/main/resources/static/images/powers/nwot.wheel_free_refill.png b/src/main/resources/static/images/powers/nwot.wheel_free_refill.png new file mode 100644 index 0000000..ffe0d98 Binary files /dev/null and b/src/main/resources/static/images/powers/nwot.wheel_free_refill.png differ diff --git a/src/main/resources/static/images/powers/olympic_experience.disabled.png b/src/main/resources/static/images/powers/olympic_experience.disabled.png new file mode 100644 index 0000000..231d8a0 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_experience.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_experience.hover.png b/src/main/resources/static/images/powers/olympic_experience.hover.png new file mode 100644 index 0000000..c2627b6 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_experience.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_experience.png b/src/main/resources/static/images/powers/olympic_experience.png new file mode 100644 index 0000000..14c9b34 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_experience.png differ diff --git a/src/main/resources/static/images/powers/olympic_merchant.disabled.png b/src/main/resources/static/images/powers/olympic_merchant.disabled.png new file mode 100644 index 0000000..b2356ea Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_merchant.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_merchant.hover.png b/src/main/resources/static/images/powers/olympic_merchant.hover.png new file mode 100644 index 0000000..a767387 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_merchant.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_merchant.png b/src/main/resources/static/images/powers/olympic_merchant.png new file mode 100644 index 0000000..2209aa5 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_merchant.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.disabled.png b/src/main/resources/static/images/powers/olympic_senses.disabled.png new file mode 100644 index 0000000..7c0302e Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.disabled.png b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.disabled.png new file mode 100644 index 0000000..7c0302e Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.hover.png b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.hover.png new file mode 100644 index 0000000..5ebeb05 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.png b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.png new file mode 100644 index 0000000..1411410 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.grepolympia_summer.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.hover.png b/src/main/resources/static/images/powers/olympic_senses.hover.png new file mode 100644 index 0000000..5ebeb05 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_senses.png b/src/main/resources/static/images/powers/olympic_senses.png new file mode 100644 index 0000000..1411410 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_senses.png differ diff --git a/src/main/resources/static/images/powers/olympic_sword.disabled.png b/src/main/resources/static/images/powers/olympic_sword.disabled.png new file mode 100644 index 0000000..d97a5c2 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_sword.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_sword.hover.png b/src/main/resources/static/images/powers/olympic_sword.hover.png new file mode 100644 index 0000000..d2e3e0a Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_sword.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_sword.png b/src/main/resources/static/images/powers/olympic_sword.png new file mode 100644 index 0000000..f44ddf5 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_sword.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.disabled.png b/src/main/resources/static/images/powers/olympic_torch.disabled.png new file mode 100644 index 0000000..f8a3efb Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.disabled.png b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.disabled.png new file mode 100644 index 0000000..f8a3efb Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.hover.png b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.hover.png new file mode 100644 index 0000000..39d9771 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.png b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.png new file mode 100644 index 0000000..13e1eaa Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.grepolympia_summer.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.hover.png b/src/main/resources/static/images/powers/olympic_torch.hover.png new file mode 100644 index 0000000..39d9771 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_torch.png b/src/main/resources/static/images/powers/olympic_torch.png new file mode 100644 index 0000000..13e1eaa Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_torch.png differ diff --git a/src/main/resources/static/images/powers/olympic_village.disabled.png b/src/main/resources/static/images/powers/olympic_village.disabled.png new file mode 100644 index 0000000..c7b1f9f Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_village.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympic_village.hover.png b/src/main/resources/static/images/powers/olympic_village.hover.png new file mode 100644 index 0000000..16fc613 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_village.hover.png differ diff --git a/src/main/resources/static/images/powers/olympic_village.png b/src/main/resources/static/images/powers/olympic_village.png new file mode 100644 index 0000000..0360ac1 Binary files /dev/null and b/src/main/resources/static/images/powers/olympic_village.png differ diff --git a/src/main/resources/static/images/powers/olympus_mortal_curse.disabled.png b/src/main/resources/static/images/powers/olympus_mortal_curse.disabled.png new file mode 100644 index 0000000..538253d Binary files /dev/null and b/src/main/resources/static/images/powers/olympus_mortal_curse.disabled.png differ diff --git a/src/main/resources/static/images/powers/olympus_mortal_curse.hover.png b/src/main/resources/static/images/powers/olympus_mortal_curse.hover.png new file mode 100644 index 0000000..6daf231 Binary files /dev/null and b/src/main/resources/static/images/powers/olympus_mortal_curse.hover.png differ diff --git a/src/main/resources/static/images/powers/olympus_mortal_curse.png b/src/main/resources/static/images/powers/olympus_mortal_curse.png new file mode 100644 index 0000000..3b455ed Binary files /dev/null and b/src/main/resources/static/images/powers/olympus_mortal_curse.png differ diff --git a/src/main/resources/static/images/powers/passionate_population.disabled.png b/src/main/resources/static/images/powers/passionate_population.disabled.png new file mode 100644 index 0000000..2374c92 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_population.disabled.png differ diff --git a/src/main/resources/static/images/powers/passionate_population.hover.png b/src/main/resources/static/images/powers/passionate_population.hover.png new file mode 100644 index 0000000..0bb9162 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_population.hover.png differ diff --git a/src/main/resources/static/images/powers/passionate_population.png b/src/main/resources/static/images/powers/passionate_population.png new file mode 100644 index 0000000..4e05ac5 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_population.png differ diff --git a/src/main/resources/static/images/powers/passionate_training.disabled.png b/src/main/resources/static/images/powers/passionate_training.disabled.png new file mode 100644 index 0000000..75207a9 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_training.disabled.png differ diff --git a/src/main/resources/static/images/powers/passionate_training.hover.png b/src/main/resources/static/images/powers/passionate_training.hover.png new file mode 100644 index 0000000..1e27d50 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_training.hover.png differ diff --git a/src/main/resources/static/images/powers/passionate_training.png b/src/main/resources/static/images/powers/passionate_training.png new file mode 100644 index 0000000..323a4d2 Binary files /dev/null and b/src/main/resources/static/images/powers/passionate_training.png differ diff --git a/src/main/resources/static/images/powers/patroness.disabled.png b/src/main/resources/static/images/powers/patroness.disabled.png new file mode 100644 index 0000000..573fc2c Binary files /dev/null and b/src/main/resources/static/images/powers/patroness.disabled.png differ diff --git a/src/main/resources/static/images/powers/patroness.hover.png b/src/main/resources/static/images/powers/patroness.hover.png new file mode 100644 index 0000000..de5b8c0 Binary files /dev/null and b/src/main/resources/static/images/powers/patroness.hover.png differ diff --git a/src/main/resources/static/images/powers/patroness.png b/src/main/resources/static/images/powers/patroness.png new file mode 100644 index 0000000..5ced712 Binary files /dev/null and b/src/main/resources/static/images/powers/patroness.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation.disabled.png b/src/main/resources/static/images/powers/pegasus_generation.disabled.png new file mode 100644 index 0000000..e03f343 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation.hover.png b/src/main/resources/static/images/powers/pegasus_generation.hover.png new file mode 100644 index 0000000..7882781 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation.png b/src/main/resources/static/images/powers/pegasus_generation.png new file mode 100644 index 0000000..034a2c1 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.disabled.png new file mode 100644 index 0000000..e6b3e41 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.hover.png new file mode 100644 index 0000000..01ebbf6 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/pegasus_generation_non_scaling.png b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.png new file mode 100644 index 0000000..a013466 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/pegasus_instant.disabled.png b/src/main/resources/static/images/powers/pegasus_instant.disabled.png new file mode 100644 index 0000000..316fc92 Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/pegasus_instant.hover.png b/src/main/resources/static/images/powers/pegasus_instant.hover.png new file mode 100644 index 0000000..a23e81f Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/pegasus_instant.png b/src/main/resources/static/images/powers/pegasus_instant.png new file mode 100644 index 0000000..216447a Binary files /dev/null and b/src/main/resources/static/images/powers/pegasus_instant.png differ diff --git a/src/main/resources/static/images/powers/pest.disabled.png b/src/main/resources/static/images/powers/pest.disabled.png new file mode 100644 index 0000000..d36e431 Binary files /dev/null and b/src/main/resources/static/images/powers/pest.disabled.png differ diff --git a/src/main/resources/static/images/powers/pest.hover.png b/src/main/resources/static/images/powers/pest.hover.png new file mode 100644 index 0000000..3355bce Binary files /dev/null and b/src/main/resources/static/images/powers/pest.hover.png differ diff --git a/src/main/resources/static/images/powers/pest.png b/src/main/resources/static/images/powers/pest.png new file mode 100644 index 0000000..8a99041 Binary files /dev/null and b/src/main/resources/static/images/powers/pest.png differ diff --git a/src/main/resources/static/images/powers/population_boost_big.disabled.png b/src/main/resources/static/images/powers/population_boost_big.disabled.png new file mode 100644 index 0000000..f11ff58 Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_big.disabled.png differ diff --git a/src/main/resources/static/images/powers/population_boost_big.hover.png b/src/main/resources/static/images/powers/population_boost_big.hover.png new file mode 100644 index 0000000..d45fc2b Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_big.hover.png differ diff --git a/src/main/resources/static/images/powers/population_boost_big.png b/src/main/resources/static/images/powers/population_boost_big.png new file mode 100644 index 0000000..dac820e Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_big.png differ diff --git a/src/main/resources/static/images/powers/population_boost_small.disabled.png b/src/main/resources/static/images/powers/population_boost_small.disabled.png new file mode 100644 index 0000000..32c6353 Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_small.disabled.png differ diff --git a/src/main/resources/static/images/powers/population_boost_small.hover.png b/src/main/resources/static/images/powers/population_boost_small.hover.png new file mode 100644 index 0000000..d1a75e3 Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_small.hover.png differ diff --git a/src/main/resources/static/images/powers/population_boost_small.png b/src/main/resources/static/images/powers/population_boost_small.png new file mode 100644 index 0000000..b96041e Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_small.png differ diff --git a/src/main/resources/static/images/powers/population_boost_ultra.disabled.png b/src/main/resources/static/images/powers/population_boost_ultra.disabled.png new file mode 100644 index 0000000..7b1448c Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_ultra.disabled.png differ diff --git a/src/main/resources/static/images/powers/population_boost_ultra.hover.png b/src/main/resources/static/images/powers/population_boost_ultra.hover.png new file mode 100644 index 0000000..83923eb Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_ultra.hover.png differ diff --git a/src/main/resources/static/images/powers/population_boost_ultra.png b/src/main/resources/static/images/powers/population_boost_ultra.png new file mode 100644 index 0000000..9d3798b Binary files /dev/null and b/src/main/resources/static/images/powers/population_boost_ultra.png differ diff --git a/src/main/resources/static/images/powers/pumpkin.disabled.png b/src/main/resources/static/images/powers/pumpkin.disabled.png new file mode 100644 index 0000000..8662329 Binary files /dev/null and b/src/main/resources/static/images/powers/pumpkin.disabled.png differ diff --git a/src/main/resources/static/images/powers/pumpkin.hover.png b/src/main/resources/static/images/powers/pumpkin.hover.png new file mode 100644 index 0000000..2e68d09 Binary files /dev/null and b/src/main/resources/static/images/powers/pumpkin.hover.png differ diff --git a/src/main/resources/static/images/powers/pumpkin.png b/src/main/resources/static/images/powers/pumpkin.png new file mode 100644 index 0000000..0a56590 Binary files /dev/null and b/src/main/resources/static/images/powers/pumpkin.png differ diff --git a/src/main/resources/static/images/powers/pygmalion.disabled.png b/src/main/resources/static/images/powers/pygmalion.disabled.png new file mode 100644 index 0000000..c483cdf Binary files /dev/null and b/src/main/resources/static/images/powers/pygmalion.disabled.png differ diff --git a/src/main/resources/static/images/powers/pygmalion.hover.png b/src/main/resources/static/images/powers/pygmalion.hover.png new file mode 100644 index 0000000..b8d1e81 Binary files /dev/null and b/src/main/resources/static/images/powers/pygmalion.hover.png differ diff --git a/src/main/resources/static/images/powers/pygmalion.png b/src/main/resources/static/images/powers/pygmalion.png new file mode 100644 index 0000000..246dbdf Binary files /dev/null and b/src/main/resources/static/images/powers/pygmalion.png differ diff --git a/src/main/resources/static/images/powers/rare_attack_boost.disabled.png b/src/main/resources/static/images/powers/rare_attack_boost.disabled.png new file mode 100644 index 0000000..692ca09 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_attack_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_attack_boost.hover.png b/src/main/resources/static/images/powers/rare_attack_boost.hover.png new file mode 100644 index 0000000..dff81a7 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_attack_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_attack_boost.png b/src/main/resources/static/images/powers/rare_attack_boost.png new file mode 100644 index 0000000..9023845 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_attack_boost.png differ diff --git a/src/main/resources/static/images/powers/rare_building_order_boost.disabled.png b/src/main/resources/static/images/powers/rare_building_order_boost.disabled.png new file mode 100644 index 0000000..62a33eb Binary files /dev/null and b/src/main/resources/static/images/powers/rare_building_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_building_order_boost.hover.png b/src/main/resources/static/images/powers/rare_building_order_boost.hover.png new file mode 100644 index 0000000..ba19399 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_building_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_building_order_boost.png b/src/main/resources/static/images/powers/rare_building_order_boost.png new file mode 100644 index 0000000..0ec9e2e Binary files /dev/null and b/src/main/resources/static/images/powers/rare_building_order_boost.png differ diff --git a/src/main/resources/static/images/powers/rare_defense_boost.disabled.png b/src/main/resources/static/images/powers/rare_defense_boost.disabled.png new file mode 100644 index 0000000..1a5d761 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_defense_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_defense_boost.hover.png b/src/main/resources/static/images/powers/rare_defense_boost.hover.png new file mode 100644 index 0000000..fadc1e6 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_defense_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_defense_boost.png b/src/main/resources/static/images/powers/rare_defense_boost.png new file mode 100644 index 0000000..7e68a24 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_defense_boost.png differ diff --git a/src/main/resources/static/images/powers/rare_favor_boost.disabled.png b/src/main/resources/static/images/powers/rare_favor_boost.disabled.png new file mode 100644 index 0000000..8855079 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_favor_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_favor_boost.hover.png b/src/main/resources/static/images/powers/rare_favor_boost.hover.png new file mode 100644 index 0000000..ab1d402 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_favor_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_favor_boost.png b/src/main/resources/static/images/powers/rare_favor_boost.png new file mode 100644 index 0000000..9a6073d Binary files /dev/null and b/src/main/resources/static/images/powers/rare_favor_boost.png differ diff --git a/src/main/resources/static/images/powers/rare_resource_boost.disabled.png b/src/main/resources/static/images/powers/rare_resource_boost.disabled.png new file mode 100644 index 0000000..f65ed03 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_resource_boost.hover.png b/src/main/resources/static/images/powers/rare_resource_boost.hover.png new file mode 100644 index 0000000..f282b8c Binary files /dev/null and b/src/main/resources/static/images/powers/rare_resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_resource_boost.png b/src/main/resources/static/images/powers/rare_resource_boost.png new file mode 100644 index 0000000..072c186 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_resource_boost.png differ diff --git a/src/main/resources/static/images/powers/rare_unit_order_boost.disabled.png b/src/main/resources/static/images/powers/rare_unit_order_boost.disabled.png new file mode 100644 index 0000000..3a85c4a Binary files /dev/null and b/src/main/resources/static/images/powers/rare_unit_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/rare_unit_order_boost.hover.png b/src/main/resources/static/images/powers/rare_unit_order_boost.hover.png new file mode 100644 index 0000000..5f12bd9 Binary files /dev/null and b/src/main/resources/static/images/powers/rare_unit_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/rare_unit_order_boost.png b/src/main/resources/static/images/powers/rare_unit_order_boost.png new file mode 100644 index 0000000..264071f Binary files /dev/null and b/src/main/resources/static/images/powers/rare_unit_order_boost.png differ diff --git a/src/main/resources/static/images/powers/resource_all.disabled.png b/src/main/resources/static/images/powers/resource_all.disabled.png new file mode 100644 index 0000000..e1cfbf2 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_all.disabled.png differ diff --git a/src/main/resources/static/images/powers/resource_all.hover.png b/src/main/resources/static/images/powers/resource_all.hover.png new file mode 100644 index 0000000..107adc9 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_all.hover.png differ diff --git a/src/main/resources/static/images/powers/resource_all.png b/src/main/resources/static/images/powers/resource_all.png new file mode 100644 index 0000000..fd12584 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_all.png differ diff --git a/src/main/resources/static/images/powers/resource_boost.disabled.png b/src/main/resources/static/images/powers/resource_boost.disabled.png new file mode 100644 index 0000000..f9acf6f Binary files /dev/null and b/src/main/resources/static/images/powers/resource_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/resource_boost.hover.png b/src/main/resources/static/images/powers/resource_boost.hover.png new file mode 100644 index 0000000..b68b3e0 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/resource_boost.png b/src/main/resources/static/images/powers/resource_boost.png new file mode 100644 index 0000000..8e092fc Binary files /dev/null and b/src/main/resources/static/images/powers/resource_boost.png differ diff --git a/src/main/resources/static/images/powers/resource_iron.disabled.png b/src/main/resources/static/images/powers/resource_iron.disabled.png new file mode 100644 index 0000000..c9f82c3 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_iron.disabled.png differ diff --git a/src/main/resources/static/images/powers/resource_iron.hover.png b/src/main/resources/static/images/powers/resource_iron.hover.png new file mode 100644 index 0000000..f7ae214 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_iron.hover.png differ diff --git a/src/main/resources/static/images/powers/resource_iron.png b/src/main/resources/static/images/powers/resource_iron.png new file mode 100644 index 0000000..c745687 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_iron.png differ diff --git a/src/main/resources/static/images/powers/resource_stone.disabled.png b/src/main/resources/static/images/powers/resource_stone.disabled.png new file mode 100644 index 0000000..3a6913b Binary files /dev/null and b/src/main/resources/static/images/powers/resource_stone.disabled.png differ diff --git a/src/main/resources/static/images/powers/resource_stone.hover.png b/src/main/resources/static/images/powers/resource_stone.hover.png new file mode 100644 index 0000000..cf1daad Binary files /dev/null and b/src/main/resources/static/images/powers/resource_stone.hover.png differ diff --git a/src/main/resources/static/images/powers/resource_stone.png b/src/main/resources/static/images/powers/resource_stone.png new file mode 100644 index 0000000..1b7af06 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_stone.png differ diff --git a/src/main/resources/static/images/powers/resource_wood.disabled.png b/src/main/resources/static/images/powers/resource_wood.disabled.png new file mode 100644 index 0000000..43c0024 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_wood.disabled.png differ diff --git a/src/main/resources/static/images/powers/resource_wood.hover.png b/src/main/resources/static/images/powers/resource_wood.hover.png new file mode 100644 index 0000000..40fd927 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_wood.hover.png differ diff --git a/src/main/resources/static/images/powers/resource_wood.png b/src/main/resources/static/images/powers/resource_wood.png new file mode 100644 index 0000000..d78c284 Binary files /dev/null and b/src/main/resources/static/images/powers/resource_wood.png differ diff --git a/src/main/resources/static/images/powers/resurrection.disabled.png b/src/main/resources/static/images/powers/resurrection.disabled.png new file mode 100644 index 0000000..b096cf0 Binary files /dev/null and b/src/main/resources/static/images/powers/resurrection.disabled.png differ diff --git a/src/main/resources/static/images/powers/resurrection.hover.png b/src/main/resources/static/images/powers/resurrection.hover.png new file mode 100644 index 0000000..e2ada70 Binary files /dev/null and b/src/main/resources/static/images/powers/resurrection.hover.png differ diff --git a/src/main/resources/static/images/powers/resurrection.png b/src/main/resources/static/images/powers/resurrection.png new file mode 100644 index 0000000..eb303e1 Binary files /dev/null and b/src/main/resources/static/images/powers/resurrection.png differ diff --git a/src/main/resources/static/images/powers/rider_generation.disabled.png b/src/main/resources/static/images/powers/rider_generation.disabled.png new file mode 100644 index 0000000..49d6132 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/rider_generation.hover.png b/src/main/resources/static/images/powers/rider_generation.hover.png new file mode 100644 index 0000000..abfb5b6 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/rider_generation.png b/src/main/resources/static/images/powers/rider_generation.png new file mode 100644 index 0000000..bcb1d13 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation.png differ diff --git a/src/main/resources/static/images/powers/rider_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/rider_generation_non_scaling.disabled.png new file mode 100644 index 0000000..2974ddf Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/rider_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/rider_generation_non_scaling.hover.png new file mode 100644 index 0000000..3bc47e3 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/rider_generation_non_scaling.png b/src/main/resources/static/images/powers/rider_generation_non_scaling.png new file mode 100644 index 0000000..d1116c7 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/rider_instant.disabled.png b/src/main/resources/static/images/powers/rider_instant.disabled.png new file mode 100644 index 0000000..5e05506 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/rider_instant.hover.png b/src/main/resources/static/images/powers/rider_instant.hover.png new file mode 100644 index 0000000..f05040f Binary files /dev/null and b/src/main/resources/static/images/powers/rider_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/rider_instant.png b/src/main/resources/static/images/powers/rider_instant.png new file mode 100644 index 0000000..8c340f3 Binary files /dev/null and b/src/main/resources/static/images/powers/rider_instant.png differ diff --git a/src/main/resources/static/images/powers/rota_event_tyches_wreath.disabled.png b/src/main/resources/static/images/powers/rota_event_tyches_wreath.disabled.png new file mode 100644 index 0000000..62ecfdf Binary files /dev/null and b/src/main/resources/static/images/powers/rota_event_tyches_wreath.disabled.png differ diff --git a/src/main/resources/static/images/powers/rota_event_tyches_wreath.hover.png b/src/main/resources/static/images/powers/rota_event_tyches_wreath.hover.png new file mode 100644 index 0000000..5eec9ea Binary files /dev/null and b/src/main/resources/static/images/powers/rota_event_tyches_wreath.hover.png differ diff --git a/src/main/resources/static/images/powers/rota_event_tyches_wreath.png b/src/main/resources/static/images/powers/rota_event_tyches_wreath.png new file mode 100644 index 0000000..c70245b Binary files /dev/null and b/src/main/resources/static/images/powers/rota_event_tyches_wreath.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation.disabled.png b/src/main/resources/static/images/powers/satyr_generation.disabled.png new file mode 100644 index 0000000..7fd078f Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation.hover.png b/src/main/resources/static/images/powers/satyr_generation.hover.png new file mode 100644 index 0000000..bf19c44 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation.png b/src/main/resources/static/images/powers/satyr_generation.png new file mode 100644 index 0000000..0f0d090 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/satyr_generation_non_scaling.disabled.png new file mode 100644 index 0000000..e9d7f43 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/satyr_generation_non_scaling.hover.png new file mode 100644 index 0000000..cbb9969 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/satyr_generation_non_scaling.png b/src/main/resources/static/images/powers/satyr_generation_non_scaling.png new file mode 100644 index 0000000..cdd5fa8 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/satyr_instant.disabled.png b/src/main/resources/static/images/powers/satyr_instant.disabled.png new file mode 100644 index 0000000..70c83de Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/satyr_instant.hover.png b/src/main/resources/static/images/powers/satyr_instant.hover.png new file mode 100644 index 0000000..2bc3575 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/satyr_instant.png b/src/main/resources/static/images/powers/satyr_instant.png new file mode 100644 index 0000000..f7b3a61 Binary files /dev/null and b/src/main/resources/static/images/powers/satyr_instant.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation.disabled.png b/src/main/resources/static/images/powers/sea_monster_generation.disabled.png new file mode 100644 index 0000000..25197dd Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation.hover.png b/src/main/resources/static/images/powers/sea_monster_generation.hover.png new file mode 100644 index 0000000..4b44531 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation.png b/src/main/resources/static/images/powers/sea_monster_generation.png new file mode 100644 index 0000000..c14dd53 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.disabled.png new file mode 100644 index 0000000..36154f4 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.hover.png new file mode 100644 index 0000000..c34f715 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.png b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.png new file mode 100644 index 0000000..63e799a Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_instant.disabled.png b/src/main/resources/static/images/powers/sea_monster_instant.disabled.png new file mode 100644 index 0000000..d25f6e6 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_instant.hover.png b/src/main/resources/static/images/powers/sea_monster_instant.hover.png new file mode 100644 index 0000000..830ee05 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/sea_monster_instant.png b/src/main/resources/static/images/powers/sea_monster_instant.png new file mode 100644 index 0000000..d4884f2 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_monster_instant.png differ diff --git a/src/main/resources/static/images/powers/sea_storm.disabled.png b/src/main/resources/static/images/powers/sea_storm.disabled.png new file mode 100644 index 0000000..4e3b598 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_storm.disabled.png differ diff --git a/src/main/resources/static/images/powers/sea_storm.hover.png b/src/main/resources/static/images/powers/sea_storm.hover.png new file mode 100644 index 0000000..a3f03de Binary files /dev/null and b/src/main/resources/static/images/powers/sea_storm.hover.png differ diff --git a/src/main/resources/static/images/powers/sea_storm.png b/src/main/resources/static/images/powers/sea_storm.png new file mode 100644 index 0000000..05c0237 Binary files /dev/null and b/src/main/resources/static/images/powers/sea_storm.png differ diff --git a/src/main/resources/static/images/powers/siren_generation.disabled.png b/src/main/resources/static/images/powers/siren_generation.disabled.png new file mode 100644 index 0000000..046f6f1 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/siren_generation.hover.png b/src/main/resources/static/images/powers/siren_generation.hover.png new file mode 100644 index 0000000..2e65451 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/siren_generation.png b/src/main/resources/static/images/powers/siren_generation.png new file mode 100644 index 0000000..3db297d Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation.png differ diff --git a/src/main/resources/static/images/powers/siren_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/siren_generation_non_scaling.disabled.png new file mode 100644 index 0000000..227acc3 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/siren_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/siren_generation_non_scaling.hover.png new file mode 100644 index 0000000..80ea7af Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/siren_generation_non_scaling.png b/src/main/resources/static/images/powers/siren_generation_non_scaling.png new file mode 100644 index 0000000..c1e9516 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/siren_instant.disabled.png b/src/main/resources/static/images/powers/siren_instant.disabled.png new file mode 100644 index 0000000..57af2c7 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/siren_instant.hover.png b/src/main/resources/static/images/powers/siren_instant.hover.png new file mode 100644 index 0000000..1550a46 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/siren_instant.png b/src/main/resources/static/images/powers/siren_instant.png new file mode 100644 index 0000000..45fa548 Binary files /dev/null and b/src/main/resources/static/images/powers/siren_instant.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation.disabled.png b/src/main/resources/static/images/powers/slinger_generation.disabled.png new file mode 100644 index 0000000..29fdcde Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation.hover.png b/src/main/resources/static/images/powers/slinger_generation.hover.png new file mode 100644 index 0000000..8d209c8 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation.png b/src/main/resources/static/images/powers/slinger_generation.png new file mode 100644 index 0000000..68722f6 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/slinger_generation_non_scaling.disabled.png new file mode 100644 index 0000000..db92377 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/slinger_generation_non_scaling.hover.png new file mode 100644 index 0000000..0e913c9 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/slinger_generation_non_scaling.png b/src/main/resources/static/images/powers/slinger_generation_non_scaling.png new file mode 100644 index 0000000..73dff02 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/slinger_instant.disabled.png b/src/main/resources/static/images/powers/slinger_instant.disabled.png new file mode 100644 index 0000000..ac02ce7 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/slinger_instant.hover.png b/src/main/resources/static/images/powers/slinger_instant.hover.png new file mode 100644 index 0000000..bd31a04 Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/slinger_instant.png b/src/main/resources/static/images/powers/slinger_instant.png new file mode 100644 index 0000000..71126bf Binary files /dev/null and b/src/main/resources/static/images/powers/slinger_instant.png differ diff --git a/src/main/resources/static/images/powers/small_temple_powers.disabled.png b/src/main/resources/static/images/powers/small_temple_powers.disabled.png new file mode 100644 index 0000000..59367d1 Binary files /dev/null and b/src/main/resources/static/images/powers/small_temple_powers.disabled.png differ diff --git a/src/main/resources/static/images/powers/small_temple_powers.hover.png b/src/main/resources/static/images/powers/small_temple_powers.hover.png new file mode 100644 index 0000000..1290f52 Binary files /dev/null and b/src/main/resources/static/images/powers/small_temple_powers.hover.png differ diff --git a/src/main/resources/static/images/powers/small_temple_powers.png b/src/main/resources/static/images/powers/small_temple_powers.png new file mode 100644 index 0000000..a22bb8a Binary files /dev/null and b/src/main/resources/static/images/powers/small_temple_powers.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation.disabled.png b/src/main/resources/static/images/powers/small_transporter_generation.disabled.png new file mode 100644 index 0000000..14c6644 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation.hover.png b/src/main/resources/static/images/powers/small_transporter_generation.hover.png new file mode 100644 index 0000000..0c4dc34 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation.png b/src/main/resources/static/images/powers/small_transporter_generation.png new file mode 100644 index 0000000..2b83619 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.disabled.png new file mode 100644 index 0000000..d41fbea Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.hover.png new file mode 100644 index 0000000..ec2fff1 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.png b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.png new file mode 100644 index 0000000..d54c748 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_instant.disabled.png b/src/main/resources/static/images/powers/small_transporter_instant.disabled.png new file mode 100644 index 0000000..47ff101 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_instant.hover.png b/src/main/resources/static/images/powers/small_transporter_instant.hover.png new file mode 100644 index 0000000..81db55d Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/small_transporter_instant.png b/src/main/resources/static/images/powers/small_transporter_instant.png new file mode 100644 index 0000000..434d9d3 Binary files /dev/null and b/src/main/resources/static/images/powers/small_transporter_instant.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.disabled.png b/src/main/resources/static/images/powers/soterias_shrine.disabled.png new file mode 100644 index 0000000..44a5d95 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.disabled.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.hover.png b/src/main/resources/static/images/powers/soterias_shrine.hover.png new file mode 100644 index 0000000..a35fe04 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.hover.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.not_cast.disabled.png b/src/main/resources/static/images/powers/soterias_shrine.not_cast.disabled.png new file mode 100644 index 0000000..44a5d95 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.not_cast.disabled.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.not_cast.hover.png b/src/main/resources/static/images/powers/soterias_shrine.not_cast.hover.png new file mode 100644 index 0000000..a35fe04 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.not_cast.hover.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.not_cast.png b/src/main/resources/static/images/powers/soterias_shrine.not_cast.png new file mode 100644 index 0000000..6985559 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.not_cast.png differ diff --git a/src/main/resources/static/images/powers/soterias_shrine.png b/src/main/resources/static/images/powers/soterias_shrine.png new file mode 100644 index 0000000..6985559 Binary files /dev/null and b/src/main/resources/static/images/powers/soterias_shrine.png differ diff --git a/src/main/resources/static/images/powers/spartan_training.disabled.png b/src/main/resources/static/images/powers/spartan_training.disabled.png new file mode 100644 index 0000000..a1a0822 Binary files /dev/null and b/src/main/resources/static/images/powers/spartan_training.disabled.png differ diff --git a/src/main/resources/static/images/powers/spartan_training.hover.png b/src/main/resources/static/images/powers/spartan_training.hover.png new file mode 100644 index 0000000..07d8b62 Binary files /dev/null and b/src/main/resources/static/images/powers/spartan_training.hover.png differ diff --git a/src/main/resources/static/images/powers/spartan_training.png b/src/main/resources/static/images/powers/spartan_training.png new file mode 100644 index 0000000..c7b7ced Binary files /dev/null and b/src/main/resources/static/images/powers/spartan_training.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation.disabled.png b/src/main/resources/static/images/powers/spartoi_generation.disabled.png new file mode 100644 index 0000000..b18fadb Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation.hover.png b/src/main/resources/static/images/powers/spartoi_generation.hover.png new file mode 100644 index 0000000..4b53298 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation.png b/src/main/resources/static/images/powers/spartoi_generation.png new file mode 100644 index 0000000..f20fddd Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.disabled.png new file mode 100644 index 0000000..da96176 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.hover.png new file mode 100644 index 0000000..2e0969b Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/spartoi_generation_non_scaling.png b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.png new file mode 100644 index 0000000..37f0a27 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/spartoi_instant.disabled.png b/src/main/resources/static/images/powers/spartoi_instant.disabled.png new file mode 100644 index 0000000..f75a549 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/spartoi_instant.hover.png b/src/main/resources/static/images/powers/spartoi_instant.hover.png new file mode 100644 index 0000000..7720e26 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/spartoi_instant.png b/src/main/resources/static/images/powers/spartoi_instant.png new file mode 100644 index 0000000..191fe75 Binary files /dev/null and b/src/main/resources/static/images/powers/spartoi_instant.png differ diff --git a/src/main/resources/static/images/powers/starter_protection.disabled.png b/src/main/resources/static/images/powers/starter_protection.disabled.png new file mode 100644 index 0000000..0032395 Binary files /dev/null and b/src/main/resources/static/images/powers/starter_protection.disabled.png differ diff --git a/src/main/resources/static/images/powers/starter_protection.hover.png b/src/main/resources/static/images/powers/starter_protection.hover.png new file mode 100644 index 0000000..af83bc2 Binary files /dev/null and b/src/main/resources/static/images/powers/starter_protection.hover.png differ diff --git a/src/main/resources/static/images/powers/starter_protection.png b/src/main/resources/static/images/powers/starter_protection.png new file mode 100644 index 0000000..271a5d9 Binary files /dev/null and b/src/main/resources/static/images/powers/starter_protection.png differ diff --git a/src/main/resources/static/images/powers/stone_production_penalty.disabled.png b/src/main/resources/static/images/powers/stone_production_penalty.disabled.png new file mode 100644 index 0000000..ea29435 Binary files /dev/null and b/src/main/resources/static/images/powers/stone_production_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/stone_production_penalty.hover.png b/src/main/resources/static/images/powers/stone_production_penalty.hover.png new file mode 100644 index 0000000..6f7f781 Binary files /dev/null and b/src/main/resources/static/images/powers/stone_production_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/stone_production_penalty.png b/src/main/resources/static/images/powers/stone_production_penalty.png new file mode 100644 index 0000000..10eed6f Binary files /dev/null and b/src/main/resources/static/images/powers/stone_production_penalty.png differ diff --git a/src/main/resources/static/images/powers/strength_of_heroes.disabled.png b/src/main/resources/static/images/powers/strength_of_heroes.disabled.png new file mode 100644 index 0000000..eb3d178 Binary files /dev/null and b/src/main/resources/static/images/powers/strength_of_heroes.disabled.png differ diff --git a/src/main/resources/static/images/powers/strength_of_heroes.hover.png b/src/main/resources/static/images/powers/strength_of_heroes.hover.png new file mode 100644 index 0000000..f7948ea Binary files /dev/null and b/src/main/resources/static/images/powers/strength_of_heroes.hover.png differ diff --git a/src/main/resources/static/images/powers/strength_of_heroes.png b/src/main/resources/static/images/powers/strength_of_heroes.png new file mode 100644 index 0000000..19eec6b Binary files /dev/null and b/src/main/resources/static/images/powers/strength_of_heroes.png differ diff --git a/src/main/resources/static/images/powers/sudden_aid.disabled.png b/src/main/resources/static/images/powers/sudden_aid.disabled.png new file mode 100644 index 0000000..f2f668a Binary files /dev/null and b/src/main/resources/static/images/powers/sudden_aid.disabled.png differ diff --git a/src/main/resources/static/images/powers/sudden_aid.hover.png b/src/main/resources/static/images/powers/sudden_aid.hover.png new file mode 100644 index 0000000..46ed2da Binary files /dev/null and b/src/main/resources/static/images/powers/sudden_aid.hover.png differ diff --git a/src/main/resources/static/images/powers/sudden_aid.png b/src/main/resources/static/images/powers/sudden_aid.png new file mode 100644 index 0000000..4741edc Binary files /dev/null and b/src/main/resources/static/images/powers/sudden_aid.png differ diff --git a/src/main/resources/static/images/powers/suffering.disabled.png b/src/main/resources/static/images/powers/suffering.disabled.png new file mode 100644 index 0000000..c6c12be Binary files /dev/null and b/src/main/resources/static/images/powers/suffering.disabled.png differ diff --git a/src/main/resources/static/images/powers/suffering.hover.png b/src/main/resources/static/images/powers/suffering.hover.png new file mode 100644 index 0000000..773728a Binary files /dev/null and b/src/main/resources/static/images/powers/suffering.hover.png differ diff --git a/src/main/resources/static/images/powers/suffering.png b/src/main/resources/static/images/powers/suffering.png new file mode 100644 index 0000000..1bbb06b Binary files /dev/null and b/src/main/resources/static/images/powers/suffering.png differ diff --git a/src/main/resources/static/images/powers/suffering_and_mourning.disabled.png b/src/main/resources/static/images/powers/suffering_and_mourning.disabled.png new file mode 100644 index 0000000..8d406e8 Binary files /dev/null and b/src/main/resources/static/images/powers/suffering_and_mourning.disabled.png differ diff --git a/src/main/resources/static/images/powers/suffering_and_mourning.hover.png b/src/main/resources/static/images/powers/suffering_and_mourning.hover.png new file mode 100644 index 0000000..075b8f1 Binary files /dev/null and b/src/main/resources/static/images/powers/suffering_and_mourning.hover.png differ diff --git a/src/main/resources/static/images/powers/suffering_and_mourning.png b/src/main/resources/static/images/powers/suffering_and_mourning.png new file mode 100644 index 0000000..c7a1a48 Binary files /dev/null and b/src/main/resources/static/images/powers/suffering_and_mourning.png differ diff --git a/src/main/resources/static/images/powers/summoning_of_the_nereids.disabled.png b/src/main/resources/static/images/powers/summoning_of_the_nereids.disabled.png new file mode 100644 index 0000000..f0878ab Binary files /dev/null and b/src/main/resources/static/images/powers/summoning_of_the_nereids.disabled.png differ diff --git a/src/main/resources/static/images/powers/summoning_of_the_nereids.hover.png b/src/main/resources/static/images/powers/summoning_of_the_nereids.hover.png new file mode 100644 index 0000000..1881fcb Binary files /dev/null and b/src/main/resources/static/images/powers/summoning_of_the_nereids.hover.png differ diff --git a/src/main/resources/static/images/powers/summoning_of_the_nereids.png b/src/main/resources/static/images/powers/summoning_of_the_nereids.png new file mode 100644 index 0000000..0f671e0 Binary files /dev/null and b/src/main/resources/static/images/powers/summoning_of_the_nereids.png differ diff --git a/src/main/resources/static/images/powers/sword_generation.disabled.png b/src/main/resources/static/images/powers/sword_generation.disabled.png new file mode 100644 index 0000000..e799d38 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/sword_generation.hover.png b/src/main/resources/static/images/powers/sword_generation.hover.png new file mode 100644 index 0000000..aa4cf6c Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/sword_generation.png b/src/main/resources/static/images/powers/sword_generation.png new file mode 100644 index 0000000..78df28e Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation.png differ diff --git a/src/main/resources/static/images/powers/sword_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/sword_generation_non_scaling.disabled.png new file mode 100644 index 0000000..8806c15 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/sword_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/sword_generation_non_scaling.hover.png new file mode 100644 index 0000000..f51df88 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/sword_generation_non_scaling.png b/src/main/resources/static/images/powers/sword_generation_non_scaling.png new file mode 100644 index 0000000..de3e163 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/sword_instant.disabled.png b/src/main/resources/static/images/powers/sword_instant.disabled.png new file mode 100644 index 0000000..2692502 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/sword_instant.hover.png b/src/main/resources/static/images/powers/sword_instant.hover.png new file mode 100644 index 0000000..fffce8b Binary files /dev/null and b/src/main/resources/static/images/powers/sword_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/sword_instant.png b/src/main/resources/static/images/powers/sword_instant.png new file mode 100644 index 0000000..ae15c27 Binary files /dev/null and b/src/main/resources/static/images/powers/sword_instant.png differ diff --git a/src/main/resources/static/images/powers/town_protection.disabled.png b/src/main/resources/static/images/powers/town_protection.disabled.png new file mode 100644 index 0000000..d311026 Binary files /dev/null and b/src/main/resources/static/images/powers/town_protection.disabled.png differ diff --git a/src/main/resources/static/images/powers/town_protection.hover.png b/src/main/resources/static/images/powers/town_protection.hover.png new file mode 100644 index 0000000..58dad60 Binary files /dev/null and b/src/main/resources/static/images/powers/town_protection.hover.png differ diff --git a/src/main/resources/static/images/powers/town_protection.png b/src/main/resources/static/images/powers/town_protection.png new file mode 100644 index 0000000..e6e1f10 Binary files /dev/null and b/src/main/resources/static/images/powers/town_protection.png differ diff --git a/src/main/resources/static/images/powers/transformation.disabled.png b/src/main/resources/static/images/powers/transformation.disabled.png new file mode 100644 index 0000000..537a506 Binary files /dev/null and b/src/main/resources/static/images/powers/transformation.disabled.png differ diff --git a/src/main/resources/static/images/powers/transformation.hover.png b/src/main/resources/static/images/powers/transformation.hover.png new file mode 100644 index 0000000..d5e004c Binary files /dev/null and b/src/main/resources/static/images/powers/transformation.hover.png differ diff --git a/src/main/resources/static/images/powers/transformation.png b/src/main/resources/static/images/powers/transformation.png new file mode 100644 index 0000000..8f2376f Binary files /dev/null and b/src/main/resources/static/images/powers/transformation.png differ diff --git a/src/main/resources/static/images/powers/travelling_mentor.disabled.png b/src/main/resources/static/images/powers/travelling_mentor.disabled.png new file mode 100644 index 0000000..a0f83ba Binary files /dev/null and b/src/main/resources/static/images/powers/travelling_mentor.disabled.png differ diff --git a/src/main/resources/static/images/powers/travelling_mentor.hover.png b/src/main/resources/static/images/powers/travelling_mentor.hover.png new file mode 100644 index 0000000..3aa3f29 Binary files /dev/null and b/src/main/resources/static/images/powers/travelling_mentor.hover.png differ diff --git a/src/main/resources/static/images/powers/travelling_mentor.png b/src/main/resources/static/images/powers/travelling_mentor.png new file mode 100644 index 0000000..f2140b8 Binary files /dev/null and b/src/main/resources/static/images/powers/travelling_mentor.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation.disabled.png b/src/main/resources/static/images/powers/trireme_generation.disabled.png new file mode 100644 index 0000000..9c54915 Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation.hover.png b/src/main/resources/static/images/powers/trireme_generation.hover.png new file mode 100644 index 0000000..569306b Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation.png b/src/main/resources/static/images/powers/trireme_generation.png new file mode 100644 index 0000000..2918498 Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/trireme_generation_non_scaling.disabled.png new file mode 100644 index 0000000..f77e3fb Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/trireme_generation_non_scaling.hover.png new file mode 100644 index 0000000..e1b7e76 Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/trireme_generation_non_scaling.png b/src/main/resources/static/images/powers/trireme_generation_non_scaling.png new file mode 100644 index 0000000..e69161f Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/trireme_instant.disabled.png b/src/main/resources/static/images/powers/trireme_instant.disabled.png new file mode 100644 index 0000000..abfa186 Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/trireme_instant.hover.png b/src/main/resources/static/images/powers/trireme_instant.hover.png new file mode 100644 index 0000000..a734e7c Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/trireme_instant.png b/src/main/resources/static/images/powers/trireme_instant.png new file mode 100644 index 0000000..828b7e7 Binary files /dev/null and b/src/main/resources/static/images/powers/trireme_instant.png differ diff --git a/src/main/resources/static/images/powers/trojan_defense.disabled.png b/src/main/resources/static/images/powers/trojan_defense.disabled.png new file mode 100644 index 0000000..abf201b Binary files /dev/null and b/src/main/resources/static/images/powers/trojan_defense.disabled.png differ diff --git a/src/main/resources/static/images/powers/trojan_defense.hover.png b/src/main/resources/static/images/powers/trojan_defense.hover.png new file mode 100644 index 0000000..7e45ff0 Binary files /dev/null and b/src/main/resources/static/images/powers/trojan_defense.hover.png differ diff --git a/src/main/resources/static/images/powers/trojan_defense.png b/src/main/resources/static/images/powers/trojan_defense.png new file mode 100644 index 0000000..7382029 Binary files /dev/null and b/src/main/resources/static/images/powers/trojan_defense.png differ diff --git a/src/main/resources/static/images/powers/tyches_blessing_effect.disabled.png b/src/main/resources/static/images/powers/tyches_blessing_effect.disabled.png new file mode 100644 index 0000000..849cdf3 Binary files /dev/null and b/src/main/resources/static/images/powers/tyches_blessing_effect.disabled.png differ diff --git a/src/main/resources/static/images/powers/tyches_blessing_effect.hover.png b/src/main/resources/static/images/powers/tyches_blessing_effect.hover.png new file mode 100644 index 0000000..c8d6cda Binary files /dev/null and b/src/main/resources/static/images/powers/tyches_blessing_effect.hover.png differ diff --git a/src/main/resources/static/images/powers/tyches_blessing_effect.png b/src/main/resources/static/images/powers/tyches_blessing_effect.png new file mode 100644 index 0000000..e47f82e Binary files /dev/null and b/src/main/resources/static/images/powers/tyches_blessing_effect.png differ diff --git a/src/main/resources/static/images/powers/underworld_treasures.disabled.png b/src/main/resources/static/images/powers/underworld_treasures.disabled.png new file mode 100644 index 0000000..e99c39f Binary files /dev/null and b/src/main/resources/static/images/powers/underworld_treasures.disabled.png differ diff --git a/src/main/resources/static/images/powers/underworld_treasures.hover.png b/src/main/resources/static/images/powers/underworld_treasures.hover.png new file mode 100644 index 0000000..b32af47 Binary files /dev/null and b/src/main/resources/static/images/powers/underworld_treasures.hover.png differ diff --git a/src/main/resources/static/images/powers/underworld_treasures.png b/src/main/resources/static/images/powers/underworld_treasures.png new file mode 100644 index 0000000..0de2049 Binary files /dev/null and b/src/main/resources/static/images/powers/underworld_treasures.png differ diff --git a/src/main/resources/static/images/powers/unit_movement_boost.disabled.png b/src/main/resources/static/images/powers/unit_movement_boost.disabled.png new file mode 100644 index 0000000..b3776f0 Binary files /dev/null and b/src/main/resources/static/images/powers/unit_movement_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/unit_movement_boost.hover.png b/src/main/resources/static/images/powers/unit_movement_boost.hover.png new file mode 100644 index 0000000..5dcd98b Binary files /dev/null and b/src/main/resources/static/images/powers/unit_movement_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/unit_movement_boost.png b/src/main/resources/static/images/powers/unit_movement_boost.png new file mode 100644 index 0000000..607850c Binary files /dev/null and b/src/main/resources/static/images/powers/unit_movement_boost.png differ diff --git a/src/main/resources/static/images/powers/unit_order_boost.disabled.png b/src/main/resources/static/images/powers/unit_order_boost.disabled.png new file mode 100644 index 0000000..9a7c9ab Binary files /dev/null and b/src/main/resources/static/images/powers/unit_order_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/unit_order_boost.hover.png b/src/main/resources/static/images/powers/unit_order_boost.hover.png new file mode 100644 index 0000000..29001fd Binary files /dev/null and b/src/main/resources/static/images/powers/unit_order_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/unit_order_boost.png b/src/main/resources/static/images/powers/unit_order_boost.png new file mode 100644 index 0000000..b18f42c Binary files /dev/null and b/src/main/resources/static/images/powers/unit_order_boost.png differ diff --git a/src/main/resources/static/images/powers/unit_training_boost.disabled.png b/src/main/resources/static/images/powers/unit_training_boost.disabled.png new file mode 100644 index 0000000..c95bcbf Binary files /dev/null and b/src/main/resources/static/images/powers/unit_training_boost.disabled.png differ diff --git a/src/main/resources/static/images/powers/unit_training_boost.hover.png b/src/main/resources/static/images/powers/unit_training_boost.hover.png new file mode 100644 index 0000000..3ba623b Binary files /dev/null and b/src/main/resources/static/images/powers/unit_training_boost.hover.png differ diff --git a/src/main/resources/static/images/powers/unit_training_boost.png b/src/main/resources/static/images/powers/unit_training_boost.png new file mode 100644 index 0000000..95e719d Binary files /dev/null and b/src/main/resources/static/images/powers/unit_training_boost.png differ diff --git a/src/main/resources/static/images/powers/wedding.disabled.png b/src/main/resources/static/images/powers/wedding.disabled.png new file mode 100644 index 0000000..b241701 Binary files /dev/null and b/src/main/resources/static/images/powers/wedding.disabled.png differ diff --git a/src/main/resources/static/images/powers/wedding.hover.png b/src/main/resources/static/images/powers/wedding.hover.png new file mode 100644 index 0000000..c7d7990 Binary files /dev/null and b/src/main/resources/static/images/powers/wedding.hover.png differ diff --git a/src/main/resources/static/images/powers/wedding.png b/src/main/resources/static/images/powers/wedding.png new file mode 100644 index 0000000..3e4d408 Binary files /dev/null and b/src/main/resources/static/images/powers/wedding.png differ diff --git a/src/main/resources/static/images/powers/wedding_of_the_aristocrats.disabled.png b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.disabled.png new file mode 100644 index 0000000..50ae07f Binary files /dev/null and b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.disabled.png differ diff --git a/src/main/resources/static/images/powers/wedding_of_the_aristocrats.hover.png b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.hover.png new file mode 100644 index 0000000..ebc5d76 Binary files /dev/null and b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.hover.png differ diff --git a/src/main/resources/static/images/powers/wedding_of_the_aristocrats.png b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.png new file mode 100644 index 0000000..8ae531c Binary files /dev/null and b/src/main/resources/static/images/powers/wedding_of_the_aristocrats.png differ diff --git a/src/main/resources/static/images/powers/wisdom.disabled.png b/src/main/resources/static/images/powers/wisdom.disabled.png new file mode 100644 index 0000000..79c5336 Binary files /dev/null and b/src/main/resources/static/images/powers/wisdom.disabled.png differ diff --git a/src/main/resources/static/images/powers/wisdom.hover.png b/src/main/resources/static/images/powers/wisdom.hover.png new file mode 100644 index 0000000..914a7e1 Binary files /dev/null and b/src/main/resources/static/images/powers/wisdom.hover.png differ diff --git a/src/main/resources/static/images/powers/wisdom.png b/src/main/resources/static/images/powers/wisdom.png new file mode 100644 index 0000000..a24ef1f Binary files /dev/null and b/src/main/resources/static/images/powers/wisdom.png differ diff --git a/src/main/resources/static/images/powers/wood_production_penalty.disabled.png b/src/main/resources/static/images/powers/wood_production_penalty.disabled.png new file mode 100644 index 0000000..9daf588 Binary files /dev/null and b/src/main/resources/static/images/powers/wood_production_penalty.disabled.png differ diff --git a/src/main/resources/static/images/powers/wood_production_penalty.hover.png b/src/main/resources/static/images/powers/wood_production_penalty.hover.png new file mode 100644 index 0000000..5155315 Binary files /dev/null and b/src/main/resources/static/images/powers/wood_production_penalty.hover.png differ diff --git a/src/main/resources/static/images/powers/wood_production_penalty.png b/src/main/resources/static/images/powers/wood_production_penalty.png new file mode 100644 index 0000000..bbeca7a Binary files /dev/null and b/src/main/resources/static/images/powers/wood_production_penalty.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation.disabled.png b/src/main/resources/static/images/powers/zyklop_generation.disabled.png new file mode 100644 index 0000000..df3362f Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation.disabled.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation.hover.png b/src/main/resources/static/images/powers/zyklop_generation.hover.png new file mode 100644 index 0000000..ed841e6 Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation.hover.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation.png b/src/main/resources/static/images/powers/zyklop_generation.png new file mode 100644 index 0000000..b660bef Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation_non_scaling.disabled.png b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.disabled.png new file mode 100644 index 0000000..0c3cb7f Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.disabled.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation_non_scaling.hover.png b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.hover.png new file mode 100644 index 0000000..62430ca Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.hover.png differ diff --git a/src/main/resources/static/images/powers/zyklop_generation_non_scaling.png b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.png new file mode 100644 index 0000000..9420200 Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_generation_non_scaling.png differ diff --git a/src/main/resources/static/images/powers/zyklop_instant.disabled.png b/src/main/resources/static/images/powers/zyklop_instant.disabled.png new file mode 100644 index 0000000..7bc7952 Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_instant.disabled.png differ diff --git a/src/main/resources/static/images/powers/zyklop_instant.hover.png b/src/main/resources/static/images/powers/zyklop_instant.hover.png new file mode 100644 index 0000000..3b861c6 Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_instant.hover.png differ diff --git a/src/main/resources/static/images/powers/zyklop_instant.png b/src/main/resources/static/images/powers/zyklop_instant.png new file mode 100644 index 0000000..e4a43b2 Binary files /dev/null and b/src/main/resources/static/images/powers/zyklop_instant.png differ diff --git a/src/main/resources/static/images/researches/archer.inactive.png b/src/main/resources/static/images/researches/archer.inactive.png new file mode 100644 index 0000000..291419f Binary files /dev/null and b/src/main/resources/static/images/researches/archer.inactive.png differ diff --git a/src/main/resources/static/images/researches/archer.png b/src/main/resources/static/images/researches/archer.png new file mode 100644 index 0000000..205aed6 Binary files /dev/null and b/src/main/resources/static/images/researches/archer.png differ diff --git a/src/main/resources/static/images/researches/architecture.inactive.png b/src/main/resources/static/images/researches/architecture.inactive.png new file mode 100644 index 0000000..18894a5 Binary files /dev/null and b/src/main/resources/static/images/researches/architecture.inactive.png differ diff --git a/src/main/resources/static/images/researches/architecture.png b/src/main/resources/static/images/researches/architecture.png new file mode 100644 index 0000000..912b579 Binary files /dev/null and b/src/main/resources/static/images/researches/architecture.png differ diff --git a/src/main/resources/static/images/researches/attack_ship.inactive.png b/src/main/resources/static/images/researches/attack_ship.inactive.png new file mode 100644 index 0000000..a1798f1 Binary files /dev/null and b/src/main/resources/static/images/researches/attack_ship.inactive.png differ diff --git a/src/main/resources/static/images/researches/attack_ship.png b/src/main/resources/static/images/researches/attack_ship.png new file mode 100644 index 0000000..3762f69 Binary files /dev/null and b/src/main/resources/static/images/researches/attack_ship.png differ diff --git a/src/main/resources/static/images/researches/berth.inactive.png b/src/main/resources/static/images/researches/berth.inactive.png new file mode 100644 index 0000000..daa8f57 Binary files /dev/null and b/src/main/resources/static/images/researches/berth.inactive.png differ diff --git a/src/main/resources/static/images/researches/berth.png b/src/main/resources/static/images/researches/berth.png new file mode 100644 index 0000000..b3ff7df Binary files /dev/null and b/src/main/resources/static/images/researches/berth.png differ diff --git a/src/main/resources/static/images/researches/big_transporter.inactive.png b/src/main/resources/static/images/researches/big_transporter.inactive.png new file mode 100644 index 0000000..861098e Binary files /dev/null and b/src/main/resources/static/images/researches/big_transporter.inactive.png differ diff --git a/src/main/resources/static/images/researches/big_transporter.png b/src/main/resources/static/images/researches/big_transporter.png new file mode 100644 index 0000000..1abb4d7 Binary files /dev/null and b/src/main/resources/static/images/researches/big_transporter.png differ diff --git a/src/main/resources/static/images/researches/bireme.inactive.png b/src/main/resources/static/images/researches/bireme.inactive.png new file mode 100644 index 0000000..9333778 Binary files /dev/null and b/src/main/resources/static/images/researches/bireme.inactive.png differ diff --git a/src/main/resources/static/images/researches/bireme.png b/src/main/resources/static/images/researches/bireme.png new file mode 100644 index 0000000..d6f6359 Binary files /dev/null and b/src/main/resources/static/images/researches/bireme.png differ diff --git a/src/main/resources/static/images/researches/booty.inactive.png b/src/main/resources/static/images/researches/booty.inactive.png new file mode 100644 index 0000000..4a47882 Binary files /dev/null and b/src/main/resources/static/images/researches/booty.inactive.png differ diff --git a/src/main/resources/static/images/researches/booty.png b/src/main/resources/static/images/researches/booty.png new file mode 100644 index 0000000..bd1dc83 Binary files /dev/null and b/src/main/resources/static/images/researches/booty.png differ diff --git a/src/main/resources/static/images/researches/booty_bpv.inactive.png b/src/main/resources/static/images/researches/booty_bpv.inactive.png new file mode 100644 index 0000000..934a55c Binary files /dev/null and b/src/main/resources/static/images/researches/booty_bpv.inactive.png differ diff --git a/src/main/resources/static/images/researches/booty_bpv.png b/src/main/resources/static/images/researches/booty_bpv.png new file mode 100644 index 0000000..6e256ca Binary files /dev/null and b/src/main/resources/static/images/researches/booty_bpv.png differ diff --git a/src/main/resources/static/images/researches/breach.inactive.png b/src/main/resources/static/images/researches/breach.inactive.png new file mode 100644 index 0000000..b03eee7 Binary files /dev/null and b/src/main/resources/static/images/researches/breach.inactive.png differ diff --git a/src/main/resources/static/images/researches/breach.png b/src/main/resources/static/images/researches/breach.png new file mode 100644 index 0000000..b04fe24 Binary files /dev/null and b/src/main/resources/static/images/researches/breach.png differ diff --git a/src/main/resources/static/images/researches/building_crane.inactive.png b/src/main/resources/static/images/researches/building_crane.inactive.png new file mode 100644 index 0000000..d70d63c Binary files /dev/null and b/src/main/resources/static/images/researches/building_crane.inactive.png differ diff --git a/src/main/resources/static/images/researches/building_crane.png b/src/main/resources/static/images/researches/building_crane.png new file mode 100644 index 0000000..84cbc9f Binary files /dev/null and b/src/main/resources/static/images/researches/building_crane.png differ diff --git a/src/main/resources/static/images/researches/cartography.inactive.png b/src/main/resources/static/images/researches/cartography.inactive.png new file mode 100644 index 0000000..85834a0 Binary files /dev/null and b/src/main/resources/static/images/researches/cartography.inactive.png differ diff --git a/src/main/resources/static/images/researches/cartography.png b/src/main/resources/static/images/researches/cartography.png new file mode 100644 index 0000000..f669e2a Binary files /dev/null and b/src/main/resources/static/images/researches/cartography.png differ diff --git a/src/main/resources/static/images/researches/catapult.inactive.png b/src/main/resources/static/images/researches/catapult.inactive.png new file mode 100644 index 0000000..7fadbe4 Binary files /dev/null and b/src/main/resources/static/images/researches/catapult.inactive.png differ diff --git a/src/main/resources/static/images/researches/catapult.png b/src/main/resources/static/images/researches/catapult.png new file mode 100644 index 0000000..2e570a3 Binary files /dev/null and b/src/main/resources/static/images/researches/catapult.png differ diff --git a/src/main/resources/static/images/researches/catapult_speed.inactive.png b/src/main/resources/static/images/researches/catapult_speed.inactive.png new file mode 100644 index 0000000..2668672 Binary files /dev/null and b/src/main/resources/static/images/researches/catapult_speed.inactive.png differ diff --git a/src/main/resources/static/images/researches/catapult_speed.png b/src/main/resources/static/images/researches/catapult_speed.png new file mode 100644 index 0000000..e279311 Binary files /dev/null and b/src/main/resources/static/images/researches/catapult_speed.png differ diff --git a/src/main/resources/static/images/researches/chariot.inactive.png b/src/main/resources/static/images/researches/chariot.inactive.png new file mode 100644 index 0000000..13e4edd Binary files /dev/null and b/src/main/resources/static/images/researches/chariot.inactive.png differ diff --git a/src/main/resources/static/images/researches/chariot.png b/src/main/resources/static/images/researches/chariot.png new file mode 100644 index 0000000..1882a3e Binary files /dev/null and b/src/main/resources/static/images/researches/chariot.png differ diff --git a/src/main/resources/static/images/researches/coinage.inactive.png b/src/main/resources/static/images/researches/coinage.inactive.png new file mode 100644 index 0000000..6c9a8c1 Binary files /dev/null and b/src/main/resources/static/images/researches/coinage.inactive.png differ diff --git a/src/main/resources/static/images/researches/coinage.png b/src/main/resources/static/images/researches/coinage.png new file mode 100644 index 0000000..3d68594 Binary files /dev/null and b/src/main/resources/static/images/researches/coinage.png differ diff --git a/src/main/resources/static/images/researches/colonize_ship.inactive.png b/src/main/resources/static/images/researches/colonize_ship.inactive.png new file mode 100644 index 0000000..5ce37ad Binary files /dev/null and b/src/main/resources/static/images/researches/colonize_ship.inactive.png differ diff --git a/src/main/resources/static/images/researches/colonize_ship.png b/src/main/resources/static/images/researches/colonize_ship.png new file mode 100644 index 0000000..4c19bc3 Binary files /dev/null and b/src/main/resources/static/images/researches/colonize_ship.png differ diff --git a/src/main/resources/static/images/researches/combat_experience.inactive.png b/src/main/resources/static/images/researches/combat_experience.inactive.png new file mode 100644 index 0000000..c6a3658 Binary files /dev/null and b/src/main/resources/static/images/researches/combat_experience.inactive.png differ diff --git a/src/main/resources/static/images/researches/combat_experience.png b/src/main/resources/static/images/researches/combat_experience.png new file mode 100644 index 0000000..53b1558 Binary files /dev/null and b/src/main/resources/static/images/researches/combat_experience.png differ diff --git a/src/main/resources/static/images/researches/conscription.inactive.png b/src/main/resources/static/images/researches/conscription.inactive.png new file mode 100644 index 0000000..382da96 Binary files /dev/null and b/src/main/resources/static/images/researches/conscription.inactive.png differ diff --git a/src/main/resources/static/images/researches/conscription.png b/src/main/resources/static/images/researches/conscription.png new file mode 100644 index 0000000..228635e Binary files /dev/null and b/src/main/resources/static/images/researches/conscription.png differ diff --git a/src/main/resources/static/images/researches/cryptography.inactive.png b/src/main/resources/static/images/researches/cryptography.inactive.png new file mode 100644 index 0000000..79545fc Binary files /dev/null and b/src/main/resources/static/images/researches/cryptography.inactive.png differ diff --git a/src/main/resources/static/images/researches/cryptography.png b/src/main/resources/static/images/researches/cryptography.png new file mode 100644 index 0000000..82a52fe Binary files /dev/null and b/src/main/resources/static/images/researches/cryptography.png differ diff --git a/src/main/resources/static/images/researches/defense_attack.inactive.png b/src/main/resources/static/images/researches/defense_attack.inactive.png new file mode 100644 index 0000000..74046f0 Binary files /dev/null and b/src/main/resources/static/images/researches/defense_attack.inactive.png differ diff --git a/src/main/resources/static/images/researches/defense_attack.png b/src/main/resources/static/images/researches/defense_attack.png new file mode 100644 index 0000000..9e8c83c Binary files /dev/null and b/src/main/resources/static/images/researches/defense_attack.png differ diff --git a/src/main/resources/static/images/researches/democracy.inactive.png b/src/main/resources/static/images/researches/democracy.inactive.png new file mode 100644 index 0000000..dd107a0 Binary files /dev/null and b/src/main/resources/static/images/researches/democracy.inactive.png differ diff --git a/src/main/resources/static/images/researches/democracy.png b/src/main/resources/static/images/researches/democracy.png new file mode 100644 index 0000000..8c3e577 Binary files /dev/null and b/src/main/resources/static/images/researches/democracy.png differ diff --git a/src/main/resources/static/images/researches/demolition_ship.inactive.png b/src/main/resources/static/images/researches/demolition_ship.inactive.png new file mode 100644 index 0000000..08baa73 Binary files /dev/null and b/src/main/resources/static/images/researches/demolition_ship.inactive.png differ diff --git a/src/main/resources/static/images/researches/demolition_ship.png b/src/main/resources/static/images/researches/demolition_ship.png new file mode 100644 index 0000000..6a4d797 Binary files /dev/null and b/src/main/resources/static/images/researches/demolition_ship.png differ diff --git a/src/main/resources/static/images/researches/diplomacy.inactive.png b/src/main/resources/static/images/researches/diplomacy.inactive.png new file mode 100644 index 0000000..cf83789 Binary files /dev/null and b/src/main/resources/static/images/researches/diplomacy.inactive.png differ diff --git a/src/main/resources/static/images/researches/diplomacy.png b/src/main/resources/static/images/researches/diplomacy.png new file mode 100644 index 0000000..7696176 Binary files /dev/null and b/src/main/resources/static/images/researches/diplomacy.png differ diff --git a/src/main/resources/static/images/researches/divine_selection.inactive.png b/src/main/resources/static/images/researches/divine_selection.inactive.png new file mode 100644 index 0000000..a963f21 Binary files /dev/null and b/src/main/resources/static/images/researches/divine_selection.inactive.png differ diff --git a/src/main/resources/static/images/researches/divine_selection.png b/src/main/resources/static/images/researches/divine_selection.png new file mode 100644 index 0000000..032d704 Binary files /dev/null and b/src/main/resources/static/images/researches/divine_selection.png differ diff --git a/src/main/resources/static/images/researches/espionage.inactive.png b/src/main/resources/static/images/researches/espionage.inactive.png new file mode 100644 index 0000000..a7bbe09 Binary files /dev/null and b/src/main/resources/static/images/researches/espionage.inactive.png differ diff --git a/src/main/resources/static/images/researches/espionage.png b/src/main/resources/static/images/researches/espionage.png new file mode 100644 index 0000000..a318072 Binary files /dev/null and b/src/main/resources/static/images/researches/espionage.png differ diff --git a/src/main/resources/static/images/researches/godsent.inactive.png b/src/main/resources/static/images/researches/godsent.inactive.png new file mode 100644 index 0000000..a9077ae Binary files /dev/null and b/src/main/resources/static/images/researches/godsent.inactive.png differ diff --git a/src/main/resources/static/images/researches/godsent.png b/src/main/resources/static/images/researches/godsent.png new file mode 100644 index 0000000..4355523 Binary files /dev/null and b/src/main/resources/static/images/researches/godsent.png differ diff --git a/src/main/resources/static/images/researches/hoplite.inactive.png b/src/main/resources/static/images/researches/hoplite.inactive.png new file mode 100644 index 0000000..b9bacdc Binary files /dev/null and b/src/main/resources/static/images/researches/hoplite.inactive.png differ diff --git a/src/main/resources/static/images/researches/hoplite.png b/src/main/resources/static/images/researches/hoplite.png new file mode 100644 index 0000000..3747fe6 Binary files /dev/null and b/src/main/resources/static/images/researches/hoplite.png differ diff --git a/src/main/resources/static/images/researches/instructor.inactive.png b/src/main/resources/static/images/researches/instructor.inactive.png new file mode 100644 index 0000000..9b34a3b Binary files /dev/null and b/src/main/resources/static/images/researches/instructor.inactive.png differ diff --git a/src/main/resources/static/images/researches/instructor.png b/src/main/resources/static/images/researches/instructor.png new file mode 100644 index 0000000..1e663ac Binary files /dev/null and b/src/main/resources/static/images/researches/instructor.png differ diff --git a/src/main/resources/static/images/researches/mathematics.inactive.png b/src/main/resources/static/images/researches/mathematics.inactive.png new file mode 100644 index 0000000..fd16fd8 Binary files /dev/null and b/src/main/resources/static/images/researches/mathematics.inactive.png differ diff --git a/src/main/resources/static/images/researches/mathematics.png b/src/main/resources/static/images/researches/mathematics.png new file mode 100644 index 0000000..983fb95 Binary files /dev/null and b/src/main/resources/static/images/researches/mathematics.png differ diff --git a/src/main/resources/static/images/researches/meteorology.inactive.png b/src/main/resources/static/images/researches/meteorology.inactive.png new file mode 100644 index 0000000..7f364ac Binary files /dev/null and b/src/main/resources/static/images/researches/meteorology.inactive.png differ diff --git a/src/main/resources/static/images/researches/meteorology.png b/src/main/resources/static/images/researches/meteorology.png new file mode 100644 index 0000000..9008412 Binary files /dev/null and b/src/main/resources/static/images/researches/meteorology.png differ diff --git a/src/main/resources/static/images/researches/phalanx.inactive.png b/src/main/resources/static/images/researches/phalanx.inactive.png new file mode 100644 index 0000000..81da1ab Binary files /dev/null and b/src/main/resources/static/images/researches/phalanx.inactive.png differ diff --git a/src/main/resources/static/images/researches/phalanx.png b/src/main/resources/static/images/researches/phalanx.png new file mode 100644 index 0000000..727833d Binary files /dev/null and b/src/main/resources/static/images/researches/phalanx.png differ diff --git a/src/main/resources/static/images/researches/pillage.inactive.png b/src/main/resources/static/images/researches/pillage.inactive.png new file mode 100644 index 0000000..eae1bb4 Binary files /dev/null and b/src/main/resources/static/images/researches/pillage.inactive.png differ diff --git a/src/main/resources/static/images/researches/pillage.png b/src/main/resources/static/images/researches/pillage.png new file mode 100644 index 0000000..bd40161 Binary files /dev/null and b/src/main/resources/static/images/researches/pillage.png differ diff --git a/src/main/resources/static/images/researches/plow.inactive.png b/src/main/resources/static/images/researches/plow.inactive.png new file mode 100644 index 0000000..cd2603d Binary files /dev/null and b/src/main/resources/static/images/researches/plow.inactive.png differ diff --git a/src/main/resources/static/images/researches/plow.png b/src/main/resources/static/images/researches/plow.png new file mode 100644 index 0000000..6ee3425 Binary files /dev/null and b/src/main/resources/static/images/researches/plow.png differ diff --git a/src/main/resources/static/images/researches/pottery.inactive.png b/src/main/resources/static/images/researches/pottery.inactive.png new file mode 100644 index 0000000..3e5fdeb Binary files /dev/null and b/src/main/resources/static/images/researches/pottery.inactive.png differ diff --git a/src/main/resources/static/images/researches/pottery.png b/src/main/resources/static/images/researches/pottery.png new file mode 100644 index 0000000..3a91ed6 Binary files /dev/null and b/src/main/resources/static/images/researches/pottery.png differ diff --git a/src/main/resources/static/images/researches/ram.inactive.png b/src/main/resources/static/images/researches/ram.inactive.png new file mode 100644 index 0000000..93d6f66 Binary files /dev/null and b/src/main/resources/static/images/researches/ram.inactive.png differ diff --git a/src/main/resources/static/images/researches/ram.png b/src/main/resources/static/images/researches/ram.png new file mode 100644 index 0000000..df34a9b Binary files /dev/null and b/src/main/resources/static/images/researches/ram.png differ diff --git a/src/main/resources/static/images/researches/rider.inactive.png b/src/main/resources/static/images/researches/rider.inactive.png new file mode 100644 index 0000000..766d49c Binary files /dev/null and b/src/main/resources/static/images/researches/rider.inactive.png differ diff --git a/src/main/resources/static/images/researches/rider.png b/src/main/resources/static/images/researches/rider.png new file mode 100644 index 0000000..95c1f2c Binary files /dev/null and b/src/main/resources/static/images/researches/rider.png differ diff --git a/src/main/resources/static/images/researches/set_sail.inactive.png b/src/main/resources/static/images/researches/set_sail.inactive.png new file mode 100644 index 0000000..2fa4c25 Binary files /dev/null and b/src/main/resources/static/images/researches/set_sail.inactive.png differ diff --git a/src/main/resources/static/images/researches/set_sail.png b/src/main/resources/static/images/researches/set_sail.png new file mode 100644 index 0000000..84b7fd6 Binary files /dev/null and b/src/main/resources/static/images/researches/set_sail.png differ diff --git a/src/main/resources/static/images/researches/shipwright.inactive.png b/src/main/resources/static/images/researches/shipwright.inactive.png new file mode 100644 index 0000000..7c0ff4a Binary files /dev/null and b/src/main/resources/static/images/researches/shipwright.inactive.png differ diff --git a/src/main/resources/static/images/researches/shipwright.png b/src/main/resources/static/images/researches/shipwright.png new file mode 100644 index 0000000..6d3ce36 Binary files /dev/null and b/src/main/resources/static/images/researches/shipwright.png differ diff --git a/src/main/resources/static/images/researches/siege_breaker.inactive.png b/src/main/resources/static/images/researches/siege_breaker.inactive.png new file mode 100644 index 0000000..c8499b9 Binary files /dev/null and b/src/main/resources/static/images/researches/siege_breaker.inactive.png differ diff --git a/src/main/resources/static/images/researches/siege_breaker.png b/src/main/resources/static/images/researches/siege_breaker.png new file mode 100644 index 0000000..a72e351 Binary files /dev/null and b/src/main/resources/static/images/researches/siege_breaker.png differ diff --git a/src/main/resources/static/images/researches/slinger.inactive.png b/src/main/resources/static/images/researches/slinger.inactive.png new file mode 100644 index 0000000..a177e6a Binary files /dev/null and b/src/main/resources/static/images/researches/slinger.inactive.png differ diff --git a/src/main/resources/static/images/researches/slinger.png b/src/main/resources/static/images/researches/slinger.png new file mode 100644 index 0000000..ef04cef Binary files /dev/null and b/src/main/resources/static/images/researches/slinger.png differ diff --git a/src/main/resources/static/images/researches/small_transporter.inactive.png b/src/main/resources/static/images/researches/small_transporter.inactive.png new file mode 100644 index 0000000..399e117 Binary files /dev/null and b/src/main/resources/static/images/researches/small_transporter.inactive.png differ diff --git a/src/main/resources/static/images/researches/small_transporter.png b/src/main/resources/static/images/researches/small_transporter.png new file mode 100644 index 0000000..ac246b7 Binary files /dev/null and b/src/main/resources/static/images/researches/small_transporter.png differ diff --git a/src/main/resources/static/images/researches/stone_storm.inactive.png b/src/main/resources/static/images/researches/stone_storm.inactive.png new file mode 100644 index 0000000..25e6574 Binary files /dev/null and b/src/main/resources/static/images/researches/stone_storm.inactive.png differ diff --git a/src/main/resources/static/images/researches/stone_storm.png b/src/main/resources/static/images/researches/stone_storm.png new file mode 100644 index 0000000..d393785 Binary files /dev/null and b/src/main/resources/static/images/researches/stone_storm.png differ diff --git a/src/main/resources/static/images/researches/strong_wine.inactive.png b/src/main/resources/static/images/researches/strong_wine.inactive.png new file mode 100644 index 0000000..364aa85 Binary files /dev/null and b/src/main/resources/static/images/researches/strong_wine.inactive.png differ diff --git a/src/main/resources/static/images/researches/strong_wine.png b/src/main/resources/static/images/researches/strong_wine.png new file mode 100644 index 0000000..f045cd9 Binary files /dev/null and b/src/main/resources/static/images/researches/strong_wine.png differ diff --git a/src/main/resources/static/images/researches/sword.inactive.png b/src/main/resources/static/images/researches/sword.inactive.png new file mode 100644 index 0000000..d318d27 Binary files /dev/null and b/src/main/resources/static/images/researches/sword.inactive.png differ diff --git a/src/main/resources/static/images/researches/sword.png b/src/main/resources/static/images/researches/sword.png new file mode 100644 index 0000000..c403305 Binary files /dev/null and b/src/main/resources/static/images/researches/sword.png differ diff --git a/src/main/resources/static/images/researches/take_over.inactive.png b/src/main/resources/static/images/researches/take_over.inactive.png new file mode 100644 index 0000000..f29917b Binary files /dev/null and b/src/main/resources/static/images/researches/take_over.inactive.png differ diff --git a/src/main/resources/static/images/researches/take_over.png b/src/main/resources/static/images/researches/take_over.png new file mode 100644 index 0000000..e548e58 Binary files /dev/null and b/src/main/resources/static/images/researches/take_over.png differ diff --git a/src/main/resources/static/images/researches/take_over_old.inactive.png b/src/main/resources/static/images/researches/take_over_old.inactive.png new file mode 100644 index 0000000..c990f07 Binary files /dev/null and b/src/main/resources/static/images/researches/take_over_old.inactive.png differ diff --git a/src/main/resources/static/images/researches/take_over_old.png b/src/main/resources/static/images/researches/take_over_old.png new file mode 100644 index 0000000..f428a05 Binary files /dev/null and b/src/main/resources/static/images/researches/take_over_old.png differ diff --git a/src/main/resources/static/images/researches/temple_looting.inactive.png b/src/main/resources/static/images/researches/temple_looting.inactive.png new file mode 100644 index 0000000..5bf4a89 Binary files /dev/null and b/src/main/resources/static/images/researches/temple_looting.inactive.png differ diff --git a/src/main/resources/static/images/researches/temple_looting.png b/src/main/resources/static/images/researches/temple_looting.png new file mode 100644 index 0000000..0d3fb81 Binary files /dev/null and b/src/main/resources/static/images/researches/temple_looting.png differ diff --git a/src/main/resources/static/images/researches/town_guard.inactive.png b/src/main/resources/static/images/researches/town_guard.inactive.png new file mode 100644 index 0000000..7869744 Binary files /dev/null and b/src/main/resources/static/images/researches/town_guard.inactive.png differ diff --git a/src/main/resources/static/images/researches/town_guard.png b/src/main/resources/static/images/researches/town_guard.png new file mode 100644 index 0000000..dfece8a Binary files /dev/null and b/src/main/resources/static/images/researches/town_guard.png differ diff --git a/src/main/resources/static/images/researches/trireme.inactive.png b/src/main/resources/static/images/researches/trireme.inactive.png new file mode 100644 index 0000000..b95cc6d Binary files /dev/null and b/src/main/resources/static/images/researches/trireme.inactive.png differ diff --git a/src/main/resources/static/images/researches/trireme.png b/src/main/resources/static/images/researches/trireme.png new file mode 100644 index 0000000..1da3307 Binary files /dev/null and b/src/main/resources/static/images/researches/trireme.png differ diff --git a/src/main/resources/static/images/researches/units_claim.inactive.png b/src/main/resources/static/images/researches/units_claim.inactive.png new file mode 100644 index 0000000..8e768c4 Binary files /dev/null and b/src/main/resources/static/images/researches/units_claim.inactive.png differ diff --git a/src/main/resources/static/images/researches/units_claim.png b/src/main/resources/static/images/researches/units_claim.png new file mode 100644 index 0000000..b07220c Binary files /dev/null and b/src/main/resources/static/images/researches/units_claim.png differ diff --git a/src/main/resources/templates/simulator.html b/src/main/resources/templates/simulator.html index 32a7d08..a46b732 100644 --- a/src/main/resources/templates/simulator.html +++ b/src/main/resources/templates/simulator.html @@ -169,7 +169,7 @@ span.fixed50px {
- +