diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java index 375e733e0..016da3569 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java @@ -19,105 +19,105 @@ public interface LotroCardBlueprint { LEFT, RIGHT } - public Side getSide(); + Side getSide(); - public CardType getCardType(); + CardType getCardType(); - public Culture getCulture(); + Culture getCulture(); - public Race getRace(); + Race getRace(); - public boolean isUnique(); + boolean isUnique(); - public String getTitle(); + String getTitle(); - public String getSubtitle(); + String getSubtitle(); - public Signet getSignet(); + Signet getSignet(); - public boolean hasKeyword(Keyword keyword); + boolean hasKeyword(Keyword keyword); - public int getKeywordCount(Keyword keyword); + int getKeywordCount(Keyword keyword); - public Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self); + Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self); - public Map getTargetCostModifiers(String playerId, LotroGame game, PhysicalCard self); + Map getTargetCostModifiers(String playerId, LotroGame game, PhysicalCard self); - public int getTwilightCost(); + int getTwilightCost(); - public int getTwilightCostModifier(LotroGame game, PhysicalCard self); + int getTwilightCostModifier(LotroGame game, PhysicalCard self); - public int getStrength(); + int getStrength(); - public int getVitality(); + int getVitality(); - public int getResistance(); + int getResistance(); - public int[] getAllyHomeSiteNumbers(); + int[] getAllyHomeSiteNumbers(); - public SitesBlock getAllyHomeSiteBlock(); + SitesBlock getAllyHomeSiteBlock(); PlayEventAction getPlayEventCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier); - public List getInPlayModifiers(LotroGame game, PhysicalCard self); + List getInPlayModifiers(LotroGame game, PhysicalCard self); - public List getStackedOnModifiers(LotroGame game, PhysicalCard self); + List getStackedOnModifiers(LotroGame game, PhysicalCard self); - public List getInDiscardModifiers(LotroGame game, PhysicalCard self); + List getInDiscardModifiers(LotroGame game, PhysicalCard self); - public List getControlledSiteModifiers(LotroGame game, PhysicalCard self); + List getControlledSiteModifiers(LotroGame game, PhysicalCard self); - public boolean checkPlayRequirements(LotroGame game, PhysicalCard self); + boolean checkPlayRequirements(LotroGame game, PhysicalCard self); - public List getPhaseActionsInHand(String playerId, LotroGame game, PhysicalCard self); + List getPhaseActionsInHand(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsFromDiscard(String playerId, LotroGame game, PhysicalCard self); + List getPhaseActionsFromDiscard(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsInPlay(String playerId, LotroGame game, PhysicalCard self); + List getPhaseActionsInPlay(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self); + List getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self); - public List getRequiredBeforeTriggers(LotroGame game, Effect effect, PhysicalCard self); + List getRequiredBeforeTriggers(LotroGame game, Effect effect, PhysicalCard self); - public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self); + List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self); - public List getOptionalBeforeTriggers(String playerId, LotroGame game, Effect effect, PhysicalCard self); + List getOptionalBeforeTriggers(String playerId, LotroGame game, Effect effect, PhysicalCard self); - public List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); + List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); - public List getOptionalInPlayBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self); + List getOptionalInPlayBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self); - public List getOptionalInPlayAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); + List getOptionalInPlayAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); - public List getOptionalInHandAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); + List getOptionalInHandAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); - public List getOptionalInHandBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self); + List getOptionalInHandBeforeActions(String playerId, LotroGame game, Effect effect, PhysicalCard self); - public List getOptionalInHandAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); + List getOptionalInHandAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self); - public RequiredTriggerAction getDiscardedFromPlayRequiredTrigger(LotroGame game, PhysicalCard self); + RequiredTriggerAction getDiscardedFromPlayRequiredTrigger(LotroGame game, PhysicalCard self); - public OptionalTriggerAction getDiscardedFromPlayOptionalTrigger(String playerId, LotroGame game, PhysicalCard self); + OptionalTriggerAction getDiscardedFromPlayOptionalTrigger(String playerId, LotroGame game, PhysicalCard self); - public OptionalTriggerAction getKilledOptionalTrigger(String playerId, LotroGame game, PhysicalCard self); + OptionalTriggerAction getKilledOptionalTrigger(String playerId, LotroGame game, PhysicalCard self); - public SitesBlock getSiteBlock(); + SitesBlock getSiteBlock(); - public int getSiteNumber(); + int getSiteNumber(); - public Set getPossessionClasses(); + Set getPossessionClasses(); boolean isExtraPossessionClass(LotroGame game, PhysicalCard self, PhysicalCard attachedTo); - public Direction getSiteDirection(); + Direction getSiteDirection(); - public String getDisplayableInformation(PhysicalCard self); + String getDisplayableInformation(PhysicalCard self); List getExtraCostToPlayModifiers(LotroGame game, PhysicalCard self);