Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
New stuff
  • Loading branch information
Joe authored and Joe committed Mar 3, 2017
1 parent 9b0e473 commit 7337e6f
Show file tree
Hide file tree
Showing 2 changed files with 142 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/MarketStack.java
Expand Up @@ -152,7 +152,7 @@ public class MarketStack extends CardStack
REFixed1, REFixed2, REFixed3, REFixed4, REFixed5, REFixed6, REFixed7, REFixed8, REFixed9, REFixed10, REFixed11,
REHOffer1, REHOffer2,
REAOffer1, REAOffer2, REAOffer3, REAOffer4};
super.randomizeCards(marketCardArray);
randomizeCards(marketCardArray);
}

//profit MarketCard - value is how much $ is added
Expand Down
141 changes: 141 additions & 0 deletions src/model/SmallDealStack.java
@@ -0,0 +1,141 @@
package model;

public class SmallDealStack extends CardStack
{
private static DealCard SD01 = new DealCard("",
"",
, , , );
private static DealCard SD02 = new DealCard("",
"",
, , , );
private static DealCard SD03 = new DealCard("",
"",
, , , );
private static DealCard SD04 = new DealCard("",
"",
, , , );
private static DealCard SD05 = new DealCard("",
"",
, , , );
private static DealCard SD06 = new DealCard("",
"",
, , , );
private static DealCard SD07 = new DealCard("",
"",
, , , );
private static DealCard SD08 = new DealCard("",
"",
, , , );
private static DealCard SD09 = new DealCard("",
"",
, , , );
private static DealCard SD10 = new DealCard("",
"",
, , , );
private static DealCard SD11 = new DealCard("",
"",
, , , );
private static DealCard SD12 = new DealCard("",
"",
, , , );
private static DealCard SD13 = new DealCard("",
"",
, , , );
private static DealCard SD14 = new DealCard("",
"",
, , , );
private static DealCard SD15 = new DealCard("",
"",
, , , );
private static DealCard SD16 = new DealCard("",
"",
, , , );
private static DealCard SD17 = new DealCard("",
"",
, , , );
private static DealCard SD18 = new DealCard("",
"",
, , , );
private static DealCard SD19 = new DealCard("",
"",
, , , );
private static DealCard SD20 = new DealCard("",
"",
, , , );
private static DealCard SD21 = new DealCard("",
"",
, , , );
private static DealCard SD22 = new DealCard("",
"",
, , , );
private static DealCard SD23 = new DealCard("",
"",
, , , );
private static DealCard SD24 = new DealCard("",
"",
, , , );
private static DealCard SD25 = new DealCard("",
"",
, , , );
private static DealCard SD26 = new DealCard("",
"",
, , , );
private static DealCard SD27 = new DealCard("",
"",
, , , );
private static DealCard SD28 = new DealCard("",
"",
, , , );
private static DealCard SD29 = new DealCard("",
"",
, , , );
private static DealCard SD30 = new DealCard("",
"",
, , , );
private static DealCard SD31 = new DealCard("",
"",
, , , );
private static DealCard SD32 = new DealCard("",
"",
, , , );
private static DealCard SD33 = new DealCard("",
"",
, , );
private static DealCard SD34 = new DealCard("",
"",
, , , );
private static DealCard SD35 = new DealCard("",
"",
, , , );
private static DealCard SD36 = new DealCard("",
"",
, , , );
private static DealCard SD37 = new DealCard("",
"",
, , , );
private static DealCard SD38 = new DealCard("",
"",
, , , );

public SmallDealStack()
{
DealCard[] sdArray = {SD01, SD02, SD03, SD04, SD05, SD06, SD07, SD08, SD09, SD10,
SD11, SD12, SD13, SD14, SD15, SD16, SD17, SD18, SD19, SD20,
SD21, SD22, SD23, SD24, SD25, SD26, SD27, SD28, SD29, SD30,
SD31, SD32, SD33, SD34, SD35, SD36, SD37, SD38};
super.randomizeCards(sdArray);
}
}

}











0 comments on commit 7337e6f

Please sign in to comment.