Skip to content

Commit

Permalink
heyo
Browse files Browse the repository at this point in the history
  • Loading branch information
jackie committed Mar 20, 2017
1 parent e2e0b10 commit bc8dc6a
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 54 deletions.
7 changes: 6 additions & 1 deletion src/model/MarketCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ public class MarketCard extends Card
private boolean _affectAll;
private int _value;

public MarketCard(String title, String description, String type, boolean affectAll, int value)
public MarketCard(String title, String description, String type, boolean affectAll, int value, String addit)
{
super(title);
_description = description;
_type = type;
_affectAll = affectAll;
_value = value;
_addit = addit; //additional info
}

public String getDescription()
Expand All @@ -35,6 +36,10 @@ public int getValue()
{
return _value;
}
public String getAddit()
{
return _addit;
}


}
Loading

0 comments on commit bc8dc6a

Please sign in to comment.