diff --git a/src/model/Big_Deals.java b/src/model/Big_Deals.java index 3a58297..928bfd5 100644 --- a/src/model/Big_Deals.java +++ b/src/model/Big_Deals.java @@ -1,3 +1,4 @@ +package model; public class Big_Deals extends Card { diff --git a/src/model/Card.java b/src/model/Card.java index d980ff6..5c8aee2 100644 --- a/src/model/Card.java +++ b/src/model/Card.java @@ -1,3 +1,4 @@ +package model; /* * this is a very broad object class @@ -37,11 +38,11 @@ public Card (String title, String type, Boolean effect, int value, int value2, _value = value; - _value1 = value2; + _value2 = value2; - _value2 = value3; + _value3 = value3; - _value3 = value4; + _value4 = value4; } public String getTitle() diff --git a/src/model/Market_Cards.java b/src/model/Market_Cards.java index 1468eca..f79d3db 100644 --- a/src/model/Market_Cards.java +++ b/src/model/Market_Cards.java @@ -5,6 +5,11 @@ */ public class Market_Cards extends Card { + public Market_Cards(String title, String type, Boolean effect, int value, int value2, int value3, int value4) { + super(title, type, effect, value, value2, value3, value4); + // TODO Auto-generated constructor stub + } + //profit card - value is how much $ is added //Not sure how we're working in the descriptions as it's a more graphical concept but for now I'm going to type them out Card Profit1 = new Card("Small Business Boom!", "profit", true, 250,0,0,0);