diff --git a/config.json b/config.json index dd38cfb..a2c6fdc 100644 --- a/config.json +++ b/config.json @@ -132,6 +132,40 @@ 1 ] }, + { + "buy": 0, + "id": "broccoli", + "index": "Broccoli", + "name": "Broccoli", + "seasons": [ + "fall" + ], + "sell": 70, + "regrow": 4, + "stages": [ + 2, + 2, + 2, + 2 + ], + "harvest": {} + }, + { + "buy": 0, + "id": "carrot", + "index": "Carrot", + "name": "Carrot", + "seasons": [ + "spring" + ], + "sell": 35, + "stages": [ + 1, + 1, + 1 + ], + "harvest": {} + }, { "buy": 80, "harvest": {}, @@ -475,6 +509,24 @@ 1 ] }, + { + "buy": 0, + "id": "powdermelon", + "index": "Powdermelon", + "name": "Powdermelon", + "seasons": [ + "winter" + ], + "sell": 60, + "stages": [ + 1, + 1, + 1, + 2, + 2 + ], + "harvest": {} + }, { "buy": 100, "harvest": {}, @@ -605,6 +657,25 @@ 2 ] }, + { + "buy": 0, + "id": "summer_squash", + "index": "SummerSquash", + "name": "Summer Squash", + "seasons": [ + "summer" + ], + "sell": 45, + "regrow": 3, + "stages": [ + 1, + 1, + 1, + 1, + 2 + ], + "harvest": {} + }, { "buy": 125, "harvest": {}, @@ -772,6 +843,21 @@ "day": 14, "name": "Haley" }, + { + "day": 15, + "name": "Desert Festival", + "festival": true + }, + { + "day": 16, + "name": "Desert Festival", + "festival": true + }, + { + "day": 17, + "name": "Desert Festival", + "festival": true + }, { "day": 18, "name": "Pam" @@ -824,6 +910,16 @@ "day": 19, "name": "Demetrius" }, + { + "day": 20, + "name": "Trout Derby", + "festival": true + }, + { + "day": 21, + "name": "Trout Derby", + "festival": true + }, { "day": 22, "name": "Dwarf" @@ -904,6 +1000,16 @@ "day": 10, "name": "Sebastian" }, + { + "day": 12, + "name": "SquidFest", + "festival": true + }, + { + "day": 13, + "name": "SquidFest", + "festival": true + }, { "day": 14, "name": "Harvey" diff --git a/images/crops/broccoli.png b/images/crops/broccoli.png new file mode 100644 index 0000000..9df8e5a Binary files /dev/null and b/images/crops/broccoli.png differ diff --git a/images/crops/carrot.png b/images/crops/carrot.png new file mode 100644 index 0000000..9205606 Binary files /dev/null and b/images/crops/carrot.png differ diff --git a/images/crops/powdermelon.png b/images/crops/powdermelon.png new file mode 100644 index 0000000..2765a31 Binary files /dev/null and b/images/crops/powdermelon.png differ diff --git a/images/crops/summer_squash.png b/images/crops/summer_squash.png new file mode 100644 index 0000000..1d986cd Binary files /dev/null and b/images/crops/summer_squash.png differ diff --git a/images/seeds/broccoli.png b/images/seeds/broccoli.png new file mode 100644 index 0000000..bda4a34 Binary files /dev/null and b/images/seeds/broccoli.png differ diff --git a/images/seeds/carrot.png b/images/seeds/carrot.png new file mode 100644 index 0000000..b23d910 Binary files /dev/null and b/images/seeds/carrot.png differ diff --git a/images/seeds/powdermelon.png b/images/seeds/powdermelon.png new file mode 100644 index 0000000..4980d65 Binary files /dev/null and b/images/seeds/powdermelon.png differ diff --git a/images/seeds/summer_squash.png b/images/seeds/summer_squash.png new file mode 100644 index 0000000..739ec66 Binary files /dev/null and b/images/seeds/summer_squash.png differ