mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Merge branch 'typo' into 'master'
Some typos Closes #1584 See merge request core-developers/forge!3168
This commit is contained in:
@@ -3,7 +3,7 @@ ManaCost:3 B B
|
||||
Types:Creature Vampire Noble
|
||||
PT:3/4
|
||||
K:Flying
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigBite | TriggerDescription$ When CARDNAME enters the battlefield target opponent loses 3 life and you gain 3 life.
|
||||
SVar:TrigBite:DB$LoseLife | ValidTgts$ Opponent | TgtPrompt$ Select an opponent | LifeAmount$ 3 | SubAbility$ DBGainLife | SpellDescription$ Target opponent loses 3 life and you gain 3 life.
|
||||
SVar:DBGainLife:DB$GainLife | LifeAmount$ 3
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigBite | TriggerDescription$ When CARDNAME enters the battlefield, target opponent loses 3 life and you gain 3 life.
|
||||
SVar:TrigBite:DB$ LoseLife | ValidTgts$ Opponent | TgtPrompt$ Select an opponent | LifeAmount$ 3 | SubAbility$ DBGainLife | SpellDescription$ Target opponent loses 3 life and you gain 3 life.
|
||||
SVar:DBGainLife:DB$ GainLife | LifeAmount$ 3
|
||||
Oracle:Flying\nWhen Vampire Sovereign enters the battlefield, target opponent loses 3 life and you gain 3 life.
|
||||
|
||||
@@ -54,7 +54,7 @@ FoilChanceInBooster=100
|
||||
43 U Blue Elemental Blast
|
||||
44 R Blue Sun's Zenith
|
||||
45 C Borrowing 100,000 Arrows
|
||||
46 U Brainstorm
|
||||
46 C Brainstorm
|
||||
47 U Brine Elemental
|
||||
48 C Choking Tethers
|
||||
49 C Coralhelm Guide
|
||||
|
||||
@@ -1142,7 +1142,7 @@ lblStormCount=Storm Count
|
||||
#InputAttack.java
|
||||
lblCallBack=Call Back
|
||||
lblDisabled=Disabled
|
||||
lblSelectAttackCreatures=Select creatures to attack
|
||||
lblSelectAttackCreatures=Select creatures to attack
|
||||
lblSelectAttackTarget= or select player/planeswalker you wish to attack.
|
||||
lblSelectBandingTarget= To attack as a band, select an attacking creature to activate its ''band'' then select another to join it.
|
||||
#InputBlock.java
|
||||
|
||||
@@ -328,7 +328,7 @@ public class InputAttack extends InputSyncronizedBase {
|
||||
|
||||
private void updateMessage() {
|
||||
Localizer localizer = Localizer.getInstance();
|
||||
String message = localizer.getMessage("lblSelectAttackCreatures") + currentDefender + localizer.getMessage("lblSelectAttackTarget");
|
||||
String message = localizer.getMessage("lblSelectAttackCreatures") + " " + currentDefender + " " + localizer.getMessage("lblSelectAttackTarget");
|
||||
if (potentialBanding) {
|
||||
message += localizer.getMessage("lblSelectBandingTarget");
|
||||
}
|
||||
|
||||
@@ -86,7 +86,7 @@ public class InputBlock extends InputSyncronizedBase {
|
||||
}
|
||||
else {
|
||||
String attackerName = currentAttacker.isFaceDown() ? localizer.getMessage("lblMorph") : currentAttacker.getName() + " (" + currentAttacker.getId() + ")";
|
||||
String message = localizer.getMessage("lblSelectBlocker") + attackerName + localizer.getMessage("lblOrSelectBlockTarget");
|
||||
String message = localizer.getMessage("lblSelectBlocker") + attackerName + " " + localizer.getMessage("lblOrSelectBlockTarget");
|
||||
showMessage(message);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user