diff --git a/.gitattributes b/.gitattributes index 743c78b0d36..abd239dc0cf 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7947,6 +7947,11 @@ res/images/symbols-13/C.png -text svneol=unset#image/png res/images/symbols-13/G.png -text svneol=unset#image/png res/images/symbols-13/GU.png -text svneol=unset#image/png res/images/symbols-13/GW.png -text svneol=unset#image/png +res/images/symbols-13/PB.png -text svneol=unset#image/png +res/images/symbols-13/PG.png -text svneol=unset#image/png +res/images/symbols-13/PR.png -text svneol=unset#image/png +res/images/symbols-13/PU.png -text svneol=unset#image/png +res/images/symbols-13/PW.png -text svneol=unset#image/png res/images/symbols-13/Q.png -text svneol=unset#image/png res/images/symbols-13/R.png -text svneol=unset#image/png res/images/symbols-13/RG.png -text svneol=unset#image/png diff --git a/res/images/symbols-13/PB.png b/res/images/symbols-13/PB.png new file mode 100644 index 00000000000..9cb95b41b24 Binary files /dev/null and b/res/images/symbols-13/PB.png differ diff --git a/res/images/symbols-13/PG.png b/res/images/symbols-13/PG.png new file mode 100644 index 00000000000..038efcde2bd Binary files /dev/null and b/res/images/symbols-13/PG.png differ diff --git a/res/images/symbols-13/PR.png b/res/images/symbols-13/PR.png new file mode 100644 index 00000000000..1dbc9365e23 Binary files /dev/null and b/res/images/symbols-13/PR.png differ diff --git a/res/images/symbols-13/PU.png b/res/images/symbols-13/PU.png new file mode 100644 index 00000000000..8e8b132c331 Binary files /dev/null and b/res/images/symbols-13/PU.png differ diff --git a/res/images/symbols-13/PW.png b/res/images/symbols-13/PW.png new file mode 100644 index 00000000000..813ad96dbaf Binary files /dev/null and b/res/images/symbols-13/PW.png differ diff --git a/src/arcane/ui/util/ManaSymbols.java b/src/arcane/ui/util/ManaSymbols.java index 972941df47c..94e8f324f16 100644 --- a/src/arcane/ui/util/ManaSymbols.java +++ b/src/arcane/ui/util/ManaSymbols.java @@ -18,7 +18,7 @@ public class ManaSymbols { static public void loadImages () { String[] symbols = new String[] {"0", "1", "10", "11", "12", "15", "16", "2", "20", "2W", "2U", "2R", "2G", "2B", "3", "4", "5", "6", "7", "8", "9", "B", "BG", "BR", "G", "GU", "GW", "R", "RG", "RW", "S", "T", "U", "UB", - "UR", "W", "WB", "WU", "X", "Y", "Z", "slash", "attack", "defend", "summonsick"}; + "UR", "W", "WB", "WU", "PW","PU","PB","PR","PG", "X", "Y", "Z", "slash", "attack", "defend", "summonsick"}; for (String symbol : symbols) manaImages.put(symbol, UI.getImageIcon("res/images/symbols-13/" + symbol + ".png").getImage()); }