From 494127c7e17c1b1cb9b5a8989612b4cca020980d Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Wed, 15 Jan 2020 22:27:46 -0600 Subject: [PATCH] Upload code --- .idea/artifacts/TamableFoxes_SNAPSHOT_jar.xml | 8 + .idea/compiler.xml | 16 + .idea/encodings.xml | 8 + ...ven__net_wesjd_anvilgui_1_2_1_SNAPSHOT.xml | 13 + ...g_spigotmc_spigot_1_14_4_R0_1_SNAPSHOT.xml | 13 + .idea/misc.xml | 18 + .idea/modules.xml | 8 + .idea/uiDesigner.xml | 124 ++ .idea/workspace.xml | 262 ++++ README.md | 34 + TamableFoxes.iml | 27 + pom.xml | 85 ++ .../Commands/CommandSpawnTamableFox.java | 70 ++ .../seanomik/tamablefoxes/ConfigManager.java | 54 + .../FoxPathfinderGoalBeg.java | 72 ++ .../FoxPathfinderGoalBreed.java | 132 ++ .../FoxPathfinderGoalFleeSun.java | 52 + .../FoxPathfinderGoalFloat.java | 33 + .../FoxPathfinderGoalFollowOwner.java | 103 ++ .../FoxPathfinderGoalHurtByTarget.java | 120 ++ .../FoxPathfinderGoalLunge.java | 125 ++ .../FoxPathfinderGoalLungeUNKNOWN_USE.java | 80 ++ .../FoxPathfinderGoalMeleeAttack.java | 33 + .../FoxPathfinderGoalOwnerHurtByTarget.java | 45 + .../FoxPathfinderGoalOwnerHurtTarget.java | 44 + .../FoxPathfinderGoalPickBushes.java | 86 ++ .../FoxPathfinderGoalRandomStrollLand.java | 109 ++ ...FoxPathfinderGoalRandomTargetNonTamed.java | 25 + .../FoxPathfinderGoalSit.java | 49 + .../net/seanomik/tamablefoxes/NBTEditor.java | 1111 +++++++++++++++++ .../net/seanomik/tamablefoxes/Reference.java | 9 + .../net/seanomik/tamablefoxes/TamableFox.java | 241 ++++ .../seanomik/tamablefoxes/TamableFoxes.java | 464 +++++++ .../tamablefoxes/Utils/FileManager.java | 112 ++ .../seanomik/tamablefoxes/Utils/Utils.java | 27 + src/main/resources/config.yml | 1 + src/main/resources/foxes.yml | 2 + src/main/resources/plugin.yml | 14 + .../META-INF/TamableFoxes.kotlin_module | Bin 0 -> 16 bytes target/classes/config.yml | 1 + target/classes/foxes.yml | 2 + .../Commands/CommandSpawnTamableFox.class | Bin 0 -> 4088 bytes .../seanomik/tamablefoxes/ConfigManager.class | Bin 0 -> 2725 bytes .../FoxPathfinderGoalBeg.class | Bin 0 -> 3398 bytes .../FoxPathfinderGoalBreed.class | Bin 0 -> 8580 bytes .../FoxPathfinderGoalFleeSun.class | Bin 0 -> 2728 bytes .../FoxPathfinderGoalFloat.class | Bin 0 -> 1708 bytes .../FoxPathfinderGoalFollowOwner.class | Bin 0 -> 6284 bytes .../FoxPathfinderGoalHurtByTarget.class | Bin 0 -> 5188 bytes .../FoxPathfinderGoalLunge.class | Bin 0 -> 6034 bytes .../FoxPathfinderGoalLungeUNKNOWN_USE.class | Bin 0 -> 4447 bytes .../FoxPathfinderGoalMeleeAttack.class | Bin 0 -> 1782 bytes .../FoxPathfinderGoalOwnerHurtByTarget.class | Bin 0 -> 2457 bytes .../FoxPathfinderGoalOwnerHurtTarget.class | Bin 0 -> 2439 bytes .../FoxPathfinderGoalPickBushes.class | Bin 0 -> 5384 bytes .../FoxPathfinderGoalRandomStrollLand.class | Bin 0 -> 2927 bytes ...oxPathfinderGoalRandomTargetNonTamed.class | Bin 0 -> 2216 bytes .../FoxPathfinderGoalSit.class | Bin 0 -> 2043 bytes .../tamablefoxes/NBTEditor$NBTCompound.class | Bin 0 -> 1110 bytes .../net/seanomik/tamablefoxes/NBTEditor.class | Bin 0 -> 23798 bytes .../net/seanomik/tamablefoxes/Reference.class | Bin 0 -> 799 bytes .../TamableFox$UpdateFoxRunnable.class | Bin 0 -> 2823 bytes .../seanomik/tamablefoxes/TamableFox.class | Bin 0 -> 16399 bytes .../seanomik/tamablefoxes/TamableFoxes.class | Bin 0 -> 23732 bytes .../Utils/FileManager$Config.class | Bin 0 -> 3678 bytes .../tamablefoxes/Utils/FileManager.class | Bin 0 -> 1713 bytes .../seanomik/tamablefoxes/Utils/Utils.class | Bin 0 -> 1474 bytes target/classes/plugin.yml | 14 + target/maven-archiver/pom.properties | 5 + .../compile/default-compile/createdFiles.lst | 13 + .../compile/default-compile/inputFiles.lst | 11 + .../default-testCompile/inputFiles.lst | 0 target/original-tamableFoxes-0.8-SNAPSHOT.jar | Bin 0 -> 35832 bytes target/tamableFoxes-0.8-SNAPSHOT-shaded.jar | Bin 0 -> 36290 bytes target/tamableFoxes-0.8-SNAPSHOT.jar | Bin 0 -> 35911 bytes 75 files changed, 3875 insertions(+) create mode 100644 .idea/artifacts/TamableFoxes_SNAPSHOT_jar.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/libraries/Maven__net_wesjd_anvilgui_1_2_1_SNAPSHOT.xml create mode 100644 .idea/libraries/Maven__org_spigotmc_spigot_1_14_4_R0_1_SNAPSHOT.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/workspace.xml create mode 100644 README.md create mode 100644 TamableFoxes.iml create mode 100644 pom.xml create mode 100644 src/main/java/net/seanomik/tamablefoxes/Commands/CommandSpawnTamableFox.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/ConfigManager.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalBeg.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalBreed.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFleeSun.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFloat.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFollowOwner.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalHurtByTarget.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalLunge.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalLungeUNKNOWN_USE.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalMeleeAttack.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalOwnerHurtByTarget.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalOwnerHurtTarget.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalPickBushes.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalRandomStrollLand.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalRandomTargetNonTamed.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalSit.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/NBTEditor.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/Reference.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/TamableFox.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/TamableFoxes.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/Utils/FileManager.java create mode 100644 src/main/java/net/seanomik/tamablefoxes/Utils/Utils.java create mode 100644 src/main/resources/config.yml create mode 100644 src/main/resources/foxes.yml create mode 100644 src/main/resources/plugin.yml create mode 100644 target/classes/META-INF/TamableFoxes.kotlin_module create mode 100644 target/classes/config.yml create mode 100644 target/classes/foxes.yml create mode 100644 target/classes/net/seanomik/tamablefoxes/Commands/CommandSpawnTamableFox.class create mode 100644 target/classes/net/seanomik/tamablefoxes/ConfigManager.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalBeg.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalBreed.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFleeSun.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFloat.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalFollowOwner.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalHurtByTarget.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalLunge.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalLungeUNKNOWN_USE.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalMeleeAttack.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalOwnerHurtByTarget.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalOwnerHurtTarget.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalPickBushes.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalRandomStrollLand.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalRandomTargetNonTamed.class create mode 100644 target/classes/net/seanomik/tamablefoxes/CustomPathfinding/FoxPathfinderGoalSit.class create mode 100644 target/classes/net/seanomik/tamablefoxes/NBTEditor$NBTCompound.class create mode 100644 target/classes/net/seanomik/tamablefoxes/NBTEditor.class create mode 100644 target/classes/net/seanomik/tamablefoxes/Reference.class create mode 100644 target/classes/net/seanomik/tamablefoxes/TamableFox$UpdateFoxRunnable.class create mode 100644 target/classes/net/seanomik/tamablefoxes/TamableFox.class create mode 100644 target/classes/net/seanomik/tamablefoxes/TamableFoxes.class create mode 100644 target/classes/net/seanomik/tamablefoxes/Utils/FileManager$Config.class create mode 100644 target/classes/net/seanomik/tamablefoxes/Utils/FileManager.class create mode 100644 target/classes/net/seanomik/tamablefoxes/Utils/Utils.class create mode 100644 target/classes/plugin.yml create mode 100644 target/maven-archiver/pom.properties create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 target/original-tamableFoxes-0.8-SNAPSHOT.jar create mode 100644 target/tamableFoxes-0.8-SNAPSHOT-shaded.jar create mode 100644 target/tamableFoxes-0.8-SNAPSHOT.jar diff --git a/.idea/artifacts/TamableFoxes_SNAPSHOT_jar.xml b/.idea/artifacts/TamableFoxes_SNAPSHOT_jar.xml new file mode 100644 index 0000000..77d46d5 --- /dev/null +++ b/.idea/artifacts/TamableFoxes_SNAPSHOT_jar.xml @@ -0,0 +1,8 @@ + + + $USER_HOME$/OneDrive/Desktop/minecraftSpigotServer/plugins + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..e106ccb --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..bee17f4 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__net_wesjd_anvilgui_1_2_1_SNAPSHOT.xml b/.idea/libraries/Maven__net_wesjd_anvilgui_1_2_1_SNAPSHOT.xml new file mode 100644 index 0000000..08ed1c0 --- /dev/null +++ b/.idea/libraries/Maven__net_wesjd_anvilgui_1_2_1_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_spigotmc_spigot_1_14_4_R0_1_SNAPSHOT.xml b/.idea/libraries/Maven__org_spigotmc_spigot_1_14_4_R0_1_SNAPSHOT.xml new file mode 100644 index 0000000..ce394c9 --- /dev/null +++ b/.idea/libraries/Maven__org_spigotmc_spigot_1_14_4_R0_1_SNAPSHOT.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..6fb7c97 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..6b3344f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..b93ac08 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..5a0ff9a --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,262 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +