APCS1 Final Project
LosPepinos
- Kerwin Chen
- Raymond Wu
- Jerry Ye
Superclass for all the species of cucumbers. Sets up attributes name, nutrition, ripe duration, and value. Dictates how cucumbers grow and how each cucumber will be represented in the farm array.
-
English
- name = "En"
- nutrition = 5
- ripeDuration = 2
-
Kirby
- name = "Kr"
- nutrition = 10
- ripeDuration = 3
-
Persian
- name = "Pr"
- nutrition = 15
- ripeDuration = 4
-
Armenian
- name = "Ar"
- nutrition = 20
- ripeDuration = 5
-
Japanese
- name = "Jp"
- nutrition = 25
- ripeDuration = 6
Driver file for our game. To run our game:
- Clone the repo
$ git clone https://github.com/raywu6/LosPepinos.git
- Compile Woo.java
$ javac Woo.java
- Run Woo
$ java Woo
- Follow the in-terminal user prompts given to you.
Class that holds attribute money for the player.
Extends matrix, contains the methods that deal with farm interaction