Skip to content
Permalink
47b519bed0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
55 lines (50 sloc) 3.56 KB
public class Doodads extends Card {
Card D01 = new Card("New Tennis Racket", "doodad", true, 200,0,0,0);
Card D02 = new Card("Food Processor", "doodad", true, 200,0,0,0);
Card D03 = new Card("Birthday Party for You Child", "doodad", true, 500,0,0,0); //if you have a child
Card D04 = new Card("Next-Gen Game Console", "doodad", true, 600,0,0,0);
Card D05 = new Card("First Card for Child (Take out a loan if you must)", "doodad", true, 5000,0,0,0); //if you have a child
Card D06 = new Card("Jet Ski (Take out a loan if you must)", "doodad", true, 3000,0,0,0);
Card D07 = new Card("New Tailored Suit", "doodad", true, 1000,0,0,0);
Card D08 = new Card("New Rims for Your Card (Take outa loan if you must)", "doodad", true, 2000,0,0,0);
Card D09 = new Card("New Car Stereo", "doodad", true, 700,0,0,0);
Card D10 = new Card("Go to Casino", "doodad", true, 800,0,0,0);
Card D11 = new Card("New Easy Chair", "doodad", true, 500,0,0,0);
Card D12 = new Card("Cappuccino Machine", "doodad", true, 300,0,0,0);
Card D13 = new Card("Pay for Lunch with Friends", "doodad", true, 200,0,0,0);
Card D14 = new Card("New Computuer (Take out a loan if you must)", "doodad", true, 1800,0,0,0);
Card D15 = new Card("Golf Club Membership (Take out a loan if you must)", "doodad", true, 2000,0,0,0);
Card D16 = new Card("Child Needs Braces (Take out a loan if you must)", "doodad", true, 4000,0,0,0);
//if you have a child
Card D17 = new Card("Concert Tickets", "doodad", true, 200,0,0,0);
Card D18 = new Card("New Watch", "doodad", true, 200,0,0,0);
Card D19 = new Card("New Tires", "doodad", true, 600,0,0,0);
Card D20 = new Card("Replace Car Air Conditioner", "doodad", true, 700,0,0,0);
Card D21 = new Card("Get Newest Phone", "doodad", true, 300,0,0,0);
Card D22 = new Card("New Sunglasses", "doodad", true, 200,0,0,0);
Card D23 = new Card("New Gym Clothes", "doodad", true, 300,0,0,0);
Card D24 = new Card("New Clothes", "doodad", true, 1000,0,0,0);
Card D25 = new Card("Private Tutoring for Your Child", "doodad", true, 500,0,0,0);
//if you have a child
Card D26 = new Card("Big Screen TV (Take out a loan if you must)", "doodad", true, 2500,0,0,0);
Card D27 = new Card("Date Night: Dinner, Concert & Dessert", "doodad", true, 500,0,0,0);
Card D28 = new Card("Take a Trip to Wine Country", "doodad", true, 1000,0,0,0);
Card D29 = new Card("Buy Local Artist's Painting", "doodad", true, 800,0,0,0);
Card D30 = new Card("High School Reunion", "doodad", true, 500,0,0,0);
Card D31 = new Card("Build a Home Gym (Take out a loan if you must)", "doodad", true, 3000,0,0,0);
Card D32 = new Card("New Golf Clubs", "doodad", true, 800,0,0,0);
Card D33 = new Card("Costume Jewlry", "doodad", true, 400,0,0,0);
Card D34 = new Card("Fishing Boat (Take out a loan if you must)", "doodad", true, 5000,0,0,0);
Card D35 = new Card("New Bowling Ball", "doodad", true, 100,0,0,0);
Card D36 = new Card("Repaint Your House", "doodad", true, 600,0,0,0);
Card D37 = new Card("New Sound System", "doodad", true, 1500,0,0,0);
Card D38 = new Card("Visit the Dentist (Maybe get a shiny gold tooth!)", "doodad", true, 700,0,0,0);
Card D39 = new Card("Help Pay for Child's Wedding", "doodad", true, 2000,0,0,0);
Card D40 = new Card("Family Vacation (Take out a loan if you must)", "doodad", true, 2500,0,0,0);
Card D41 = new Card("Remodel Kitchen (Take out a loan if you must)", "doodad", true, 7500,0,0,0);
Card D42 = new Card("Season Tickets", "doodad", true, 1500,0,0,0);
public Doodads(String title, String type, Boolean effect, int value) {
super(title, type, effect, value);
// TODO Auto-generated constructor stub
}
}