diff --git a/.idea/misc.xml b/.idea/misc.xml
index 479cb83..070de0b 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,7 +3,7 @@
-
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 780a431..e53d74b 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -1,10 +1,13 @@
-
+
+
+
-
+
+
@@ -15,32 +18,89 @@
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -56,22 +116,27 @@
-
-
-
-
+
+
+
+
+
+
+
-
+
+
@@ -88,15 +153,15 @@
-
-
+
-
-
+
+
+
@@ -144,7 +209,7 @@
- $USER_HOME$/.subversion
+ C:\Users\Harkamal Randhawa\AppData\Roaming\Subversion
125
@@ -155,16 +220,29 @@
1550454898506
+
+
+
+
+
+ 1550458470138
+
+
+
+ 1550458470138
+
+
-
+
-
+
+
-
+
@@ -182,7 +260,7 @@
-
+
@@ -203,39 +281,81 @@
-
+
+
-
+
-
-
+
+
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/out/production/TaipanClone/ShipWarfare.class b/out/production/TaipanClone/ShipWarfare.class
deleted file mode 100644
index 56d0d61..0000000
Binary files a/out/production/TaipanClone/ShipWarfare.class and /dev/null differ
diff --git a/out/production/TaipanClone/TaipanShop.class b/out/production/TaipanClone/TaipanShop.class
deleted file mode 100644
index 958d424..0000000
Binary files a/out/production/TaipanClone/TaipanShop.class and /dev/null differ
diff --git a/src/Core.java b/src/Core.java
new file mode 100644
index 0000000..402dc31
--- /dev/null
+++ b/src/Core.java
@@ -0,0 +1,84 @@
+public class Core {
+
+ private String name = "Taipan";
+ private int bank = 0;
+ private int money = 1000;
+ private int opiumHeld = 0;
+ private int silkHeld = 0;
+ private int generalHeld = 0;
+ private int armsHeld = 0;
+ private int location = 2;
+ private int guns = 0;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public int getBank() {
+ return bank;
+ }
+
+ public void setBank(int bank) {
+ this.bank = bank;
+ }
+
+ public int getMoney() {
+ return money;
+ }
+
+ public void setMoney(int money) {
+ this.money = money;
+ }
+
+ public int getOpiumHeld() {
+ return opiumHeld;
+ }
+
+ public void setOpiumHeld(int opiumHeld) {
+ this.opiumHeld = opiumHeld;
+ }
+
+ public int getSilkHeld() {
+ return silkHeld;
+ }
+
+ public void setSilkHeld(int silkHeld) {
+ this.silkHeld = silkHeld;
+ }
+
+ public int getGeneralHeld() {
+ return generalHeld;
+ }
+
+ public void setGeneralHeld(int generalHeld) {
+ this.generalHeld = generalHeld;
+ }
+
+ public int getArmsHeld() {
+ return armsHeld;
+ }
+
+ public void setArmsHeld(int armsHeld) {
+ this.armsHeld = armsHeld;
+ }
+
+ public int getLocation() {
+ return location;
+ }
+
+ public void setLocation(int location) {
+ this.location = location;
+ }
+
+ public int getGuns() {
+ return guns;
+ }
+
+ public void setGuns(int guns) {
+ this.guns = guns;
+ }
+}
diff --git a/src/Travel.java b/src/Travel.java
new file mode 100644
index 0000000..60ce9c8
--- /dev/null
+++ b/src/Travel.java
@@ -0,0 +1,2 @@
+public class Travel {
+}