mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
Merge branch 'Card-Forge:master' into master
This commit is contained in:
@@ -2,10 +2,7 @@ package forge.util;
|
||||
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.*;
|
||||
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.tuple.Pair;
|
||||
@@ -19,6 +16,9 @@ public class CardTranslation {
|
||||
private static Map <String, String> translatedoracles;
|
||||
private static Map <String, List <Pair <String, String> > > oracleMappings;
|
||||
private static Map <String, String> translatedCaches;
|
||||
private static Map <String, String> translatedEffectNames;
|
||||
private static Map <String, String> translatedTokenNames;
|
||||
private static final List <String> knownEffectNames = Arrays.asList("The Ring", "The Monarch", "The Initiative", "City's Blessing", "Keyword Effects");
|
||||
private static String languageSelected = "en-US";
|
||||
|
||||
private static void readTranslationFile(String language, String languagesDirectory) {
|
||||
@@ -43,7 +43,8 @@ public class CardTranslation {
|
||||
}
|
||||
}
|
||||
} catch (IOException e) {
|
||||
System.err.println("Error reading translation file: cardnames-" + language + ".txt");
|
||||
if (!"en-US".equalsIgnoreCase(language))
|
||||
System.err.println("Error reading translation file: cardnames-" + language + ".txt");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -55,13 +56,144 @@ public class CardTranslation {
|
||||
String rightname = name.substring(splitIndex + 4, name.length());
|
||||
return translatednames.getOrDefault(leftname, leftname) + " // " + translatednames.getOrDefault(rightname, rightname);
|
||||
}
|
||||
String tname = translatednames.get(name);
|
||||
return (tname == null || tname.isEmpty()) ? name : tname;
|
||||
try {
|
||||
if (name.endsWith(" Token")) {
|
||||
return translateTokenName(name);
|
||||
} else if (name.startsWith("Emblem - ") || name.contains("'s Effect") || name.contains("'s Boon")) {
|
||||
return translateEffectNames(name);
|
||||
} else if (knownEffectNames.contains(name)) {
|
||||
return translateKnownEffectNames(name);
|
||||
} else {
|
||||
String tname = translatednames.get(name);
|
||||
return (tname == null || tname.isEmpty()) ? name : tname;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
||||
return name;
|
||||
}
|
||||
|
||||
private static String translateTokenName(String name) {
|
||||
if (translatedTokenNames == null)
|
||||
translatedTokenNames = new HashMap<>();
|
||||
String ttype = translatedTokenNames.get(name);
|
||||
if (ttype == null) {
|
||||
String sub = name.replace(" Token", "");
|
||||
ttype = Localizer.getInstance().getMessageorUseDefault("lbl" + sub, "");
|
||||
if (ttype == null || ttype.isEmpty()) {
|
||||
ttype = name;
|
||||
} else {
|
||||
ttype = ttype + " " + Localizer.getInstance().getMessage("lblToken");
|
||||
}
|
||||
translatedTokenNames.put(name, ttype);
|
||||
return ttype;
|
||||
} else {
|
||||
return ttype;
|
||||
}
|
||||
}
|
||||
|
||||
private static String translateKnownEffectNames(String name) {
|
||||
if (translatedEffectNames == null)
|
||||
translatedEffectNames = new HashMap<>();
|
||||
String fname = translatedEffectNames.get(name);
|
||||
if (fname == null) {
|
||||
switch (name) {
|
||||
case "The Ring":
|
||||
fname = Localizer.getInstance().getMessage("lblTheRing");
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
case "The Monarch":
|
||||
fname = Localizer.getInstance().getMessage("lblTheMonarch");
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
case "The Initiative":
|
||||
fname = Localizer.getInstance().getMessage("lblTheInitiative");
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
case "City's Blessing":
|
||||
fname = Localizer.getInstance().getMessage("lblCityBlessing");
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
case "Keyword Effects":
|
||||
fname = Localizer.getInstance().getMessage("lblKeywordEffects");
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
default:
|
||||
return name;
|
||||
}
|
||||
} else {
|
||||
return fname;
|
||||
}
|
||||
}
|
||||
|
||||
private static String translateEffectNames(String name) {
|
||||
if (translatedEffectNames == null)
|
||||
translatedEffectNames = new HashMap<>();
|
||||
String fname = translatedEffectNames.get(name);
|
||||
if (fname == null) {
|
||||
String finalname = name.replaceAll("\\([^()]*\\)", "");
|
||||
if (finalname.contains(" 's Effect")) {
|
||||
finalname = finalname.replace( " 's Effect", "");
|
||||
fname = translatednames.get(finalname);
|
||||
if (fname == null || fname.isEmpty())
|
||||
fname = finalname;
|
||||
else {
|
||||
fname = fname + " " + Localizer.getInstance().getMessage("lblEffect");
|
||||
}
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
} else if (finalname.contains("'s Effect")) {
|
||||
finalname = finalname.replace( "'s Effect", "");
|
||||
fname = translatednames.get(finalname);
|
||||
if (fname == null || fname.isEmpty())
|
||||
fname = finalname;
|
||||
else {
|
||||
fname = fname + " " + Localizer.getInstance().getMessage("lblEffect");
|
||||
}
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
} else if (finalname.contains(" 's Boon")) {
|
||||
finalname = finalname.replace( " 's Boon", "");
|
||||
fname = translatednames.get(finalname);
|
||||
if (fname == null || fname.isEmpty())
|
||||
fname = finalname;
|
||||
else {
|
||||
fname = fname + " " + Localizer.getInstance().getMessage("lblBoon");
|
||||
}
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
} else if (finalname.contains("'s Boon")) {
|
||||
finalname = finalname.replace( "'s Boon", "");
|
||||
fname = translatednames.get(finalname);
|
||||
if (fname == null || fname.isEmpty())
|
||||
fname = finalname;
|
||||
else {
|
||||
fname = fname + " " + Localizer.getInstance().getMessage("lblBoon");
|
||||
}
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
} else if (finalname.startsWith("Emblem - ")) {
|
||||
String []s = finalname.split(" - ");
|
||||
try {
|
||||
fname = translatednames.get(s[1].endsWith(" ") ? s[1].substring(0, s[1].lastIndexOf(" ")) : s[1]);
|
||||
if (fname == null || fname.isEmpty())
|
||||
fname = finalname;
|
||||
else {
|
||||
fname = fname + " " + Localizer.getInstance().getMessage("lblEmblem");
|
||||
}
|
||||
translatedEffectNames.put(name, fname);
|
||||
return fname;
|
||||
} catch (Exception e) {
|
||||
//e.printStackTrace();
|
||||
}
|
||||
}
|
||||
return name;
|
||||
} else {
|
||||
return fname;
|
||||
}
|
||||
}
|
||||
|
||||
public static String getTranslatedType(String name, String originaltype) {
|
||||
if (needsTranslation()) {
|
||||
String ttype = translatedtypes.get(name);
|
||||
@@ -167,6 +299,8 @@ public class CardTranslation {
|
||||
}
|
||||
|
||||
public static String translateSingleDescriptionText(String descText, String cardName) {
|
||||
if (descText == null)
|
||||
return "";
|
||||
if (!needsTranslation()) return descText;
|
||||
if (translatedCaches.containsKey(descText)) return translatedCaches.get(descText);
|
||||
|
||||
|
||||
@@ -497,10 +497,9 @@ public abstract class SpellAbilityEffect {
|
||||
final Card hostCard = sa.getHostCard();
|
||||
final Game game = hostCard.getGame();
|
||||
final Card eff = new Card(game.nextCardId(), game);
|
||||
String finalname = name.replaceAll("\\([^()]*\\)", "");
|
||||
|
||||
eff.setTimestamp(game.getNextTimestamp());
|
||||
eff.setName(finalname);
|
||||
eff.setName(name);
|
||||
eff.setColor(hostCard.getColor().getColor());
|
||||
// if name includes emblem then it should be one
|
||||
if (name.startsWith("Emblem")) {
|
||||
|
||||
@@ -68,7 +68,7 @@ public class SacrificeEffect extends SpellAbilityEffect {
|
||||
int n = card.getCounters(CounterEnumType.AGE);
|
||||
if (n > 0) {
|
||||
Cost cumCost = new Cost(sa.getParam("CumulativeUpkeep"), true);
|
||||
payCost.mergeTo(cumCost, n);
|
||||
payCost.mergeTo(cumCost, n, sa);
|
||||
}
|
||||
|
||||
game.updateLastStateForCard(card);
|
||||
|
||||
@@ -907,7 +907,7 @@ public class Cost implements Serializable {
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public void mergeTo(Cost source, int amt) {
|
||||
public void mergeTo(Cost source, int amt, final SpellAbility sa) {
|
||||
// multiply to create the full cost
|
||||
if (amt > 1) {
|
||||
// to double itself we need to work on a copy
|
||||
@@ -918,13 +918,16 @@ public class Cost implements Serializable {
|
||||
}
|
||||
}
|
||||
// combine costs (these shouldn't mix together)
|
||||
this.add(source, false);
|
||||
this.add(source, false, sa);
|
||||
}
|
||||
|
||||
public Cost add(Cost cost1) {
|
||||
return add(cost1, true);
|
||||
}
|
||||
public Cost add(Cost cost1, boolean mergeAdditional) {
|
||||
return add(cost1, mergeAdditional, null);
|
||||
}
|
||||
public Cost add(Cost cost1, boolean mergeAdditional, final SpellAbility sa) {
|
||||
CostPartMana costPart2 = this.getCostMana();
|
||||
List<CostPart> toRemove = Lists.newArrayList();
|
||||
for (final CostPart part : cost1.getCostParts()) {
|
||||
@@ -954,17 +957,21 @@ public class Cost implements Serializable {
|
||||
part instanceof CostExile))) {
|
||||
boolean alreadyAdded = false;
|
||||
for (final CostPart other : costParts) {
|
||||
Integer otherAmount = other.convertAmount();
|
||||
// support X loyalty
|
||||
if (otherAmount == null && sa != null && sa.isPwAbility()) {
|
||||
otherAmount = other.getAbilityAmount(sa);
|
||||
}
|
||||
if ((other.getClass().equals(part.getClass()) || (part instanceof CostPutCounter && ((CostPutCounter)part).getCounter().is(CounterEnumType.LOYALTY))) &&
|
||||
part.getType().equals(other.getType()) &&
|
||||
StringUtils.isNumeric(part.getAmount()) &&
|
||||
StringUtils.isNumeric(other.getAmount())) {
|
||||
String amount = String.valueOf(part.convertAmount() + other.convertAmount());
|
||||
otherAmount != null) {
|
||||
String amount = String.valueOf(part.convertAmount() + otherAmount);
|
||||
if (part instanceof CostPutCounter) { // CR 606.5 path for Carth
|
||||
// TODO support X
|
||||
if (other instanceof CostPutCounter && ((CostPutCounter)other).getCounter().equals(((CostPutCounter) part).getCounter())) {
|
||||
costParts.add(new CostPutCounter(amount, ((CostPutCounter) part).getCounter(), part.getType(), part.getTypeDescription()));
|
||||
} else if (other instanceof CostRemoveCounter && ((CostRemoveCounter)other).counter.is(CounterEnumType.LOYALTY)) {
|
||||
Integer counters = other.convertAmount() - part.convertAmount();
|
||||
Integer counters = otherAmount - part.convertAmount();
|
||||
// the cost can turn positive if multiple Carth raise it
|
||||
if (counters < 0) {
|
||||
costParts.add(new CostPutCounter(String.valueOf(counters *-1), CounterType.get(CounterEnumType.LOYALTY), part.getType(), part.getTypeDescription()));
|
||||
|
||||
@@ -162,7 +162,7 @@ public class CostAdjustment {
|
||||
}
|
||||
if (count > 0) {
|
||||
Cost part = new Cost(scost, sa.isAbility(), sa.getHostCard().equals(hostCard));
|
||||
cost.mergeTo(part, count);
|
||||
cost.mergeTo(part, count, sa);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<editorsettings>
|
||||
<export target="wastetown..tmx" format="tmx"/>
|
||||
</editorsettings>
|
||||
<tileset firstgid="1" source="../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../tileset/buildings.tsx"/>
|
||||
<tileset firstgid="1" source="../../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../../tileset/buildings.tsx"/>
|
||||
<layer id="6" name="Collision" width="30" height="17">
|
||||
<data encoding="base64" compression="zlib">
|
||||
eJxjYMANonkZGHbxkIejePEYTADI8pCvdycZdsP8uZsCe0FAmkT9lPhz1F7627uTxPRNLXuRATF+H7V31N5Reym3dy9QTR03Atdz08deYupXWJhIk1AnIwMAhyEnfQ==
|
||||
@@ -34,40 +34,40 @@
|
||||
</data>
|
||||
</layer>
|
||||
<objectgroup id="4" name="Objects">
|
||||
<object id="38" template="../obj/entry_up.tx" x="240" y="272"/>
|
||||
<object id="41" template="../obj/shop.tx" x="128" y="67"/>
|
||||
<object id="42" template="../obj/shop.tx" x="303.5" y="98"/>
|
||||
<object id="43" template="../obj/shop.tx" x="352.5" y="144"/>
|
||||
<object id="44" template="../obj/shop.tx" x="176" y="66.5"/>
|
||||
<object id="45" template="../obj/shop.tx" x="240" y="115"/>
|
||||
<object id="46" template="../obj/shop.tx" x="383" y="210"/>
|
||||
<object id="47" template="../obj/inn.tx" x="143.5" y="162.5"/>
|
||||
<object id="48" template="../obj/enemy.tx" x="259.5" y="190">
|
||||
<object id="38" template="../../obj/entry_up.tx" x="240" y="272"/>
|
||||
<object id="41" template="../../obj/shop.tx" x="128" y="67"/>
|
||||
<object id="42" template="../../obj/shop.tx" x="303.5" y="98"/>
|
||||
<object id="43" template="../../obj/shop.tx" x="352.5" y="144"/>
|
||||
<object id="44" template="../../obj/shop.tx" x="176" y="66.5"/>
|
||||
<object id="45" template="../../obj/shop.tx" x="240" y="115"/>
|
||||
<object id="46" template="../../obj/shop.tx" x="383" y="210"/>
|
||||
<object id="47" template="../../obj/inn.tx" x="143.5" y="162.5"/>
|
||||
<object id="48" template="../../obj/enemy.tx" x="259.5" y="190">
|
||||
<properties>
|
||||
<property name="enemy" value="Elf"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="49" template="../obj/enemy.tx" x="215.5" y="230.5">
|
||||
<object id="49" template="../../obj/enemy.tx" x="215.5" y="230.5">
|
||||
<properties>
|
||||
<property name="enemy" value="Elf"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="50" template="../obj/enemy.tx" x="318" y="219">
|
||||
<object id="50" template="../../obj/enemy.tx" x="318" y="219">
|
||||
<properties>
|
||||
<property name="enemy" value="Elf"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="51" template="../obj/enemy.tx" x="215" y="173.5">
|
||||
<object id="51" template="../../obj/enemy.tx" x="215" y="173.5">
|
||||
<properties>
|
||||
<property name="enemy" value="Elf warrior"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="52" template="../obj/enemy.tx" x="326.5" y="135.5">
|
||||
<object id="52" template="../../obj/enemy.tx" x="326.5" y="135.5">
|
||||
<properties>
|
||||
<property name="enemy" value="Elf warrior"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="53" template="../obj/enemy.tx" x="194.5" y="109.5">
|
||||
<object id="53" template="../../obj/enemy.tx" x="194.5" y="109.5">
|
||||
<properties>
|
||||
<property name="enemy" value="High Elf"/>
|
||||
</properties>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<editorsettings>
|
||||
<export target="wastetown..tmx" format="tmx"/>
|
||||
</editorsettings>
|
||||
<tileset firstgid="1" source="../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../tileset/buildings.tsx"/>
|
||||
<tileset firstgid="1" source="../../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../../tileset/buildings.tsx"/>
|
||||
<layer id="6" name="Collision" width="30" height="17">
|
||||
<data encoding="base64" compression="zlib">
|
||||
eJxjYBhYEM3LwLCLh7o4ipewvbI81PeLNBFmjto7au+ovaP2jtqLHxBTzqO7TZoIPdQA2OylB6CmvQCT/yIe
|
||||
@@ -34,13 +34,13 @@
|
||||
</data>
|
||||
</layer>
|
||||
<objectgroup id="4" name="Objects">
|
||||
<object id="38" template="../obj/entry_up.tx" x="192" y="271.659" width="48" height="16"/>
|
||||
<object id="41" template="../obj/shop.tx" x="88" y="177.667"/>
|
||||
<object id="42" template="../obj/shop.tx" x="119" y="113.667"/>
|
||||
<object id="43" template="../obj/shop.tx" x="160.333" y="81.6667"/>
|
||||
<object id="44" template="../obj/shop.tx" x="263.667" y="82.3333"/>
|
||||
<object id="45" template="../obj/shop.tx" x="304.667" y="112.667"/>
|
||||
<object id="46" template="../obj/shop.tx" x="343" y="178.667"/>
|
||||
<object id="47" template="../obj/inn.tx" x="215.333" y="81.3333"/>
|
||||
<object id="38" template="../../obj/entry_up.tx" x="192" y="271.659" width="48" height="16"/>
|
||||
<object id="41" template="../../obj/shop.tx" x="88" y="177.667"/>
|
||||
<object id="42" template="../../obj/shop.tx" x="119" y="113.667"/>
|
||||
<object id="43" template="../../obj/shop.tx" x="160.333" y="81.6667"/>
|
||||
<object id="44" template="../../obj/shop.tx" x="263.667" y="82.3333"/>
|
||||
<object id="45" template="../../obj/shop.tx" x="304.667" y="112.667"/>
|
||||
<object id="46" template="../../obj/shop.tx" x="343" y="178.667"/>
|
||||
<object id="47" template="../../obj/inn.tx" x="215.333" y="81.3333"/>
|
||||
</objectgroup>
|
||||
</map>
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<editorsettings>
|
||||
<export target="wastetown..tmx" format="tmx"/>
|
||||
</editorsettings>
|
||||
<tileset firstgid="1" source="../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../tileset/buildings.tsx"/>
|
||||
<tileset firstgid="1" source="../../tileset/main.tsx"/>
|
||||
<tileset firstgid="10113" source="../../tileset/buildings.tsx"/>
|
||||
<layer id="6" name="Collision" width="60" height="34">
|
||||
<data encoding="base64" compression="zlib">
|
||||
eJzt1tsJgDAMBdD8SusEres4hO6iewndTYMUfFTUVsHYeyAfgkIuiaVEAAAAAADf05ZEg56rKdfPZ8XvS+OmvjtF1Kv73xr9fD9vsHpfVUTvUvLGZAvJIW9dzMWk5HWZzbdNPFf5fOOSktfvs43s1++03+uv47xmcTbHkjbfVH/PawJ3LAlS8kp0dB/e/stW6DyvCuX9sxzzbgsAACBnI8jCIVI=
|
||||
@@ -34,41 +34,41 @@
|
||||
</data>
|
||||
</layer>
|
||||
<objectgroup id="4" name="Objects">
|
||||
<object id="38" template="../obj/entry_up.tx" x="416" y="406" width="48" height="16"/>
|
||||
<object id="48" template="../obj/treasure.tx" x="362.5" y="205.25"/>
|
||||
<object id="49" template="../obj/gold.tx" x="581.5" y="281"/>
|
||||
<object id="50" template="../obj/gold.tx" x="314" y="315"/>
|
||||
<object id="51" template="../obj/enemy.tx" x="317" y="331">
|
||||
<object id="38" template="../../obj/entry_up.tx" x="416" y="406" width="48" height="16"/>
|
||||
<object id="48" template="../../obj/treasure.tx" x="362.5" y="205.25"/>
|
||||
<object id="49" template="../../obj/gold.tx" x="581.5" y="281"/>
|
||||
<object id="50" template="../../obj/gold.tx" x="314" y="315"/>
|
||||
<object id="51" template="../../obj/enemy.tx" x="317" y="331">
|
||||
<properties>
|
||||
<property name="enemy" value="Ghoul"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="52" template="../obj/enemy.tx" x="319.667" y="300.667">
|
||||
<object id="52" template="../../obj/enemy.tx" x="319.667" y="300.667">
|
||||
<properties>
|
||||
<property name="enemy" value="Zombie"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="53" template="../obj/enemy.tx" x="382.917" y="201.833">
|
||||
<object id="53" template="../../obj/enemy.tx" x="382.917" y="201.833">
|
||||
<properties>
|
||||
<property name="enemy" value="Ghoul"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="54" template="../obj/enemy.tx" x="548.333" y="276.667">
|
||||
<object id="54" template="../../obj/enemy.tx" x="548.333" y="276.667">
|
||||
<properties>
|
||||
<property name="enemy" value="Ghoul"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="55" template="../obj/enemy.tx" x="579.333" y="238.333">
|
||||
<object id="55" template="../../obj/enemy.tx" x="579.333" y="238.333">
|
||||
<properties>
|
||||
<property name="enemy" value="Big Zombie"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="56" template="../obj/enemy.tx" x="432.333" y="352.333">
|
||||
<object id="56" template="../../obj/enemy.tx" x="432.333" y="352.333">
|
||||
<properties>
|
||||
<property name="enemy" value="Ghoul"/>
|
||||
</properties>
|
||||
</object>
|
||||
<object id="57" template="../obj/enemy.tx" x="464.5" y="293">
|
||||
<object id="57" template="../../obj/enemy.tx" x="464.5" y="293">
|
||||
<properties>
|
||||
<property name="enemy" value="Ghoul"/>
|
||||
</properties>
|
||||
|
||||
@@ -5,7 +5,8 @@ PT:6/5
|
||||
K:Trample
|
||||
T:Mode$ Phase | Phase$ BeginCombat | ValidPlayer$ You | Execute$ TrigChoose | TriggerZones$ Battlefield | TriggerDescription$ Frenzied Rampage — At the beginning of combat on your turn, choose an opponent at random. CARDNAME attacks that player this combat if able.
|
||||
SVar:TrigChoose:DB$ ChoosePlayer | Defined$ You | Choices$ Opponent | Random$ True | SubAbility$ DBPump
|
||||
SVar:DBPump:DB$ Pump | Defined$ Self | KW$ HIDDEN CARDNAME attacks specific player each combat if able:ChosenPlayer | Duration$ UntilEndOfCombat
|
||||
SVar:DBPump:DB$ Animate | Defined$ Self | staticAbilities$ AttackChosen | Duration$ UntilEndOfCombat
|
||||
SVar:AttackChosen:Mode$ MustAttack | ValidCreature$ Card.Self | MustAttack$ ChosenPlayer
|
||||
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Card.Self | Execute$ TrigChooseBis | TriggerDescription$ When CARDNAME dies, it deals 4 damage to target opponent chosen at random.
|
||||
SVar:TrigChooseBis:DB$ ChoosePlayer | Defined$ You | Choices$ Opponent | Random$ True | SubAbility$ DBDealDamage
|
||||
SVar:DBDealDamage:DB$ DealDamage | Defined$ ChosenPlayer | NumDmg$ 4 | SubAbility$ DBCleanup
|
||||
|
||||
7
forge-gui/res/cardsfolder/upcoming/horn_of_the_mark.txt
Normal file
7
forge-gui/res/cardsfolder/upcoming/horn_of_the_mark.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
Name:Horn of the Mark
|
||||
ManaCost:2
|
||||
Types:Legendary Artifact
|
||||
T:Mode$ AttackersDeclaredOneTarget | Execute$ TrigReveal | AttackedTarget$ Player | ValidAttackers$ Creature.YouCtrl | ValidAttackersAmount$ GE2 | TriggerZones$ Battlefield | AttackingPlayer$ You | TriggerDescription$ Whenever two or more creatures you control attack a player, look at the top five cards of your library. You may reveal a creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||
SVar:TrigReveal:DB$ Dig | DigNum$ 5 | ChangeNum$ 1 | Optional$ True | ChangeValid$ Creature | ForceRevealToController$ True | DestinationZone$ Hand | RestRandomOrder$ True
|
||||
SVar:PlayMain1:TRUE
|
||||
Oracle:Whenever two or more creatures you control attack a player, look at the top five cards of your library. You may reveal a creature card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||
@@ -0,0 +1,9 @@
|
||||
Name:Landroval, Horizon Witness
|
||||
ManaCost:4 W
|
||||
Types:Legendary Creature Bird Noble
|
||||
PT:3/4
|
||||
K:Flying
|
||||
T:Mode$ AttackersDeclaredOneTarget | Execute$ TrigPump | AttackedTarget$ Player | ValidAttackers$ Creature.YouCtrl | ValidAttackersAmount$ GE2 | TriggerZones$ Battlefield | AttackingPlayer$ You | TriggerDescription$ Whenever two or more creatures you control attack a player, target attacking creature without flying gains flying until end of turn.
|
||||
SVar:TrigPump:DB$ Pump | ValidTgts$ Creature.attacking+withoutFlying | TgtPrompt$ Select target attacking creature without flying | KW$ Flying
|
||||
SVar:PlayMain1:TRUE
|
||||
Oracle:Flying\nWhenever two or more creatures you control attack a player, target attacking creature without flying gains flying until end of turn.
|
||||
@@ -2,7 +2,7 @@ Name:Sam, Loyal Attendant
|
||||
ManaCost:1 G W
|
||||
Types:Legendary Creature Halfling Peasant
|
||||
PT:2/4
|
||||
K:Partner: Frodo, Adventurous Hobbit
|
||||
K:Partner:Frodo, Adventurous Hobbit:Frodo
|
||||
T:Mode$ Phase | Phase$ BeginCombat | ValidPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ At the beginning of combat on your turn, create a Food token. (It's an artifact with "{2}, {T}, Sacrifice this artifact: You gain 3 life.")
|
||||
SVar:TrigToken:DB$ Token | TokenScript$ c_a_food_sac
|
||||
S:Mode$ ReduceCost | ValidCard$ Food.YouCtrl | Type$ Ability | Amount$ 1 | AffectedZone$ Battlefield | Description$ Activated abilities of Foods you control cost {1} less to activate.
|
||||
|
||||
@@ -3,9 +3,9 @@ ManaCost:3 U
|
||||
Types:Creature Sliver
|
||||
PT:3/3
|
||||
S:Mode$ Continuous | Affected$ Creature.Sliver+YouCtrl | AddTrigger$ ETBTrig | Description$ Sliver creatures you control have "When this creature enters the battlefield, goad target creature an opponent controls." (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)
|
||||
SVar:ETBTrig:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Sliver.Self | TriggerZones$ Battlefield | Execute$ TrigGoad | TriggerDescription$ When this creature enters the battlefield, goad target creature an opponent controls." (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)
|
||||
SVar:ETBTrig:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Sliver.Self | TriggerZones$ Battlefield | Execute$ TrigGoad | TriggerDescription$ When this creature enters the battlefield, goad target creature an opponent controls. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)
|
||||
SVar:TrigGoad:DB$ Goad | ValidTgts$ Creature.OppCtrl | TgtPrompt$ Target creature an opponent controls
|
||||
SVar:PlayMain1:TRUE
|
||||
SVar:BuffedBy:Sliver
|
||||
SVar:DeckHints:Type$Sliver
|
||||
Oracle:Sliver creatures you control have "When this creature enters the battlefield, goad target creature an opponent controls." (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)
|
||||
Oracle:Sliver creatures you control have "When this creature enters the battlefield, goad target creature an opponent controls." (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)
|
||||
|
||||
@@ -823,6 +823,7 @@ lblEnchantments=Verzauberungen
|
||||
lblPlaneswalkers=Planeswalker
|
||||
lblInstants=Spontanzauber
|
||||
lblSorceries=Hexereien
|
||||
lblBattles=Kämpfe
|
||||
lblCCMC0=Karten mit Manabetrag 0
|
||||
lblCCMC1=Karten mit Manabetrag 1
|
||||
lblCCMC2=Karten mit Manabetrag 2
|
||||
@@ -2967,6 +2968,13 @@ lblZoom=Zoomen
|
||||
lblEffect=Wirkung
|
||||
lblEmblem=Emblem
|
||||
lblBoon=Vorteil
|
||||
lblTheRing=Der Ring
|
||||
lblTheMonarch=Der Monarch
|
||||
lblTheInitiative=Die Initiative
|
||||
lblCityBlessing=Segen der Stadt
|
||||
lblKeywordEffects=Keyword Effekte
|
||||
lblChangelog=Änderungen
|
||||
lblToken=Zeichen
|
||||
lblBackToAdventure=Zurück zum Abenteuer
|
||||
lblDisableWinLose=Deaktivieren Sie Winslose Overlay
|
||||
lblExitToWoldMap=Zurück zur Weltkarte?
|
||||
@@ -2975,3 +2983,313 @@ lblWouldYouLikeDestroy=Möchten Sie {0} zerstören?
|
||||
lblAdventureDescription=Im Abenteuermodus erkunden Sie die sich ständig ändernde Landschaft von Shandalar und Duell-Kreaturen; um Gold, Scherben, Ausrüstung und neue Karten zu gewinnen, sie alle zu sammeln und der Beste zu werden!
|
||||
lblEmptyDeck=Leeres Kartendeck
|
||||
lblNoAvailableSlots=Keine verfügbaren Slots
|
||||
lblAdventure=Abenteuer
|
||||
lblAdvisor=Berater
|
||||
lblAetherborn=Ätherborn
|
||||
lblAlly=Verbündete
|
||||
lblAngel=Engel
|
||||
lblAntelope=Antilope
|
||||
lblApe=Affe
|
||||
lblArcane=Arkan
|
||||
lblArcher=Bogenschütze
|
||||
lblArchon=Archon
|
||||
lblArmy=Armee
|
||||
lblArtificer=Künstler
|
||||
lblAssassin=Attentäter
|
||||
lblAssembly-Worker=Montagearbeiter
|
||||
lblAstartes=Astartes
|
||||
lblAtog=Atog
|
||||
lblAura=Aura
|
||||
lblAurochs=Aurochs
|
||||
lblAvatar=Benutzerbild
|
||||
lblAzra=Azra
|
||||
lblBackground=Hintergrund
|
||||
lblBadger=Dachs
|
||||
lblBarbarian=Barbar
|
||||
lblBard=Barde
|
||||
lblBasilisk=Basilisk
|
||||
lblBat=Schläger
|
||||
lblBear=Tragen
|
||||
lblBeast=Tier
|
||||
lblBeeble=Biene
|
||||
lblBeholder=Betrachter
|
||||
lblBerserker=Berserker
|
||||
lblBird=Vogel
|
||||
lblBlinkmoth=Blinkmoth
|
||||
lblBlood=Blut
|
||||
lblBoar=Eber
|
||||
lblBrainiac=Brainiac
|
||||
lblBringer=Überbringer
|
||||
lblBrushwagg=Pinselwagg
|
||||
lblC'tan=C'tan
|
||||
lblCamarid=Kamarid
|
||||
lblCamel=Kamel
|
||||
lblCaribou=Karibu
|
||||
lblCarrier=Träger
|
||||
lblCartouche=Kartusche
|
||||
lblCat=Katze
|
||||
lblCentaur=Zentaur
|
||||
lblCephalid=Cephalid
|
||||
lblChimera=Chimäre
|
||||
lblCitizen=Bürger
|
||||
lblClamfolk=Klumpen
|
||||
lblClass=Klasse
|
||||
lblCleric=Kleriker
|
||||
lblClown=Clown
|
||||
lblClue=Hinweis
|
||||
lblCockatrice=Kakera
|
||||
lblConstruct=Bauen
|
||||
lblContraption=Apparat
|
||||
lblCow=Kuh
|
||||
lblCoward=Feigling
|
||||
lblCrab=Krabbe
|
||||
lblCrocodile=Krokodil
|
||||
lblCurse=Fluch
|
||||
lblCyborg=Cyborg
|
||||
lblCyclops=Zyklop
|
||||
lblDauthi=Daututhi
|
||||
lblDemigod=Halbgott
|
||||
lblDemon=Dämon
|
||||
lblDeserter=Deserteur
|
||||
lblDevil=Teufel
|
||||
lblDinosaur=Dinosaurier
|
||||
lblDjinn=Djinn
|
||||
lblDog=Hund
|
||||
lblDragon=Drachen
|
||||
lblDrake=Erpel
|
||||
lblDreadnought=Schlachtschiff
|
||||
lblDrone=Drohne
|
||||
lblDruid=Druide
|
||||
lblDryad=Dryade
|
||||
lblDwarf=Zwerg
|
||||
lblEfreet=Efreet
|
||||
lblEgg=Ei
|
||||
lblElder=Ältere
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=Elementar
|
||||
lblElephant=Elefant
|
||||
lblElf=Elf
|
||||
lblElk=Elch
|
||||
lblEmployee=Mitarbeiter
|
||||
lblEquipment=Ausrüstung
|
||||
lblEye=Auge
|
||||
lblFaerie=Faerie
|
||||
lblFerret=Frettchen
|
||||
lblFighter=Kämpfer
|
||||
lblFish=Fisch
|
||||
lblFlagbearer=Fahnenträger
|
||||
lblFood=Essen
|
||||
lblFortification=Befestigung
|
||||
lblFox=Fuchs
|
||||
lblFractal=Fraktal
|
||||
lblFrog=Frosch
|
||||
lblFungus=Pilz
|
||||
lblGamer=Spieler
|
||||
lblGargoyle=Wasserspeier
|
||||
lblGerm=Keim
|
||||
lblGiant=Riese
|
||||
lblGith=Gith
|
||||
lblGnoll=Gnoll
|
||||
lblGnome=Gnom
|
||||
lblGoat=Ziege
|
||||
lblGoblin=Kobold
|
||||
lblGod=Gott
|
||||
lblGold=Gold
|
||||
lblGolem=Golem
|
||||
lblGorgon=Gorgon
|
||||
lblGraveborn=Graveborn
|
||||
lblGremlin=Gremlin
|
||||
lblGriffin=Greif
|
||||
lblGuest=Gast
|
||||
lblHag=Hexe
|
||||
lblHalfling=Halbling
|
||||
lblHamster=Hamster
|
||||
lblHarpy=Harpyie
|
||||
lblHellion=Hellion
|
||||
lblHippo=Nilpferd
|
||||
lblHippogriff=Hippogriff
|
||||
lblHomarid=Homarid
|
||||
lblHomunculus=Homunkulus
|
||||
lblHorror=Grusel
|
||||
lblHorse=Pferd
|
||||
lblHuman=Menschlich
|
||||
lblHydra=Hydra
|
||||
lblHyena=Hyäne
|
||||
lblIllusion=Illusion
|
||||
lblImp=Imp
|
||||
lblIncarnation=Menschwerdung
|
||||
lblIncubator=Inkubator
|
||||
lblInkling=Ahnung
|
||||
lblInquisitor=Inquisitor
|
||||
lblInsect=Insekt
|
||||
lblJackal=Schakal
|
||||
lblJellyfish=Qualle
|
||||
lblJuggernaut=Juggernaut
|
||||
lblKangaroo=Känguru
|
||||
lblKavu=Kavu
|
||||
lblKey=Taste
|
||||
lblKillbot=Killbot
|
||||
lblKirin=Kirin
|
||||
lblKithkin=Kithkin
|
||||
lblKnight=Ritter
|
||||
lblKobold=Kobold
|
||||
lblKor=Kor
|
||||
lblKraken=Krake
|
||||
lblLamia=Lamia
|
||||
lblLammasu=Lammasu
|
||||
lblLeech=Blutegel
|
||||
lblLesson=Lektion
|
||||
lblLeviathan=Leviathan
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=Licid
|
||||
lblLizard=Eidechse
|
||||
lblLobster=Hummer
|
||||
lblMammoth=Mammut
|
||||
lblManticore=Manticore
|
||||
lblMasticore=Masticore
|
||||
lblMercenary=Söldner
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Metathran
|
||||
lblMinion=Günstling
|
||||
lblMinotaur=Minotaur
|
||||
lblMite=Milbe
|
||||
lblMole=Mol
|
||||
lblMonger=Händler
|
||||
lblMongoose=Mungo
|
||||
lblMonk=Mönch
|
||||
lblMonkey=Affe
|
||||
lblMoonfolk=Mondfolk
|
||||
lblMouse=Maus
|
||||
lblMutant=Mutant
|
||||
lblMyr=Myr
|
||||
lblMystic=Mystiker
|
||||
lblNaga=Naga
|
||||
lblNautilus=Nautilus
|
||||
lblNecron=Necron
|
||||
lblNephilim=Nephilim
|
||||
lblNightmare=Alptraum
|
||||
lblNightstalker=Nachtstalker
|
||||
lblNinja=Ninja
|
||||
lblNoble=Edel
|
||||
lblNoggle=Naggle
|
||||
lblNomad=Nomade
|
||||
lblNymph=Nymphe
|
||||
lblOctopus=Krake
|
||||
lblOgre=Oger
|
||||
lblOoze=Schlamm
|
||||
lblOrb=Kugel
|
||||
lblOrc=Ork
|
||||
lblOrgg=Org
|
||||
lblOtter=Otter
|
||||
lblOuphe=OUPHE
|
||||
lblOx=Ochse
|
||||
lblOyster=Auster
|
||||
lblPangolin=Pangolin
|
||||
lblPeasant=Bauer
|
||||
lblPegasus=Pegasus
|
||||
lblPentavite=Pentavit
|
||||
lblPest=Pest
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=Phönix
|
||||
lblPhyrexian=Phyrexian
|
||||
lblPilot=Pilot
|
||||
lblPincher=Pincher
|
||||
lblPirate=Pirat
|
||||
lblPlant=Anlage
|
||||
lblPowerstone=Powerstone
|
||||
lblPraetor=Prätor
|
||||
lblPrimarch=Primarch
|
||||
lblPrism=Prisma
|
||||
lblProcessor=Prozessor
|
||||
lblRabbit=Kaninchen
|
||||
lblRanger=Ranger
|
||||
lblRat=Ratte
|
||||
lblRebel=Rebell
|
||||
lblReflection=Betrachtung
|
||||
lblRhino=Nashorn
|
||||
lblRigger=Rigger
|
||||
lblRobot=Roboter
|
||||
lblRogue=Schurke
|
||||
lblRune=Rune
|
||||
lblSable=Zobel
|
||||
lblSaga=Saga
|
||||
lblSalamander=Salamander
|
||||
lblSamurai=Samurai
|
||||
lblSand=Sand
|
||||
lblSaproling=Saproling
|
||||
lblSatyr=Satyr
|
||||
lblScarecrow=Vogelscheuche
|
||||
lblScientist=Wissenschaftler
|
||||
lblScion=Spross
|
||||
lblScorpion=Skorpion
|
||||
lblScout=Erkunden
|
||||
lblSculpture=Skulptur
|
||||
lblSerf=Leibeigene
|
||||
lblSerpent=Schlange
|
||||
lblServo=Servo
|
||||
lblShade=Schatten
|
||||
lblShaman=Schamane
|
||||
lblShapeshifter=Gestaltwandler
|
||||
lblShard=Scherbe
|
||||
lblShark=Hai
|
||||
lblSheep=Schaf
|
||||
lblShrine=Schrein
|
||||
lblSiren=Sirene
|
||||
lblSkeleton=Skelett
|
||||
lblSlith=Schlank
|
||||
lblSliver=Splitter
|
||||
lblSlug=Slug
|
||||
lblSnake=Schlange
|
||||
lblSoldier=Soldat
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=Laichen
|
||||
lblSpecter=Gespenst
|
||||
lblSpellshaper=Spellshaper
|
||||
lblSphinx=Sphinx
|
||||
lblSpider=Spinne
|
||||
lblSpike=Spitze
|
||||
lblSpirit=Geist
|
||||
lblSplinter=Splitter
|
||||
lblSponge=Schwamm
|
||||
lblSpy=Spion
|
||||
lblSquid=Tintenfisch
|
||||
lblSquirrel=Eichhörnchen
|
||||
lblStarfish=Seestern
|
||||
lblSurrakar=Haft
|
||||
lblSurvivor=Überlebende
|
||||
lblTentacle=Tentakel
|
||||
lblTetravite=Tetravit
|
||||
lblThalakos=Thalakos
|
||||
lblThopter=Thoopter
|
||||
lblThrull=Thrull
|
||||
lblTiefling=Klopfling
|
||||
lblTrap=Fangen
|
||||
lblTreasure=Schatz
|
||||
lblTreefolk=Baumfolk
|
||||
lblTrilobite=Trilobit
|
||||
lblTriskelavite=Triskelavit
|
||||
lblTroll=Troll
|
||||
lblTurtle=Schildkröte
|
||||
lblTyranid=Tyranid
|
||||
lblUnicorn=Einhorn
|
||||
lblVampire=Vampir
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=Fahrzeug
|
||||
lblViashino=Viendino
|
||||
lblVolver=Volver
|
||||
lblWall=Wand
|
||||
lblWarlock=Hexenmeister
|
||||
lblWarrior=Krieger
|
||||
lblWeird=Seltsam
|
||||
lblWerewolf=Werwolf
|
||||
lblWhale=Wal
|
||||
lblWizard=Magier
|
||||
lblWolf=Wolf
|
||||
lblWolverine=Vielfraß
|
||||
lblWombat=Wombat
|
||||
lblWorm=Wurm
|
||||
lblWraith=Gespenst
|
||||
lblWurm=Wurm
|
||||
lblYeti=Yeti
|
||||
lblZombie=Zombie
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -2978,6 +2978,13 @@ lblZoom=Zoom
|
||||
lblEffect=Effect
|
||||
lblEmblem=Emblem
|
||||
lblBoon=Boon
|
||||
lblTheRing=The Ring
|
||||
lblTheMonarch=The Monarch
|
||||
lblTheInitiative=The Initiative
|
||||
lblCityBlessing=City's Blessing
|
||||
lblKeywordEffects=Keyword Effects
|
||||
lblChangelog=Changelog
|
||||
lblToken=Token
|
||||
lblBackToAdventure=Back to Adventure
|
||||
lblQuitAdventureEventMatch=Quit Match (will count as a loss)
|
||||
lblQuitAdventureEvent=You have matches left to play!\nLeaving the event early will forfeit your potential future winnings.\nYou will still receive winnings as if you conceded your remaining matches.\n\nWould you still like to quit the event?
|
||||
|
||||
@@ -826,6 +826,7 @@ lblEnchantments=Encantamientos
|
||||
lblPlaneswalkers=Planeswalkers
|
||||
lblInstants=Instantáneos
|
||||
lblSorceries=Conjuros
|
||||
lblBattles=Batallas
|
||||
lblCCMC0=Cartas con CMC 0
|
||||
lblCCMC1=Cartas con CMC 1
|
||||
lblCCMC2=Cartas con CMC 2
|
||||
@@ -2968,8 +2969,15 @@ lblMythic=Mítico
|
||||
lblAchievementEarned=Logro ganado
|
||||
lblZoom=Zoom
|
||||
lblEffect=Efecto
|
||||
lblEmblem=Emblem
|
||||
lblEmblem=Emblema
|
||||
lblBoon=Boon
|
||||
lblTheRing=El anillo
|
||||
lblTheMonarch=El monarca
|
||||
lblTheInitiative=La iniciativa
|
||||
lblCityBlessing=Bendición de la ciudad
|
||||
lblKeywordEffects=Efectos de palabras clave
|
||||
lblChangelog=Cambios
|
||||
lblToken=Simbólico
|
||||
lblBackToAdventure=Volver a la aventura
|
||||
lblDisableWinLose=Desactivar WinLose Overlay
|
||||
lblExitToWoldMap=Salir al mapa del mundo?
|
||||
@@ -2978,3 +2986,313 @@ lblWouldYouLikeDestroy=¿Le gustaría destruir {0}?
|
||||
lblAdventureDescription=¡El modo de aventura es donde exploras el paisaje siempre cambiante de Shandalar, y criaturas de duelo para ganar oro, fragmentos, equipos y nuevas tarjetas para convertirte en el mejor y recogerlas a todos!
|
||||
lblEmptyDeck=Baraja de cartas vacía
|
||||
lblNoAvailableSlots=No hay ranuras disponibles
|
||||
lblAdventure=Aventura
|
||||
lblAdvisor=Tutor
|
||||
lblAetherborn=Aetherborn
|
||||
lblAlly=Aliado
|
||||
lblAngel=Ángel
|
||||
lblAntelope=Antílope
|
||||
lblApe=Mono
|
||||
lblArcane=Arcano
|
||||
lblArcher=Arquero
|
||||
lblArchon=Arconte
|
||||
lblArmy=Ejército
|
||||
lblArtificer=Artificante
|
||||
lblAssassin=Asesino
|
||||
lblAssembly-Worker=Trabajador de ensamblaje
|
||||
lblAstartes=Astartes
|
||||
lblAtog=Atog
|
||||
lblAura=Aura
|
||||
lblAurochs=Uro
|
||||
lblAvatar=Avatar
|
||||
lblAzra=Azra
|
||||
lblBackground=Fondo
|
||||
lblBadger=Tejón
|
||||
lblBarbarian=Bárbaro
|
||||
lblBard=Bardo
|
||||
lblBasilisk=Basilisco
|
||||
lblBat=Murciélago
|
||||
lblBear=Oso
|
||||
lblBeast=Bestia
|
||||
lblBeeble=Beeble
|
||||
lblBeholder=Espectador
|
||||
lblBerserker=frenético
|
||||
lblBird=Pájaro
|
||||
lblBlinkmoth=Parpadeo
|
||||
lblBlood=Sangre
|
||||
lblBoar=Jabali
|
||||
lblBrainiac=Cerebro
|
||||
lblBringer=Corredor
|
||||
lblBrushwagg=Pincel
|
||||
lblC'tan=C'an
|
||||
lblCamarid=Camárido
|
||||
lblCamel=Camello
|
||||
lblCaribou=Caribú
|
||||
lblCarrier=Transportador
|
||||
lblCartouche=Cartuche
|
||||
lblCat=Gato
|
||||
lblCentaur=Centauro
|
||||
lblCephalid=Cefálido
|
||||
lblChimera=Quimera
|
||||
lblCitizen=Ciudadano
|
||||
lblClamfolk=Pañuelo
|
||||
lblClass=Clase
|
||||
lblCleric=Clérigo
|
||||
lblClown=Payaso
|
||||
lblClue=Clave
|
||||
lblCockatrice=Aciano
|
||||
lblConstruct=Construir
|
||||
lblContraption=Artilugio
|
||||
lblCow=Vaca
|
||||
lblCoward=Cobarde
|
||||
lblCrab=Cangrejo
|
||||
lblCrocodile=Cocodrilo
|
||||
lblCurse=Maldición
|
||||
lblCyborg=Cyborg
|
||||
lblCyclops=Cíclope
|
||||
lblDauthi=Dauthi
|
||||
lblDemigod=Semidiós
|
||||
lblDemon=Demonio
|
||||
lblDeserter=Desertor
|
||||
lblDevil=Demonio
|
||||
lblDinosaur=Dinosaurio
|
||||
lblDjinn=Djinn
|
||||
lblDog=Perro
|
||||
lblDragon=Continuar
|
||||
lblDrake=Pato
|
||||
lblDreadnought=Acorazado
|
||||
lblDrone=Zumbido
|
||||
lblDruid=druida
|
||||
lblDryad=Dríada
|
||||
lblDwarf=Enano
|
||||
lblEfreet=Efreet
|
||||
lblEgg=Huevo
|
||||
lblElder=Mayor
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=Elemental
|
||||
lblElephant=Elefante
|
||||
lblElf=Duende
|
||||
lblElk=Alce
|
||||
lblEmployee=Empleado
|
||||
lblEquipment=Equipo
|
||||
lblEye=Ojo
|
||||
lblFaerie=Hemoriza
|
||||
lblFerret=Hurón
|
||||
lblFighter=Combatiente
|
||||
lblFish=Pez
|
||||
lblFlagbearer=Portador de la bandera
|
||||
lblFood=Alimento
|
||||
lblFortification=Fortificación
|
||||
lblFox=Zorro
|
||||
lblFractal=Fractal
|
||||
lblFrog=Rana
|
||||
lblFungus=Hongo
|
||||
lblGamer=Jugador
|
||||
lblGargoyle=Gárgola
|
||||
lblGerm=Germen
|
||||
lblGiant=Gigante
|
||||
lblGith=Gith
|
||||
lblGnoll=Gnoll
|
||||
lblGnome=Gnomo
|
||||
lblGoat=Cabra
|
||||
lblGoblin=Duende
|
||||
lblGod=Dios
|
||||
lblGold=Oro
|
||||
lblGolem=Golem
|
||||
lblGorgon=Gorgona
|
||||
lblGraveborn=Tumbero
|
||||
lblGremlin=Duendecillo
|
||||
lblGriffin=Grifo
|
||||
lblGuest=Invitado
|
||||
lblHag=Bruja
|
||||
lblHalfling=Medias
|
||||
lblHamster=Hámster
|
||||
lblHarpy=Arpía
|
||||
lblHellion=Gamberro
|
||||
lblHippo=Hipopótamo
|
||||
lblHippogriff=Hipócrito
|
||||
lblHomarid=Homárido
|
||||
lblHomunculus=Homúnculo
|
||||
lblHorror=Horror
|
||||
lblHorse=Caballo
|
||||
lblHuman=Humano
|
||||
lblHydra=Hidra
|
||||
lblHyena=Hiena
|
||||
lblIllusion=Espejismo
|
||||
lblImp=Diablillo
|
||||
lblIncarnation=Encarnación
|
||||
lblIncubator=Incubadora
|
||||
lblInkling=Indicio
|
||||
lblInquisitor=Inquisidor
|
||||
lblInsect=Insecto
|
||||
lblJackal=Chacal
|
||||
lblJellyfish=Medusa
|
||||
lblJuggernaut=Gigante
|
||||
lblKangaroo=Canguro
|
||||
lblKavu=Kavu
|
||||
lblKey=Llave
|
||||
lblKillbot=Killbot
|
||||
lblKirin=Kirin
|
||||
lblKithkin=Kithkin
|
||||
lblKnight=Caballero
|
||||
lblKobold=Kobold
|
||||
lblKor=Kor
|
||||
lblKraken=Kraken
|
||||
lblLamia=Lamia
|
||||
lblLammasu=Lamasu
|
||||
lblLeech=Sanguijuela
|
||||
lblLesson=Lección
|
||||
lblLeviathan=Leviatán
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=Lícido
|
||||
lblLizard=Lagarto
|
||||
lblLobster=Langosta
|
||||
lblMammoth=Mamut
|
||||
lblManticore=Manticore
|
||||
lblMasticore=Masticore
|
||||
lblMercenary=Mercenario
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Metatran
|
||||
lblMinion=Esbirro
|
||||
lblMinotaur=Minotauro
|
||||
lblMite=Pizca
|
||||
lblMole=Lunar
|
||||
lblMonger=Instigador
|
||||
lblMongoose=Mangosta
|
||||
lblMonk=Monje
|
||||
lblMonkey=Mono
|
||||
lblMoonfolk=Moonfolk
|
||||
lblMouse=Ratón
|
||||
lblMutant=Mutante
|
||||
lblMyr=Myr
|
||||
lblMystic=Místico
|
||||
lblNaga=Naga
|
||||
lblNautilus=Nautilo
|
||||
lblNecron=Necrón
|
||||
lblNephilim=Nephilim
|
||||
lblNightmare=Pesadilla
|
||||
lblNightstalker=acechador nocturno
|
||||
lblNinja=Ninja
|
||||
lblNoble=Noble
|
||||
lblNoggle=Noggle
|
||||
lblNomad=Nómada
|
||||
lblNymph=Ninfa
|
||||
lblOctopus=Pulpo
|
||||
lblOgre=Ogro
|
||||
lblOoze=Rezumar
|
||||
lblOrb=Orbe
|
||||
lblOrc=Orco
|
||||
lblOrgg=Holgazán
|
||||
lblOtter=Nutria
|
||||
lblOuphe=Oón
|
||||
lblOx=Buey
|
||||
lblOyster=ostra
|
||||
lblPangolin=Pangolín
|
||||
lblPeasant=Campesino
|
||||
lblPegasus=Pegaso
|
||||
lblPentavite=Pentavita
|
||||
lblPest=Parásito
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=Fénix
|
||||
lblPhyrexian=Filiano
|
||||
lblPilot=Piloto
|
||||
lblPincher=Pizca
|
||||
lblPirate=Pirata
|
||||
lblPlant=Planta
|
||||
lblPowerstone=Powerstone
|
||||
lblPraetor=Pretor
|
||||
lblPrimarch=Primca
|
||||
lblPrism=Prisma
|
||||
lblProcessor=Procesador
|
||||
lblRabbit=Conejo
|
||||
lblRanger=guardabosque
|
||||
lblRat=Rata
|
||||
lblRebel=Rebelde
|
||||
lblReflection=Reflexión
|
||||
lblRhino=Rinoceronte
|
||||
lblRigger=Aparejador
|
||||
lblRobot=Robot
|
||||
lblRogue=Pícaro
|
||||
lblRune=Runa
|
||||
lblSable=Sable
|
||||
lblSaga=Saga
|
||||
lblSalamander=Salamandra
|
||||
lblSamurai=Samurai
|
||||
lblSand=Arena
|
||||
lblSaproling=Saproling
|
||||
lblSatyr=Sátiro
|
||||
lblScarecrow=Espantapájaros
|
||||
lblScientist=Científico
|
||||
lblScion=Vástago
|
||||
lblScorpion=Escorpión
|
||||
lblScout=Explorar
|
||||
lblSculpture=Escultura
|
||||
lblSerf=Siervo
|
||||
lblSerpent=Serpiente
|
||||
lblServo=Servo
|
||||
lblShade=Sombra
|
||||
lblShaman=Chamán
|
||||
lblShapeshifter=Cambiaformas
|
||||
lblShard=Casco
|
||||
lblShark=Tiburón
|
||||
lblSheep=Oveja
|
||||
lblShrine=Santuario
|
||||
lblSiren=Sirena
|
||||
lblSkeleton=Esqueleto
|
||||
lblSlith=Bandear
|
||||
lblSliver=Astilla
|
||||
lblSlug=Babosa
|
||||
lblSnake=Serpiente
|
||||
lblSoldier=Soldado
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=Aparecer
|
||||
lblSpecter=Espectro
|
||||
lblSpellshaper=Hechizo
|
||||
lblSphinx=Esfinge
|
||||
lblSpider=Araña
|
||||
lblSpike=Espiga
|
||||
lblSpirit=Espíritu
|
||||
lblSplinter=Astilla
|
||||
lblSponge=Esponja
|
||||
lblSpy=Espiar
|
||||
lblSquid=Calamar
|
||||
lblSquirrel=Ardilla
|
||||
lblStarfish=Estrella de mar
|
||||
lblSurrakar=Ardiente
|
||||
lblSurvivor=Sobreviviente
|
||||
lblTentacle=Tentáculo
|
||||
lblTetravite=Tetravita
|
||||
lblThalakos=Talakos
|
||||
lblThopter=Topón
|
||||
lblThrull=Thrull
|
||||
lblTiefling=Tesor
|
||||
lblTrap=Trampa
|
||||
lblTreasure=Tesoro
|
||||
lblTreefolk=Arena
|
||||
lblTrilobite=Trilobita
|
||||
lblTriskelavite=Triskelavita
|
||||
lblTroll=Troll
|
||||
lblTurtle=Tortuga
|
||||
lblTyranid=Tiránido
|
||||
lblUnicorn=Unicornio
|
||||
lblVampire=Vampiro
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=Vehículo
|
||||
lblViashino=Paseos
|
||||
lblVolver=Volante
|
||||
lblWall=Muro
|
||||
lblWarlock=Brujo
|
||||
lblWarrior=Guerrero
|
||||
lblWeird=Extraño
|
||||
lblWerewolf=Hombre-lobo
|
||||
lblWhale=Ballena
|
||||
lblWizard=Mago
|
||||
lblWolf=Lobo
|
||||
lblWolverine=Glotón
|
||||
lblWombat=Wombat
|
||||
lblWorm=Gusano
|
||||
lblWraith=Fantasma
|
||||
lblWurm=Wurm
|
||||
lblYeti=Yeti
|
||||
lblZombie=Zombi
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -827,6 +827,7 @@ lblEnchantments=Enchantements
|
||||
lblPlaneswalkers=Planeswalkers
|
||||
lblInstants=Éphémères
|
||||
lblSorceries=Rituels
|
||||
lblBattles=Batailles
|
||||
lblCCMC0=Cartes avec une valeur de mana de 0
|
||||
lblCCMC1=Cartes avec une valeur de mana de 1
|
||||
lblCCMC2=Cartes avec une valeur de mana de 2
|
||||
@@ -2973,6 +2974,13 @@ lblZoom=Zoom
|
||||
lblEffect=Effet
|
||||
lblEmblem=Emblème
|
||||
lblBoon=Aubaine
|
||||
lblTheRing=L'anneau
|
||||
lblTheMonarch=Le monarque
|
||||
lblTheInitiative=L'initiative
|
||||
lblCityBlessing=Bénédiction de la ville
|
||||
lblKeywordEffects=Effets de mots clés
|
||||
lblChangelog=Changements
|
||||
lblToken=Jeton
|
||||
lblBackToAdventure=Retour à l'aventure
|
||||
lblDisableWinLose=Désactiver la superposition Winlose
|
||||
lblExitToWoldMap=Sortir sur la carte du monde?
|
||||
@@ -2981,3 +2989,313 @@ lblWouldYouLikeDestroy=Souhaitez-vous détruire {0}?
|
||||
lblAdventureDescription=Le mode aventure est l'endroit où vous explorez le paysage en constante évolution de Shandalar, et des créatures duel pour gagner de l'or, des éclats, de l'équipement et de nouvelles cartes pour devenir les meilleurs et les récupérer tous!
|
||||
lblEmptyDeck=Jeu de cartes vide
|
||||
lblNoAvailableSlots=Aucune fente disponible
|
||||
lblAdventure=Aventure
|
||||
lblAdvisor=Conseiller
|
||||
lblAetherborn=Étherborn
|
||||
lblAlly=Allié
|
||||
lblAngel=Ange
|
||||
lblAntelope=Antilope
|
||||
lblApe=Singe
|
||||
lblArcane=Ésotérique
|
||||
lblArcher=Archer
|
||||
lblArchon=Archer
|
||||
lblArmy=Armée
|
||||
lblArtificer=Artificateur
|
||||
lblAssassin=Assassin
|
||||
lblAssembly-Worker=Ouvrier d'assemblage
|
||||
lblAstartes=Astartes
|
||||
lblAtog=Atog
|
||||
lblAura=Aura
|
||||
lblAurochs=Aurochs
|
||||
lblAvatar=Avatar
|
||||
lblAzra=Azra
|
||||
lblBackground=Arrière-plan
|
||||
lblBadger=Blaireau
|
||||
lblBarbarian=Barbare
|
||||
lblBard=Barde
|
||||
lblBasilisk=Basilic
|
||||
lblBat=Chauve souris
|
||||
lblBear=Ours
|
||||
lblBeast=Bête
|
||||
lblBeeble=Abeille
|
||||
lblBeholder=Spectateur
|
||||
lblBerserker=Berserker
|
||||
lblBird=Oiseau
|
||||
lblBlinkmoth=Blinkmoth
|
||||
lblBlood=Sang
|
||||
lblBoar=Sanglier
|
||||
lblBrainiac=Cerveau
|
||||
lblBringer=Porte-parole
|
||||
lblBrushwagg=Brosse
|
||||
lblC'tan=C'tan
|
||||
lblCamarid=Camaride
|
||||
lblCamel=chameau
|
||||
lblCaribou=Caribou
|
||||
lblCarrier=Transporteur
|
||||
lblCartouche=Cartouche
|
||||
lblCat=Chat
|
||||
lblCentaur=Centaure
|
||||
lblCephalid=Céphalide
|
||||
lblChimera=Chimère
|
||||
lblCitizen=Citoyen
|
||||
lblClamfolk=Palourde
|
||||
lblClass=Classe
|
||||
lblCleric=Clerc
|
||||
lblClown=Clown
|
||||
lblClue=Indice
|
||||
lblCockatrice=Basilic
|
||||
lblConstruct=Construction
|
||||
lblContraption=Bidule
|
||||
lblCow=Vache
|
||||
lblCoward=Lâche
|
||||
lblCrab=Crabe
|
||||
lblCrocodile=Crocodile
|
||||
lblCurse=Malédiction
|
||||
lblCyborg=Cyborg
|
||||
lblCyclops=cyclope
|
||||
lblDauthi=Dauthi
|
||||
lblDemigod=Demi-dieux
|
||||
lblDemon=Démon
|
||||
lblDeserter=Déserteur
|
||||
lblDevil=Diable
|
||||
lblDinosaur=Dinosaure
|
||||
lblDjinn=Djinn
|
||||
lblDog=Chien
|
||||
lblDragon=Dragon
|
||||
lblDrake=Canard
|
||||
lblDreadnought=Dreadnought
|
||||
lblDrone=Drone
|
||||
lblDruid=Druide
|
||||
lblDryad=Dryade
|
||||
lblDwarf=Nain
|
||||
lblEfreet=Efreet
|
||||
lblEgg=Œuf
|
||||
lblElder=Aîné
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=Élémentaire
|
||||
lblElephant=Éléphant
|
||||
lblElf=Elfe
|
||||
lblElk=Wapiti
|
||||
lblEmployee=Employé
|
||||
lblEquipment=Équipement
|
||||
lblEye=Œil
|
||||
lblFaerie=Fée
|
||||
lblFerret=Furet
|
||||
lblFighter=Combattant
|
||||
lblFish=Poisson
|
||||
lblFlagbearer=Porteur de drapeau
|
||||
lblFood=Nourriture
|
||||
lblFortification=Fortification
|
||||
lblFox=Renard
|
||||
lblFractal=Fractale
|
||||
lblFrog=Grenouille
|
||||
lblFungus=Champignon
|
||||
lblGamer=joueur
|
||||
lblGargoyle=Gargouille
|
||||
lblGerm=Germe
|
||||
lblGiant=Géant
|
||||
lblGith=Gith
|
||||
lblGnoll=Gnoll
|
||||
lblGnome=Gnome
|
||||
lblGoat=Chèvre
|
||||
lblGoblin=Lutin
|
||||
lblGod=Dieu
|
||||
lblGold=Or
|
||||
lblGolem=Golem
|
||||
lblGorgon=Gorgon
|
||||
lblGraveborn=Grave
|
||||
lblGremlin=Diablotin
|
||||
lblGriffin=Griffon
|
||||
lblGuest=Invité
|
||||
lblHag=Vieille sorcière
|
||||
lblHalfling=Halfling
|
||||
lblHamster=Hamster
|
||||
lblHarpy=Harpie
|
||||
lblHellion=Enfer
|
||||
lblHippo=Hippopotame
|
||||
lblHippogriff=Hippogriff
|
||||
lblHomarid=Homaride
|
||||
lblHomunculus=Homoncule
|
||||
lblHorror=Horreur
|
||||
lblHorse=Cheval
|
||||
lblHuman=Humain
|
||||
lblHydra=Hydre
|
||||
lblHyena=Hyène
|
||||
lblIllusion=Illusion
|
||||
lblImp=Lutin
|
||||
lblIncarnation=Incarnation
|
||||
lblIncubator=Incubateur
|
||||
lblInkling=Idée
|
||||
lblInquisitor=Inquisiteur
|
||||
lblInsect=Insecte
|
||||
lblJackal=Chacal
|
||||
lblJellyfish=Méduse
|
||||
lblJuggernaut=Mastodonte
|
||||
lblKangaroo=Kangourou
|
||||
lblKavu=Kavu
|
||||
lblKey=Clé
|
||||
lblKillbot=Killbot
|
||||
lblKirin=Kirin
|
||||
lblKithkin=Kithkin
|
||||
lblKnight=Chevalier
|
||||
lblKobold=Kobold
|
||||
lblKor=Core
|
||||
lblKraken=Kraken
|
||||
lblLamia=Lamia
|
||||
lblLammasu=Lammasu
|
||||
lblLeech=Sangsue
|
||||
lblLesson=Leçon
|
||||
lblLeviathan=Léviathan
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=Liide
|
||||
lblLizard=Lézard
|
||||
lblLobster=Homard
|
||||
lblMammoth=Mammouth
|
||||
lblManticore=Mantecore
|
||||
lblMasticore=Masticcore
|
||||
lblMercenary=Mercenaire
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Métathran
|
||||
lblMinion=Serviteur
|
||||
lblMinotaur=Minotaure
|
||||
lblMite=Mite
|
||||
lblMole=Taupe
|
||||
lblMonger=Marchand de
|
||||
lblMongoose=Mangouste
|
||||
lblMonk=Moine
|
||||
lblMonkey=Singe
|
||||
lblMoonfolk=Lune
|
||||
lblMouse=Souris
|
||||
lblMutant=Mutant
|
||||
lblMyr=Myr
|
||||
lblMystic=Mystique
|
||||
lblNaga=Naga
|
||||
lblNautilus=Nautile
|
||||
lblNecron=Nécron
|
||||
lblNephilim=Néphilim
|
||||
lblNightmare=Cauchemar
|
||||
lblNightstalker=Rodeur nocturne
|
||||
lblNinja=Ninja
|
||||
lblNoble=noble
|
||||
lblNoggle=Gaspiller
|
||||
lblNomad=Nomade
|
||||
lblNymph=Nymphe
|
||||
lblOctopus=Pieuvre
|
||||
lblOgre=Ogre
|
||||
lblOoze=Suinter
|
||||
lblOrb=Orbe
|
||||
lblOrc=Orc
|
||||
lblOrgg=Orgg
|
||||
lblOtter=Loutre
|
||||
lblOuphe=Ouphe
|
||||
lblOx=Bœuf
|
||||
lblOyster=huître
|
||||
lblPangolin=Pangolin
|
||||
lblPeasant=Paysan
|
||||
lblPegasus=Pégase
|
||||
lblPentavite=Pentavite
|
||||
lblPest=Ravageur
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=Phénix
|
||||
lblPhyrexian=Phyrexien
|
||||
lblPilot=Pilote
|
||||
lblPincher=Pincer
|
||||
lblPirate=Pirate
|
||||
lblPlant=Usine
|
||||
lblPowerstone=Aisance
|
||||
lblPraetor=Praetor
|
||||
lblPrimarch=Primarque
|
||||
lblPrism=Prisme
|
||||
lblProcessor=Processeur
|
||||
lblRabbit=Lapin
|
||||
lblRanger=Ranger
|
||||
lblRat=Rat
|
||||
lblRebel=Rebelle
|
||||
lblReflection=Réflexion
|
||||
lblRhino=Rhinocéros
|
||||
lblRigger=Gréeur
|
||||
lblRobot=Robot
|
||||
lblRogue=Voyou
|
||||
lblRune=Rune
|
||||
lblSable=Martre
|
||||
lblSaga=Saga
|
||||
lblSalamander=Salamandre
|
||||
lblSamurai=Samouraï
|
||||
lblSand=Sable
|
||||
lblSaproling=Saprolisage
|
||||
lblSatyr=Satyre
|
||||
lblScarecrow=Épouvantail
|
||||
lblScientist=Scientifique
|
||||
lblScion=Scion
|
||||
lblScorpion=Scorpion
|
||||
lblScout=Scout
|
||||
lblSculpture=Sculpture
|
||||
lblSerf=Serf
|
||||
lblSerpent=Serpent
|
||||
lblServo=Servo
|
||||
lblShade=Ombre
|
||||
lblShaman=Chaman
|
||||
lblShapeshifter=Teigne
|
||||
lblShard=Tesson
|
||||
lblShark=Requin
|
||||
lblSheep=Mouton
|
||||
lblShrine=Tombeau
|
||||
lblSiren=Sirène
|
||||
lblSkeleton=Squelette
|
||||
lblSlith=Dénigrer
|
||||
lblSliver=Mèche
|
||||
lblSlug=Limace
|
||||
lblSnake=Serpent
|
||||
lblSoldier=Soldat
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=Frayer
|
||||
lblSpecter=Spectre
|
||||
lblSpellshaper=Salenturier
|
||||
lblSphinx=Sphinx
|
||||
lblSpider=Araignée
|
||||
lblSpike=Pic
|
||||
lblSpirit=Esprit
|
||||
lblSplinter=Éclat
|
||||
lblSponge=Éponge
|
||||
lblSpy=Espionner
|
||||
lblSquid=Calmar
|
||||
lblSquirrel=Écureuil
|
||||
lblStarfish=Étoile de mer
|
||||
lblSurrakar=Surrakar
|
||||
lblSurvivor=Survivant
|
||||
lblTentacle=Tentacule
|
||||
lblTetravite=Tétravite
|
||||
lblThalakos=Thalakos
|
||||
lblThopter=Thopter
|
||||
lblThrull=Thrull
|
||||
lblTiefling=Tiefling
|
||||
lblTrap=Piège
|
||||
lblTreasure=Trésor
|
||||
lblTreefolk=Volant des arbres
|
||||
lblTrilobite=Trilobite
|
||||
lblTriskelavite=Triskelavite
|
||||
lblTroll=Troll
|
||||
lblTurtle=Tortue
|
||||
lblTyranid=Tyranide
|
||||
lblUnicorn=Licorne
|
||||
lblVampire=Vampire
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=Véhicule
|
||||
lblViashino=Viahino
|
||||
lblVolver=Volver
|
||||
lblWall=Mur
|
||||
lblWarlock=démoniste
|
||||
lblWarrior=Guerrier
|
||||
lblWeird=Bizarre
|
||||
lblWerewolf=Loup-garou
|
||||
lblWhale=Baleine
|
||||
lblWizard=Magicien
|
||||
lblWolf=Loup
|
||||
lblWolverine=Carcajou
|
||||
lblWombat=Wombat
|
||||
lblWorm=Ver
|
||||
lblWraith=Spectre
|
||||
lblWurm=Wurm
|
||||
lblYeti=Yeti
|
||||
lblZombie=Zombi
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -825,6 +825,7 @@ lblEnchantments=Incantesimi
|
||||
lblPlaneswalkers=Planeswalker
|
||||
lblInstants=Istantanei
|
||||
lblSorceries=Stregonerie
|
||||
lblBattles=Battaglie
|
||||
lblCCMC0=Carte con CMC 0
|
||||
lblCCMC1=Carte con CMC 1
|
||||
lblCCMC2=Carte con CMC 2
|
||||
@@ -2972,6 +2973,13 @@ lblZoom=Ingrandisci
|
||||
lblEffect=Effetto
|
||||
lblEmblem=Emblema
|
||||
lblBoon=Boon
|
||||
lblTheRing=L'anello
|
||||
lblTheMonarch=Il monarca
|
||||
lblTheInitiative=L'iniziativa
|
||||
lblCityBlessing=La benedizione della città
|
||||
lblKeywordEffects=Effetti delle parole chiave
|
||||
lblChangelog=I cambiamenti
|
||||
lblToken=Gettone
|
||||
lblBackToAdventure=Torna all'avventura
|
||||
lblDisableWinLose=Disabilita overlay winlose
|
||||
lblExitToWoldMap=Esci alla mappa del mondo?
|
||||
@@ -2980,3 +2988,313 @@ lblWouldYouLikeDestroy=Vorresti distruggere {0}?
|
||||
lblAdventureDescription=La modalità Adventure è dove esplori il paesaggio in continua evoluzione di Shandalar e le creature di duello per guadagnare oro, frammenti, attrezzature e nuove carte per diventare i migliori e raccoglierle tutte!
|
||||
lblEmptyDeck=Mazzo di carte vuoto
|
||||
lblNoAvailableSlots=Nessuno slot disponibile
|
||||
lblAdventure=Avventura
|
||||
lblAdvisor=Consulente
|
||||
lblAetherborn=Eetherborn
|
||||
lblAlly=Alleato
|
||||
lblAngel=Angelo
|
||||
lblAntelope=Antilope
|
||||
lblApe=Scimmia
|
||||
lblArcane=Arcano
|
||||
lblArcher=Arciere
|
||||
lblArchon=Archon
|
||||
lblArmy=Esercito
|
||||
lblArtificer=Artificiale
|
||||
lblAssassin=Assassino
|
||||
lblAssembly-Worker=Operaio
|
||||
lblAstartes=Astartes
|
||||
lblAtog=ATOG
|
||||
lblAura=Aura
|
||||
lblAurochs=Aurochs
|
||||
lblAvatar=Avatar
|
||||
lblAzra=Azra
|
||||
lblBackground=Sfondo
|
||||
lblBadger=Tasso
|
||||
lblBarbarian=Barbaro
|
||||
lblBard=Bardo
|
||||
lblBasilisk=Basilisco
|
||||
lblBat=Pipistrello
|
||||
lblBear=Orso
|
||||
lblBeast=Bestia
|
||||
lblBeeble=Beeble
|
||||
lblBeholder=Guarda
|
||||
lblBerserker=Berserker
|
||||
lblBird=Uccello
|
||||
lblBlinkmoth=Blinkmoth
|
||||
lblBlood=Sangue
|
||||
lblBoar=Cinghiale
|
||||
lblBrainiac=Cervello
|
||||
lblBringer=Portatore
|
||||
lblBrushwagg=Brushwagg
|
||||
lblC'tan=C'tan
|
||||
lblCamarid=Camarido
|
||||
lblCamel=Cammello
|
||||
lblCaribou=Caribù
|
||||
lblCarrier=Vettore
|
||||
lblCartouche=Cartiglio
|
||||
lblCat=Gatto
|
||||
lblCentaur=Centauro
|
||||
lblCephalid=Cefalide
|
||||
lblChimera=Chimera
|
||||
lblCitizen=Cittadino
|
||||
lblClamfolk=Clamfolk
|
||||
lblClass=Classe
|
||||
lblCleric=Chierico
|
||||
lblClown=Clown
|
||||
lblClue=Traccia
|
||||
lblCockatrice=Basilisco
|
||||
lblConstruct=Costruire
|
||||
lblContraption=Aggeggio
|
||||
lblCow=Mucca
|
||||
lblCoward=Vigliacco
|
||||
lblCrab=Granchio
|
||||
lblCrocodile=Coccodrillo
|
||||
lblCurse=Maledizione
|
||||
lblCyborg=Cyborg
|
||||
lblCyclops=Ciclope
|
||||
lblDauthi=Dauthi
|
||||
lblDemigod=Semidio
|
||||
lblDemon=Demone
|
||||
lblDeserter=Disertore
|
||||
lblDevil=diavolo
|
||||
lblDinosaur=Dinosauro
|
||||
lblDjinn=Djinn
|
||||
lblDog=Cane
|
||||
lblDragon=Drago
|
||||
lblDrake=Drake
|
||||
lblDreadnought=Dreadnought
|
||||
lblDrone=Drone
|
||||
lblDruid=druido
|
||||
lblDryad=Driade
|
||||
lblDwarf=Nano
|
||||
lblEfreet=Efreet
|
||||
lblEgg=Uovo
|
||||
lblElder=Sambuco
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=Elementare
|
||||
lblElephant=Elefante
|
||||
lblElf=Elfo
|
||||
lblElk=Alce
|
||||
lblEmployee=Dipendente
|
||||
lblEquipment=Attrezzatura
|
||||
lblEye=Occhio
|
||||
lblFaerie=Faerie
|
||||
lblFerret=Furetto
|
||||
lblFighter=Combattente
|
||||
lblFish=Pescare
|
||||
lblFlagbearer=Portabandiera
|
||||
lblFood=Cibo
|
||||
lblFortification=Fortificazione
|
||||
lblFox=Volpe
|
||||
lblFractal=Frattale
|
||||
lblFrog=Rana
|
||||
lblFungus=Fungo
|
||||
lblGamer=Giocatore
|
||||
lblGargoyle=Gargoyle
|
||||
lblGerm=Germe
|
||||
lblGiant=Gigante
|
||||
lblGith=GITH
|
||||
lblGnoll=Gnoll
|
||||
lblGnome=Gnoma
|
||||
lblGoat=Capra
|
||||
lblGoblin=Goblin
|
||||
lblGod=Dio
|
||||
lblGold=Oro
|
||||
lblGolem=GOLEM
|
||||
lblGorgon=Gorgone
|
||||
lblGraveborn=Graveborn
|
||||
lblGremlin=Gremlin
|
||||
lblGriffin=Grifone
|
||||
lblGuest=Ospite
|
||||
lblHag=Strega
|
||||
lblHalfling=Halfling
|
||||
lblHamster=Criceto
|
||||
lblHarpy=Arpia
|
||||
lblHellion=Hellion
|
||||
lblHippo=Ippopotamo
|
||||
lblHippogriff=Ippogriff
|
||||
lblHomarid=Omaride
|
||||
lblHomunculus=Omuncolo
|
||||
lblHorror=Orrore
|
||||
lblHorse=Cavallo
|
||||
lblHuman=Umano
|
||||
lblHydra=Idra
|
||||
lblHyena=Iena
|
||||
lblIllusion=Illusione
|
||||
lblImp=Imp
|
||||
lblIncarnation=Incarnazione
|
||||
lblIncubator=Incubatrice
|
||||
lblInkling=Inkling
|
||||
lblInquisitor=Inquisitore
|
||||
lblInsect=Insetto
|
||||
lblJackal=Sciacallo
|
||||
lblJellyfish=Medusa
|
||||
lblJuggernaut=Travolgente
|
||||
lblKangaroo=Canguro
|
||||
lblKavu=Kavu
|
||||
lblKey=Chiave
|
||||
lblKillbot=Killbot
|
||||
lblKirin=Kirin
|
||||
lblKithkin=Kithkin
|
||||
lblKnight=Cavaliere
|
||||
lblKobold=Kobold
|
||||
lblKor=Kor
|
||||
lblKraken=Kraken
|
||||
lblLamia=Lamia
|
||||
lblLammasu=Lammasu
|
||||
lblLeech=Sanguisuga
|
||||
lblLesson=Lezione
|
||||
lblLeviathan=Leviatano
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=LICID
|
||||
lblLizard=Lucertola
|
||||
lblLobster=Aragosta
|
||||
lblMammoth=Mammut
|
||||
lblManticore=Manticore
|
||||
lblMasticore=Masticore
|
||||
lblMercenary=Mercenario
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Metathran
|
||||
lblMinion=Minion
|
||||
lblMinotaur=Minotauro
|
||||
lblMite=Acaro
|
||||
lblMole=Neo
|
||||
lblMonger=Monger
|
||||
lblMongoose=Mangusta
|
||||
lblMonk=Monaco
|
||||
lblMonkey=Scimmia
|
||||
lblMoonfolk=Moonfolk
|
||||
lblMouse=Topo
|
||||
lblMutant=Mutante
|
||||
lblMyr=Myr
|
||||
lblMystic=Mistico
|
||||
lblNaga=Naga
|
||||
lblNautilus=Nautilus
|
||||
lblNecron=Necron
|
||||
lblNephilim=Nefilim
|
||||
lblNightmare=Incubo
|
||||
lblNightstalker=Nightstalker
|
||||
lblNinja=Ninja
|
||||
lblNoble=Nobile
|
||||
lblNoggle=Noggle
|
||||
lblNomad=Nomade
|
||||
lblNymph=Ninfa
|
||||
lblOctopus=Polpo
|
||||
lblOgre=Orco
|
||||
lblOoze=Ooze
|
||||
lblOrb=Sfera
|
||||
lblOrc=Orc
|
||||
lblOrgg=Orgg
|
||||
lblOtter=Lontra
|
||||
lblOuphe=Ouphe
|
||||
lblOx=Bue
|
||||
lblOyster=ostrica
|
||||
lblPangolin=Pangolino
|
||||
lblPeasant=Contadino
|
||||
lblPegasus=Pegasus
|
||||
lblPentavite=Pentavite
|
||||
lblPest=Parassiti
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=Fenice
|
||||
lblPhyrexian=Phyrexian
|
||||
lblPilot=Pilota
|
||||
lblPincher=Pincher
|
||||
lblPirate=Pirata
|
||||
lblPlant=Pianta
|
||||
lblPowerstone=Powerstone
|
||||
lblPraetor=Pretore
|
||||
lblPrimarch=Primarca
|
||||
lblPrism=Prisma
|
||||
lblProcessor=Processore
|
||||
lblRabbit=Coniglio
|
||||
lblRanger=Ranger
|
||||
lblRat=Ratto
|
||||
lblRebel=Ribelle
|
||||
lblReflection=Riflessione
|
||||
lblRhino=Rinoceronte
|
||||
lblRigger=Rigger
|
||||
lblRobot=Robot
|
||||
lblRogue=Briccone
|
||||
lblRune=Runa
|
||||
lblSable=Zibellino
|
||||
lblSaga=Saga
|
||||
lblSalamander=Salamandra
|
||||
lblSamurai=Samurai
|
||||
lblSand=Sabbia
|
||||
lblSaproling=Saproling
|
||||
lblSatyr=Satiro
|
||||
lblScarecrow=Spaventapasseri
|
||||
lblScientist=Scienziato
|
||||
lblScion=Scion
|
||||
lblScorpion=Scorpione
|
||||
lblScout=Scout
|
||||
lblSculpture=Scultura
|
||||
lblSerf=Serf
|
||||
lblSerpent=Serpente
|
||||
lblServo=Servo
|
||||
lblShade=Ombra
|
||||
lblShaman=Sciamano
|
||||
lblShapeshifter=Shapeshifter
|
||||
lblShard=Coccio
|
||||
lblShark=Squalo
|
||||
lblSheep=Pecora
|
||||
lblShrine=Santuario
|
||||
lblSiren=Sirena
|
||||
lblSkeleton=Scheletro
|
||||
lblSlith=Slith
|
||||
lblSliver=Frammento
|
||||
lblSlug=Lumaca
|
||||
lblSnake=Serpente
|
||||
lblSoldier=Soldato
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=Produrre
|
||||
lblSpecter=Spettro
|
||||
lblSpellshaper=Spellshaper
|
||||
lblSphinx=Sfinge
|
||||
lblSpider=Ragno
|
||||
lblSpike=Arpione
|
||||
lblSpirit=Spirito
|
||||
lblSplinter=Scheggia
|
||||
lblSponge=Spugna
|
||||
lblSpy=Spiare
|
||||
lblSquid=Calamaro
|
||||
lblSquirrel=Scoiattolo
|
||||
lblStarfish=Stella marina
|
||||
lblSurrakar=Surrakar
|
||||
lblSurvivor=Sopravvissuto
|
||||
lblTentacle=Tentacolo
|
||||
lblTetravite=Tetravite
|
||||
lblThalakos=Thalakos
|
||||
lblThopter=Thopter
|
||||
lblThrull=Fluttuare
|
||||
lblTiefling=Tiefling
|
||||
lblTrap=Trappola
|
||||
lblTreasure=Tesoro
|
||||
lblTreefolk=Alberofolk
|
||||
lblTrilobite=Trilobite
|
||||
lblTriskelavite=Triskelavite
|
||||
lblTroll=Troll
|
||||
lblTurtle=Tartaruga
|
||||
lblTyranid=Tyranid
|
||||
lblUnicorn=Unicorno
|
||||
lblVampire=Vampiro
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=Veicolo
|
||||
lblViashino=Viashino
|
||||
lblVolver=Volver
|
||||
lblWall=Parete
|
||||
lblWarlock=Stregone
|
||||
lblWarrior=Guerriero
|
||||
lblWeird=Strano
|
||||
lblWerewolf=Mannaro
|
||||
lblWhale=Balena
|
||||
lblWizard=Procedura guidata
|
||||
lblWolf=Lupo
|
||||
lblWolverine=Ghiottone
|
||||
lblWombat=Donna
|
||||
lblWorm=Verme
|
||||
lblWraith=Wraith
|
||||
lblWurm=Wurm
|
||||
lblYeti=Yeti
|
||||
lblZombie=Zombie
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -826,6 +826,7 @@ lblEnchantments=エンチャントのみ表示
|
||||
lblPlaneswalkers=プレインズウォーカーのみ表示
|
||||
lblInstants=インスタントのみ表示
|
||||
lblSorceries=ソーサリーのみ表示
|
||||
lblBattles=戦い
|
||||
lblCCMC0=マナ総量 0のカードのみ表示
|
||||
lblCCMC1=マナ総量 1のカードのみ表示
|
||||
lblCCMC2=マナ総量 2のカードのみ表示
|
||||
@@ -2969,6 +2970,13 @@ lblZoom=ズーム
|
||||
lblEffect=効果
|
||||
lblEmblem=エンブレム
|
||||
lblBoon=ブーン
|
||||
lblTheRing=リング
|
||||
lblTheMonarch=君主
|
||||
lblTheInitiative=イニシアチブ
|
||||
lblCityBlessing=都市の祝福
|
||||
lblKeywordEffects=キーワード効果
|
||||
lblChangelog=変更
|
||||
lblToken=トークン
|
||||
lblBackToAdventure=冒険に戻ります
|
||||
lblDisableWinLose=Winloseオーバーレイを無効にします
|
||||
lblExitToWoldMap=世界地図に終了しますか?
|
||||
@@ -2977,3 +2985,313 @@ lblWouldYouLikeDestroy={0}を破壊しますか?
|
||||
lblAdventureDescription=アドベンチャーモードは、金、破片、機器、新しいカードを獲得して最高のものになり、すべてを集めるために、Shandalarの絶えず変化する風景と決闘の生き物を探求する場所です!
|
||||
lblEmptyDeck=空のトランプデッキ
|
||||
lblNoAvailableSlots=使用可能なスロットがありませる。
|
||||
lblAdventure=冒険
|
||||
lblAdvisor=アドバイザー
|
||||
lblAetherborn=エーテルボーン
|
||||
lblAlly=味方
|
||||
lblAngel=天使
|
||||
lblAntelope=アンテロープ
|
||||
lblApe=類人猿
|
||||
lblArcane=不可解な
|
||||
lblArcher=射手
|
||||
lblArchon=アルコン
|
||||
lblArmy=軍
|
||||
lblArtificer=職人
|
||||
lblAssassin=暗殺者
|
||||
lblAssembly-Worker=アセンブリワーカー
|
||||
lblAstartes=アスターテス
|
||||
lblAtog=atog
|
||||
lblAura=オーラ
|
||||
lblAurochs=オーロック
|
||||
lblAvatar=アバター
|
||||
lblAzra=アズラ
|
||||
lblBackground=バックグラウンド
|
||||
lblBadger=狸
|
||||
lblBarbarian=野蛮人
|
||||
lblBard=吟遊詩人
|
||||
lblBasilisk=バジリスク
|
||||
lblBat=コウモリ
|
||||
lblBear=クマ
|
||||
lblBeast=獣
|
||||
lblBeeble=ビーブル
|
||||
lblBeholder=見る人
|
||||
lblBerserker=バーサーカー
|
||||
lblBird=鳥
|
||||
lblBlinkmoth=blinkmoth
|
||||
lblBlood=血
|
||||
lblBoar=イノシシ
|
||||
lblBrainiac=Brainiac
|
||||
lblBringer=ブリンガー
|
||||
lblBrushwagg=Brushwagg
|
||||
lblC'tan=c'tan
|
||||
lblCamarid=カマリド
|
||||
lblCamel=キャメル
|
||||
lblCaribou=カリブー
|
||||
lblCarrier=キャリア
|
||||
lblCartouche=カルトーシュ
|
||||
lblCat=猫
|
||||
lblCentaur=ケンタウロス
|
||||
lblCephalid=cephalid
|
||||
lblChimera=キメラ
|
||||
lblCitizen=市民
|
||||
lblClamfolk=クラムフォーク
|
||||
lblClass=クラス
|
||||
lblCleric=聖職者
|
||||
lblClown=ピエロ
|
||||
lblClue=ヒント
|
||||
lblCockatrice=コカトリス
|
||||
lblConstruct=構成
|
||||
lblContraption=仕掛け
|
||||
lblCow=牛
|
||||
lblCoward=腰抜け
|
||||
lblCrab=カニ
|
||||
lblCrocodile=クロコダイル
|
||||
lblCurse=呪い
|
||||
lblCyborg=サイボーグ
|
||||
lblCyclops=サイクロプス
|
||||
lblDauthi=ダウティ
|
||||
lblDemigod=半神
|
||||
lblDemon=悪魔
|
||||
lblDeserter=脱走者
|
||||
lblDevil=悪魔
|
||||
lblDinosaur=恐竜
|
||||
lblDjinn=ジン
|
||||
lblDog=犬
|
||||
lblDragon=ドラゴン
|
||||
lblDrake=ドレイク
|
||||
lblDreadnought=ドレッドノート
|
||||
lblDrone=ドローン
|
||||
lblDruid=ドルイド
|
||||
lblDryad=ドライアド
|
||||
lblDwarf=小人
|
||||
lblEfreet=efreet
|
||||
lblEgg=卵
|
||||
lblElder=長老
|
||||
lblEldrazi=エルドラジ
|
||||
lblElemental=エレメンタル
|
||||
lblElephant=象
|
||||
lblElf=妖精
|
||||
lblElk=エルク
|
||||
lblEmployee=職員
|
||||
lblEquipment=装置
|
||||
lblEye=目
|
||||
lblFaerie=妖精
|
||||
lblFerret=フェレット
|
||||
lblFighter=戦士
|
||||
lblFish=魚
|
||||
lblFlagbearer=旗手
|
||||
lblFood=食べ物
|
||||
lblFortification=要塞
|
||||
lblFox=狐
|
||||
lblFractal=フラクタル
|
||||
lblFrog=蛙
|
||||
lblFungus=真菌
|
||||
lblGamer=ゲーマー
|
||||
lblGargoyle=ガーゴイル
|
||||
lblGerm=胚芽
|
||||
lblGiant=巨人
|
||||
lblGith=ギス
|
||||
lblGnoll=gnoll
|
||||
lblGnome=gnome
|
||||
lblGoat=ヤギ
|
||||
lblGoblin=ゴブリン
|
||||
lblGod=神
|
||||
lblGold=金
|
||||
lblGolem=ゴーレム
|
||||
lblGorgon=ゴルゴン
|
||||
lblGraveborn=墓
|
||||
lblGremlin=グレムリン
|
||||
lblGriffin=グリフィン
|
||||
lblGuest=ゲスト
|
||||
lblHag=ハグ
|
||||
lblHalfling=ハーフリング
|
||||
lblHamster=ハムスター
|
||||
lblHarpy=ハーピー
|
||||
lblHellion=ヘリオン
|
||||
lblHippo=カバ
|
||||
lblHippogriff=ヒッポグリフ
|
||||
lblHomarid=homarid
|
||||
lblHomunculus=Homunculus
|
||||
lblHorror=ホラー
|
||||
lblHorse=馬
|
||||
lblHuman=人間
|
||||
lblHydra=ハイドラ
|
||||
lblHyena=ハイエナ
|
||||
lblIllusion=幻想
|
||||
lblImp=インプ
|
||||
lblIncarnation=化身
|
||||
lblIncubator=インキュベータ
|
||||
lblInkling=インクリング
|
||||
lblInquisitor=インクイジター
|
||||
lblInsect=虫
|
||||
lblJackal=ジャッカル
|
||||
lblJellyfish=クラゲ
|
||||
lblJuggernaut=ジャガーノート
|
||||
lblKangaroo=カンガルー
|
||||
lblKavu=カブ
|
||||
lblKey=鍵
|
||||
lblKillbot=キルボット
|
||||
lblKirin=キリン
|
||||
lblKithkin=キスキン
|
||||
lblKnight=騎士
|
||||
lblKobold=コボルド
|
||||
lblKor=コル
|
||||
lblKraken=Kraken
|
||||
lblLamia=ラミア
|
||||
lblLammasu=Lammasu
|
||||
lblLeech=リーチ
|
||||
lblLesson=レッスン
|
||||
lblLeviathan=リヴァイアサン
|
||||
lblLhurgoyf=lhurgoyf
|
||||
lblLicid=LICID
|
||||
lblLizard=トカゲ
|
||||
lblLobster=ロブスター
|
||||
lblMammoth=マンモス
|
||||
lblManticore=Manticore
|
||||
lblMasticore=Masticore
|
||||
lblMercenary=傭兵
|
||||
lblMerfolk=メルフォーク
|
||||
lblMetathran=メタラン
|
||||
lblMinion=ミニオン
|
||||
lblMinotaur=ミノタウロス
|
||||
lblMite=ダニ
|
||||
lblMole=モル
|
||||
lblMonger=モンガー
|
||||
lblMongoose=マングース
|
||||
lblMonk=モンク
|
||||
lblMonkey=猿
|
||||
lblMoonfolk=ムーンフォーク
|
||||
lblMouse=ねずみ
|
||||
lblMutant=ミュータント
|
||||
lblMyr=myr
|
||||
lblMystic=神秘的な
|
||||
lblNaga=ナガ
|
||||
lblNautilus=ノーチラス
|
||||
lblNecron=ネクロン
|
||||
lblNephilim=ネフィリム
|
||||
lblNightmare=悪夢
|
||||
lblNightstalker=ナイトストーカー
|
||||
lblNinja=忍者
|
||||
lblNoble=ノーブル
|
||||
lblNoggle=ノグル
|
||||
lblNomad=遊牧民
|
||||
lblNymph=ニンフ
|
||||
lblOctopus=タコ
|
||||
lblOgre=鬼
|
||||
lblOoze=にじみ出る
|
||||
lblOrb=オーブ
|
||||
lblOrc=orc
|
||||
lblOrgg=orgg
|
||||
lblOtter=カワウソ
|
||||
lblOuphe=Ouphe
|
||||
lblOx=牛
|
||||
lblOyster=カキ
|
||||
lblPangolin=パンゴリン
|
||||
lblPeasant=農民
|
||||
lblPegasus=ペガサス
|
||||
lblPentavite=ペンタヴァイト
|
||||
lblPest=害虫
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=フェニックス
|
||||
lblPhyrexian=ファイレクシアン
|
||||
lblPilot=パイロット
|
||||
lblPincher=ピンチャー
|
||||
lblPirate=海賊
|
||||
lblPlant=植物
|
||||
lblPowerstone=パワーストーン
|
||||
lblPraetor=賞賛
|
||||
lblPrimarch=プリマーカー
|
||||
lblPrism=プリズム
|
||||
lblProcessor=プロセッサ
|
||||
lblRabbit=うさぎ
|
||||
lblRanger=部隊
|
||||
lblRat=ねずみ
|
||||
lblRebel=反逆者
|
||||
lblReflection=反射
|
||||
lblRhino=サイ
|
||||
lblRigger=リガー
|
||||
lblRobot=ロボット
|
||||
lblRogue=ローグ
|
||||
lblRune=ルーン
|
||||
lblSable=セーブル
|
||||
lblSaga=サガ
|
||||
lblSalamander=サンショウウオ
|
||||
lblSamurai=武士
|
||||
lblSand=砂
|
||||
lblSaproling=サプロリング
|
||||
lblSatyr=サテュロ
|
||||
lblScarecrow=かかし
|
||||
lblScientist=科学者
|
||||
lblScion=サイオン
|
||||
lblScorpion=サソリ
|
||||
lblScout=スカウト
|
||||
lblSculpture=彫刻
|
||||
lblSerf=農奴
|
||||
lblSerpent=蛇
|
||||
lblServo=サーボ
|
||||
lblShade=シェード
|
||||
lblShaman=シャーマン
|
||||
lblShapeshifter=Shapeshifter
|
||||
lblShard=シャード
|
||||
lblShark=鮫
|
||||
lblSheep=羊
|
||||
lblShrine=神社
|
||||
lblSiren=サイレン
|
||||
lblSkeleton=スケルトン
|
||||
lblSlith=スリス
|
||||
lblSliver=スライバー
|
||||
lblSlug=ナメクジ
|
||||
lblSnake=蛇
|
||||
lblSoldier=兵隊
|
||||
lblSoltari=ソルタリ
|
||||
lblSpawn=スポーン
|
||||
lblSpecter=スペクター
|
||||
lblSpellshaper=スペルシェイパー
|
||||
lblSphinx=スフィンクス
|
||||
lblSpider=クモ
|
||||
lblSpike=スパイク
|
||||
lblSpirit=精神
|
||||
lblSplinter=破片
|
||||
lblSponge=スポンジ
|
||||
lblSpy=スパイ
|
||||
lblSquid=イカ
|
||||
lblSquirrel=リス
|
||||
lblStarfish=ヒトデ
|
||||
lblSurrakar=surrakar
|
||||
lblSurvivor=サバイバー
|
||||
lblTentacle=触手
|
||||
lblTetravite=Tetravite
|
||||
lblThalakos=タラコス
|
||||
lblThopter=トプター
|
||||
lblThrull=スラル
|
||||
lblTiefling=ティーフリング
|
||||
lblTrap=トラップ
|
||||
lblTreasure=宝物
|
||||
lblTreefolk=ツリーフォーク
|
||||
lblTrilobite=三葉虫
|
||||
lblTriskelavite=Triskelavite
|
||||
lblTroll=トロール
|
||||
lblTurtle=カメ
|
||||
lblTyranid=ティラニド
|
||||
lblUnicorn=ユニコーン
|
||||
lblVampire=吸血鬼
|
||||
lblVedalken=ヴェダルケン
|
||||
lblVehicle=車両
|
||||
lblViashino=ヴィシーノ
|
||||
lblVolver=Volver
|
||||
lblWall=壁
|
||||
lblWarlock=ウォーロック
|
||||
lblWarrior=戦士
|
||||
lblWeird=変
|
||||
lblWerewolf=人狼
|
||||
lblWhale=鯨
|
||||
lblWizard=ウィザード
|
||||
lblWolf=狼
|
||||
lblWolverine=ウルヴァリン
|
||||
lblWombat=ウォンバット
|
||||
lblWorm=いも虫
|
||||
lblWraith=レイス
|
||||
lblWurm=ワーム
|
||||
lblYeti=イエティ
|
||||
lblZombie=ゾンビ
|
||||
lblZubera=ズベラ
|
||||
|
||||
@@ -851,6 +851,7 @@ lblEnchantments=Encantamentos
|
||||
lblPlaneswalkers=Planeswalker
|
||||
lblInstants=Mágicas Instantâneas
|
||||
lblSorceries=Feitiços
|
||||
lblBattles=Batalhas
|
||||
lblCCMC0=Cartas com valor de mana 0
|
||||
lblCCMC1=Cartas com valor de mana 1
|
||||
lblCCMC2=Cartas com valor de mana 2
|
||||
@@ -3057,8 +3058,15 @@ lblMythic=Mythic
|
||||
lblAchievementEarned=Achievement Earned
|
||||
lblZoom=Ampliação
|
||||
lblEffect=Efeito
|
||||
lblEmblem=Emblem
|
||||
lblEmblem=Emblema
|
||||
lblBoon=Boon
|
||||
lblTheRing=O anel
|
||||
lblTheMonarch=O monarca
|
||||
lblTheInitiative=A iniciativa
|
||||
lblCityBlessing=A bênção da cidade
|
||||
lblKeywordEffects=Efeitos de palavras chave
|
||||
lblChangelog=Mudanças
|
||||
lblToken=Símbolo
|
||||
lblBackToAdventure=De volta à aventura
|
||||
lblDisableWinLose=Desative a sobreposição de Winlose
|
||||
lblExitToWoldMap=Sair para o mapa do mundo?
|
||||
@@ -3067,3 +3075,313 @@ lblWouldYouLikeDestroy=Você gostaria de destruir {0}?
|
||||
lblAdventureDescription=O modo de aventura é onde você explora a paisagem em constante mudança de Shandalar, e duelo para ganhar ouro, fragmentos, equipamentos e novos cartões para se tornarem os melhores e colecioná-los!
|
||||
lblEmptyDeck=Baralho de cartas vazio
|
||||
lblNoAvailableSlots=Não há slots disponíveis
|
||||
lblAdventure=Aventura
|
||||
lblAdvisor=Orientador
|
||||
lblAetherborn=Aetherborn
|
||||
lblAlly=Aliado
|
||||
lblAngel=Anjo
|
||||
lblAntelope=Antílope
|
||||
lblApe=Macaco
|
||||
lblArcane=Arcano
|
||||
lblArcher=Arqueiro
|
||||
lblArchon=Arconte
|
||||
lblArmy=Exército
|
||||
lblArtificer=Artífice
|
||||
lblAssassin=Assassino
|
||||
lblAssembly-Worker=Trabalhador de montagem
|
||||
lblAstartes=Astartes
|
||||
lblAtog=Atog
|
||||
lblAura=Aura
|
||||
lblAurochs=Auroque
|
||||
lblAvatar=Avatar
|
||||
lblAzra=Azra
|
||||
lblBackground=Fundo
|
||||
lblBadger=Texugo
|
||||
lblBarbarian=bárbaro
|
||||
lblBard=Bardo
|
||||
lblBasilisk=Basilisco
|
||||
lblBat=Bastão
|
||||
lblBear=Urso
|
||||
lblBeast=Fera
|
||||
lblBeeble=Beeble
|
||||
lblBeholder=espectador
|
||||
lblBerserker=Berserker
|
||||
lblBird=Pássaro
|
||||
lblBlinkmoth=Blinkmoth
|
||||
lblBlood=Sangue
|
||||
lblBoar=Javali
|
||||
lblBrainiac=Brainiac
|
||||
lblBringer=Tragante
|
||||
lblBrushwagg=Brushwagg
|
||||
lblC'tan=C'tan
|
||||
lblCamarid=Camarídeo
|
||||
lblCamel=Camelo
|
||||
lblCaribou=Caribou
|
||||
lblCarrier=Operadora
|
||||
lblCartouche=Cartouche
|
||||
lblCat=Gato
|
||||
lblCentaur=Centauro
|
||||
lblCephalid=Cefalídeo
|
||||
lblChimera=Quimera
|
||||
lblCitizen=Cidadão
|
||||
lblClamfolk=CLAMFOLK
|
||||
lblClass=Aula
|
||||
lblCleric=Clérigo
|
||||
lblClown=Palhaço
|
||||
lblClue=Dica
|
||||
lblCockatrice=Basilisco
|
||||
lblConstruct=Construir
|
||||
lblContraption=Engenhoca
|
||||
lblCow=Vaca
|
||||
lblCoward=Covarde
|
||||
lblCrab=Caranguejo
|
||||
lblCrocodile=Crocodilo
|
||||
lblCurse=Xingamento
|
||||
lblCyborg=Cyborg
|
||||
lblCyclops=Ciclope
|
||||
lblDauthi=Dauthi
|
||||
lblDemigod=Semideus
|
||||
lblDemon=Demônio
|
||||
lblDeserter=Desertor
|
||||
lblDevil=Diabo
|
||||
lblDinosaur=Dinossauro
|
||||
lblDjinn=Djinn
|
||||
lblDog=Cachorro
|
||||
lblDragon=Dragão
|
||||
lblDrake=Drake
|
||||
lblDreadnought=Dreadnought
|
||||
lblDrone=Drone
|
||||
lblDruid=druida
|
||||
lblDryad=Dríade
|
||||
lblDwarf=Anão
|
||||
lblEfreet=Efreet
|
||||
lblEgg=Ovo
|
||||
lblElder=Mais velho
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=Elementar
|
||||
lblElephant=Elefante
|
||||
lblElf=Duende
|
||||
lblElk=Elk
|
||||
lblEmployee=Funcionário
|
||||
lblEquipment=Equipamento
|
||||
lblEye=Olho
|
||||
lblFaerie=Faerie
|
||||
lblFerret=Furão
|
||||
lblFighter=Lutador
|
||||
lblFish=Peixe
|
||||
lblFlagbearer=Portador de bandeira
|
||||
lblFood=Comida
|
||||
lblFortification=Fortificação
|
||||
lblFox=Raposa
|
||||
lblFractal=Fractal
|
||||
lblFrog=Sapo
|
||||
lblFungus=Fungo
|
||||
lblGamer=Jogador
|
||||
lblGargoyle=Gárgula
|
||||
lblGerm=Germe
|
||||
lblGiant=Gigante
|
||||
lblGith=Gith
|
||||
lblGnoll=Gnoll
|
||||
lblGnome=Gnomo
|
||||
lblGoat=Cabra
|
||||
lblGoblin=Goblin
|
||||
lblGod=Deus
|
||||
lblGold=Ouro
|
||||
lblGolem=Golem
|
||||
lblGorgon=Gorgon
|
||||
lblGraveborn=Graveborn
|
||||
lblGremlin=Gremlin
|
||||
lblGriffin=Griffin
|
||||
lblGuest=Convidado
|
||||
lblHag=Bruxa
|
||||
lblHalfling=Halfling
|
||||
lblHamster=Hamster
|
||||
lblHarpy=Harpia
|
||||
lblHellion=Hellion
|
||||
lblHippo=Hipopótamo
|
||||
lblHippogriff=Hipogrifo
|
||||
lblHomarid=Homarídeo
|
||||
lblHomunculus=Homúnculus
|
||||
lblHorror=Horror
|
||||
lblHorse=Cavalo
|
||||
lblHuman=Humano
|
||||
lblHydra=Hidra
|
||||
lblHyena=Hiena
|
||||
lblIllusion=Ilusão
|
||||
lblImp=Criança levada
|
||||
lblIncarnation=Encarnação
|
||||
lblIncubator=Incubadora
|
||||
lblInkling=Inkling
|
||||
lblInquisitor=Inquisidor
|
||||
lblInsect=Inseto
|
||||
lblJackal=Chacal
|
||||
lblJellyfish=Medusa
|
||||
lblJuggernaut=Juggernaut
|
||||
lblKangaroo=Canguru
|
||||
lblKavu=Kavu
|
||||
lblKey=Chave
|
||||
lblKillbot=Killbot
|
||||
lblKirin=Kirin
|
||||
lblKithkin=Kithkin
|
||||
lblKnight=Cavaleiro
|
||||
lblKobold=Kobold
|
||||
lblKor=Kor
|
||||
lblKraken=Kraken
|
||||
lblLamia=Lamia
|
||||
lblLammasu=Lammasu
|
||||
lblLeech=Sanguessuga
|
||||
lblLesson=Lição
|
||||
lblLeviathan=Leviatã
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=Licid
|
||||
lblLizard=Lagarto
|
||||
lblLobster=Lagosta
|
||||
lblMammoth=Mamute
|
||||
lblManticore=Manticore
|
||||
lblMasticore=MASTICORE
|
||||
lblMercenary=Mercenário
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Metathran
|
||||
lblMinion=Minion
|
||||
lblMinotaur=Minotauro
|
||||
lblMite=Ácar
|
||||
lblMole=Verruga
|
||||
lblMonger=Monger
|
||||
lblMongoose=Mangusto
|
||||
lblMonk=Monge
|
||||
lblMonkey=Macaco
|
||||
lblMoonfolk=Moonfolk
|
||||
lblMouse=Rato
|
||||
lblMutant=Mutante
|
||||
lblMyr=Myr
|
||||
lblMystic=Místico
|
||||
lblNaga=Naga
|
||||
lblNautilus=Nautilus
|
||||
lblNecron=Necron
|
||||
lblNephilim=Nephilim
|
||||
lblNightmare=Pesadelo
|
||||
lblNightstalker=Nightstalker
|
||||
lblNinja=Ninja
|
||||
lblNoble=Nobre
|
||||
lblNoggle=Noggle
|
||||
lblNomad=Nômade
|
||||
lblNymph=Ninfa
|
||||
lblOctopus=Polvo
|
||||
lblOgre=Ogro
|
||||
lblOoze=Ooze
|
||||
lblOrb=Esfera
|
||||
lblOrc=Orc
|
||||
lblOrgg=Orgg
|
||||
lblOtter=Lontra
|
||||
lblOuphe=Ouphe
|
||||
lblOx=Boi
|
||||
lblOyster=ostra
|
||||
lblPangolin=Pangolin
|
||||
lblPeasant=Camponês
|
||||
lblPegasus=PEGASUS
|
||||
lblPentavite=Pentavita
|
||||
lblPest=Praga
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=Fénix
|
||||
lblPhyrexian=Phyrexian
|
||||
lblPilot=Piloto
|
||||
lblPincher=Pincher
|
||||
lblPirate=Pirata
|
||||
lblPlant=Plantar
|
||||
lblPowerstone=Powerstone
|
||||
lblPraetor=Pretor
|
||||
lblPrimarch=Primarch
|
||||
lblPrism=Prisma
|
||||
lblProcessor=Processador
|
||||
lblRabbit=Coelho
|
||||
lblRanger=Guarda-florestal
|
||||
lblRat=Rato
|
||||
lblRebel=Rebelde
|
||||
lblReflection=Reflexão
|
||||
lblRhino=Rinoceronte
|
||||
lblRigger=Rigger
|
||||
lblRobot=Robô
|
||||
lblRogue=Por conta própria
|
||||
lblRune=Runa
|
||||
lblSable=Zibelina
|
||||
lblSaga=Saga
|
||||
lblSalamander=Salamandra
|
||||
lblSamurai=Samurai
|
||||
lblSand=Areia
|
||||
lblSaproling=Saproling
|
||||
lblSatyr=Sátiro
|
||||
lblScarecrow=Espantalho
|
||||
lblScientist=Cientista
|
||||
lblScion=Scion
|
||||
lblScorpion=Escorpião
|
||||
lblScout=Scout
|
||||
lblSculpture=Escultura
|
||||
lblSerf=Servo
|
||||
lblSerpent=Serpente
|
||||
lblServo=Servo
|
||||
lblShade=Sombra
|
||||
lblShaman=Xamã
|
||||
lblShapeshifter=Shapinghifter
|
||||
lblShard=Shard
|
||||
lblShark=Tubarão
|
||||
lblSheep=Ovelha
|
||||
lblShrine=Santuário
|
||||
lblSiren=Sirene
|
||||
lblSkeleton=Esqueleto
|
||||
lblSlith=SLITH
|
||||
lblSliver=Lasca
|
||||
lblSlug=Lesma
|
||||
lblSnake=Cobra
|
||||
lblSoldier=Soldado
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=Spawn
|
||||
lblSpecter=espectro
|
||||
lblSpellshaper=Planejador de feitiços
|
||||
lblSphinx=Esfinge
|
||||
lblSpider=Aranha
|
||||
lblSpike=Espinho
|
||||
lblSpirit=Espírito
|
||||
lblSplinter=Lasca
|
||||
lblSponge=Esponja
|
||||
lblSpy=Espião
|
||||
lblSquid=Lula
|
||||
lblSquirrel=Esquilo
|
||||
lblStarfish=Estrela do Mar
|
||||
lblSurrakar=Surrakar
|
||||
lblSurvivor=Sobrevivente
|
||||
lblTentacle=Tentáculo
|
||||
lblTetravite=Tetravita
|
||||
lblThalakos=Thalakos
|
||||
lblThopter=ThoPter
|
||||
lblThrull=Thrull
|
||||
lblTiefling=Tiefling
|
||||
lblTrap=Armadilha
|
||||
lblTreasure=Tesouro
|
||||
lblTreefolk=Treefolk
|
||||
lblTrilobite=Trilobita
|
||||
lblTriskelavite=Triskelavita
|
||||
lblTroll=Provocador
|
||||
lblTurtle=Tartaruga
|
||||
lblTyranid=Tyranid
|
||||
lblUnicorn=Unicórnio
|
||||
lblVampire=Vampiro
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=Veículo
|
||||
lblViashino=ViaShino
|
||||
lblVolver=Volver
|
||||
lblWall=Parede
|
||||
lblWarlock=Bruxo
|
||||
lblWarrior=Guerreiro
|
||||
lblWeird=Esquisito
|
||||
lblWerewolf=Lobisomem
|
||||
lblWhale=Baleia
|
||||
lblWizard=Mago
|
||||
lblWolf=Lobo
|
||||
lblWolverine=Wolverine
|
||||
lblWombat=Wombat
|
||||
lblWorm=Minhoca
|
||||
lblWraith=Wraith
|
||||
lblWurm=Wurm
|
||||
lblYeti=Yeti
|
||||
lblZombie=Zumbi
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -2958,6 +2958,13 @@ lblZoom=飞涨
|
||||
lblEffect=影响
|
||||
lblEmblem=象征
|
||||
lblBoon=恩赐
|
||||
lblTheRing=戒指
|
||||
lblTheMonarch=君主
|
||||
lblTheInitiative=主动
|
||||
lblCityBlessing=都市の祝福
|
||||
lblKeywordEffects=关键字效果
|
||||
lblChangelog=变化
|
||||
lblToken=令牌
|
||||
lblBackToAdventure=回到冒险
|
||||
lblDisableWinLose=禁用Winlose覆盖
|
||||
lblExitToWoldMap=退出世界地图?
|
||||
@@ -2966,3 +2973,313 @@ lblWouldYouLikeDestroy=您想销毁{0}吗?
|
||||
lblAdventureDescription=冒险模式是您探索山达尔(Shandalar)不断变化的景观,以及决斗生物获得黄金,碎片,设备和新卡片,使其成为最好的,并收集所有这些!
|
||||
lblEmptyDeck=空甲板
|
||||
lblNoAvailableSlots=没有可用的插槽
|
||||
lblAdventure=冒险
|
||||
lblAdvisor=顾问
|
||||
lblAetherborn=艾特伯恩
|
||||
lblAlly=盟友
|
||||
lblAngel=天使
|
||||
lblAntelope=羚羊
|
||||
lblApe=猿
|
||||
lblArcane=奥术
|
||||
lblArcher=射手
|
||||
lblArchon=执政官
|
||||
lblArmy=军队
|
||||
lblArtificer=工匠
|
||||
lblAssassin=刺客
|
||||
lblAssembly-Worker=组装工作者
|
||||
lblAstartes=astartes
|
||||
lblAtog=atog
|
||||
lblAura=光环
|
||||
lblAurochs=奥奇斯
|
||||
lblAvatar=头像
|
||||
lblAzra=阿兹拉
|
||||
lblBackground=背景
|
||||
lblBadger=獾
|
||||
lblBarbarian=野蛮人
|
||||
lblBard=诗人
|
||||
lblBasilisk=蛇怪
|
||||
lblBat=蝙蝠
|
||||
lblBear=熊
|
||||
lblBeast=兽
|
||||
lblBeeble=蜜蜂
|
||||
lblBeholder=旁观者
|
||||
lblBerserker=狂战士
|
||||
lblBird=鸟
|
||||
lblBlinkmoth=眨眼
|
||||
lblBlood=血
|
||||
lblBoar=公猪
|
||||
lblBrainiac=脑
|
||||
lblBringer=带来
|
||||
lblBrushwagg=Brushwagg
|
||||
lblC'tan=c'tan
|
||||
lblCamarid=友善
|
||||
lblCamel=骆驼
|
||||
lblCaribou=驯鹿
|
||||
lblCarrier=载体
|
||||
lblCartouche=卡丘
|
||||
lblCat=猫
|
||||
lblCentaur=半人马座
|
||||
lblCephalid=头甲虫
|
||||
lblChimera=嵌合体
|
||||
lblCitizen=公民
|
||||
lblClamfolk=蛤lamfolk
|
||||
lblClass=班级
|
||||
lblCleric=牧师
|
||||
lblClown=小丑
|
||||
lblClue=线索
|
||||
lblCockatrice=怪蛇
|
||||
lblConstruct=构造
|
||||
lblContraption=装置
|
||||
lblCow=奶牛
|
||||
lblCoward=懦夫
|
||||
lblCrab=螃蟹
|
||||
lblCrocodile=鳄鱼
|
||||
lblCurse=诅咒
|
||||
lblCyborg=半机器人
|
||||
lblCyclops=独眼巨人
|
||||
lblDauthi=Dauthi
|
||||
lblDemigod=半神
|
||||
lblDemon=恶魔
|
||||
lblDeserter=逃兵
|
||||
lblDevil=魔鬼
|
||||
lblDinosaur=恐龙
|
||||
lblDjinn=Djinn
|
||||
lblDog=狗
|
||||
lblDragon=龙
|
||||
lblDrake=德雷克
|
||||
lblDreadnought=无畏
|
||||
lblDrone=无人机
|
||||
lblDruid=德鲁伊
|
||||
lblDryad=dryad
|
||||
lblDwarf=矮人
|
||||
lblEfreet=efreet
|
||||
lblEgg=蛋
|
||||
lblElder=长老
|
||||
lblEldrazi=Eldrazi
|
||||
lblElemental=元素
|
||||
lblElephant=大象
|
||||
lblElf=精灵
|
||||
lblElk=麋鹿
|
||||
lblEmployee=员工
|
||||
lblEquipment=设备
|
||||
lblEye=眼睛
|
||||
lblFaerie=仙女
|
||||
lblFerret=雪貂
|
||||
lblFighter=战斗机
|
||||
lblFish=鱼
|
||||
lblFlagbearer=旗手
|
||||
lblFood=食物
|
||||
lblFortification=筑城
|
||||
lblFox=狐狸
|
||||
lblFractal=分形
|
||||
lblFrog=青蛙
|
||||
lblFungus=菌
|
||||
lblGamer=玩家
|
||||
lblGargoyle=石像鬼
|
||||
lblGerm=胚芽
|
||||
lblGiant=巨大的
|
||||
lblGith=吉斯
|
||||
lblGnoll=gnoll
|
||||
lblGnome=侏儒
|
||||
lblGoat=山羊
|
||||
lblGoblin=妖精
|
||||
lblGod=上帝
|
||||
lblGold=金子
|
||||
lblGolem=魔像
|
||||
lblGorgon=戈贡
|
||||
lblGraveborn=坟墓
|
||||
lblGremlin=格林林
|
||||
lblGriffin=格里芬
|
||||
lblGuest=客人
|
||||
lblHag=魔女
|
||||
lblHalfling=半身
|
||||
lblHamster=仓鼠
|
||||
lblHarpy=哈皮
|
||||
lblHellion=坏人
|
||||
lblHippo=河马
|
||||
lblHippogriff=河马
|
||||
lblHomarid=人类
|
||||
lblHomunculus=Homunculus
|
||||
lblHorror=恐怖
|
||||
lblHorse=马
|
||||
lblHuman=人类
|
||||
lblHydra=九头蛇
|
||||
lblHyena=鬣狗
|
||||
lblIllusion=错觉
|
||||
lblImp=小鬼
|
||||
lblIncarnation=化身
|
||||
lblIncubator=孵化器
|
||||
lblInkling=暗示
|
||||
lblInquisitor=审判官
|
||||
lblInsect=昆虫
|
||||
lblJackal=jackal
|
||||
lblJellyfish=海蜇
|
||||
lblJuggernaut=剑圣
|
||||
lblKangaroo=袋鼠
|
||||
lblKavu=kavu
|
||||
lblKey=钥匙
|
||||
lblKillbot=Killbot
|
||||
lblKirin=基林
|
||||
lblKithkin=基思金
|
||||
lblKnight=骑士
|
||||
lblKobold=Kobold
|
||||
lblKor=科
|
||||
lblKraken=克莱肯
|
||||
lblLamia=拉米亚
|
||||
lblLammasu=拉马苏
|
||||
lblLeech=水蛭
|
||||
lblLesson=课
|
||||
lblLeviathan=利维坦
|
||||
lblLhurgoyf=Lhurgoyf
|
||||
lblLicid=许可
|
||||
lblLizard=蜥蜴
|
||||
lblLobster=龙虾
|
||||
lblMammoth=长毛象
|
||||
lblManticore=Manticore
|
||||
lblMasticore=Mastorore
|
||||
lblMercenary=雇佣兵
|
||||
lblMerfolk=Merfolk
|
||||
lblMetathran=Metathran
|
||||
lblMinion=奴才
|
||||
lblMinotaur=牛头怪
|
||||
lblMite=螨虫
|
||||
lblMole=痣
|
||||
lblMonger=贩子
|
||||
lblMongoose=猫鼬
|
||||
lblMonk=僧
|
||||
lblMonkey=猴
|
||||
lblMoonfolk=月亮
|
||||
lblMouse=老鼠
|
||||
lblMutant=突变体
|
||||
lblMyr=没什么
|
||||
lblMystic=神秘
|
||||
lblNaga=纳迦
|
||||
lblNautilus=Nautilus
|
||||
lblNecron=necron
|
||||
lblNephilim=Nephilim
|
||||
lblNightmare=恶梦
|
||||
lblNightstalker=夜行者
|
||||
lblNinja=忍者
|
||||
lblNoble=高贵
|
||||
lblNoggle=noggle
|
||||
lblNomad=游牧民族
|
||||
lblNymph=若虫
|
||||
lblOctopus=章鱼
|
||||
lblOgre=OGRE
|
||||
lblOoze=渗出
|
||||
lblOrb=球
|
||||
lblOrc=兽人
|
||||
lblOrgg=orgg
|
||||
lblOtter=獭
|
||||
lblOuphe=ouphe
|
||||
lblOx=牛
|
||||
lblOyster=牡蛎
|
||||
lblPangolin=穿山甲
|
||||
lblPeasant=农民
|
||||
lblPegasus=飞马
|
||||
lblPentavite=五角星
|
||||
lblPest=害虫
|
||||
lblPhelddagrif=Phelddagrif
|
||||
lblPhoenix=凤凰
|
||||
lblPhyrexian=植物学
|
||||
lblPilot=飞行员
|
||||
lblPincher=Pincher
|
||||
lblPirate=海盗
|
||||
lblPlant=植物
|
||||
lblPowerstone=Powerstone
|
||||
lblPraetor=Praetor
|
||||
lblPrimarch=Primarch
|
||||
lblPrism=棱镜
|
||||
lblProcessor=处理器
|
||||
lblRabbit=兔子
|
||||
lblRanger=游侠
|
||||
lblRat=鼠
|
||||
lblRebel=反叛
|
||||
lblReflection=反射
|
||||
lblRhino=犀牛
|
||||
lblRigger=索具
|
||||
lblRobot=机器人
|
||||
lblRogue=流氓
|
||||
lblRune=符文
|
||||
lblSable=黑貂
|
||||
lblSaga=传奇
|
||||
lblSalamander=蝾
|
||||
lblSamurai=武士
|
||||
lblSand=沙
|
||||
lblSaproling=腐烂
|
||||
lblSatyr=色狼
|
||||
lblScarecrow=稻草人
|
||||
lblScientist=科学家
|
||||
lblScion=scion
|
||||
lblScorpion=蝎
|
||||
lblScout=侦察
|
||||
lblSculpture=雕塑
|
||||
lblSerf=农奴
|
||||
lblSerpent=蛇
|
||||
lblServo=伺服
|
||||
lblShade=阴影
|
||||
lblShaman=萨满
|
||||
lblShapeshifter=变形者
|
||||
lblShard=碎片
|
||||
lblShark=鲨鱼
|
||||
lblSheep=羊
|
||||
lblShrine=神社
|
||||
lblSiren=警笛
|
||||
lblSkeleton=骨骼
|
||||
lblSlith=Slith
|
||||
lblSliver=滑片
|
||||
lblSlug=sl
|
||||
lblSnake=蛇
|
||||
lblSoldier=士兵
|
||||
lblSoltari=Soltari
|
||||
lblSpawn=产卵
|
||||
lblSpecter=幽灵
|
||||
lblSpellshaper=法术鞋
|
||||
lblSphinx=狮身人面像
|
||||
lblSpider=蜘蛛
|
||||
lblSpike=长钉
|
||||
lblSpirit=精神
|
||||
lblSplinter=碎片
|
||||
lblSponge=海绵
|
||||
lblSpy=间谍
|
||||
lblSquid=乌贼
|
||||
lblSquirrel=松鼠
|
||||
lblStarfish=海星
|
||||
lblSurrakar=Surrakar
|
||||
lblSurvivor=幸存者
|
||||
lblTentacle=触手
|
||||
lblTetravite=四维属
|
||||
lblThalakos=塔拉科斯
|
||||
lblThopter=thopter
|
||||
lblThrull=Thrull
|
||||
lblTiefling=举动
|
||||
lblTrap=陷阱
|
||||
lblTreasure=宝藏
|
||||
lblTreefolk=树干
|
||||
lblTrilobite=三叶虫
|
||||
lblTriskelavite=triskelavite
|
||||
lblTroll=巨魔
|
||||
lblTurtle=龟
|
||||
lblTyranid=霸王
|
||||
lblUnicorn=独角兽
|
||||
lblVampire=吸血鬼
|
||||
lblVedalken=Vedalken
|
||||
lblVehicle=车辆
|
||||
lblViashino=Viashino
|
||||
lblVolver=Volver
|
||||
lblWall=墙
|
||||
lblWarlock=术士
|
||||
lblWarrior=战士
|
||||
lblWeird=诡异的
|
||||
lblWerewolf=狼人
|
||||
lblWhale=鲸
|
||||
lblWizard=向导
|
||||
lblWolf=狼
|
||||
lblWolverine=金刚狼
|
||||
lblWombat=袋熊
|
||||
lblWorm=虫
|
||||
lblWraith=幽灵
|
||||
lblWurm=Wurm
|
||||
lblYeti=雪人
|
||||
lblZombie=僵尸
|
||||
lblZubera=Zubera
|
||||
|
||||
@@ -421,7 +421,7 @@ Arcavios
|
||||
Arkhos
|
||||
Azgol
|
||||
Belenon
|
||||
Bolas's Meditation Realm
|
||||
Bolas's Meditation Realm
|
||||
Capenna
|
||||
Cridhe
|
||||
Dominaria
|
||||
|
||||
Reference in New Issue
Block a user