diff options
author | Leonard Kugis <leonard@kug.is> | 2022-04-25 18:40:22 +0200 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2022-04-25 18:40:22 +0200 |
commit | 9420b8c5ef71dee01d7e19160992c34d5feef154 (patch) | |
tree | 5c31e9c3ff1e0bebeff4b164d739c46abbee7c7b /target | |
parent | eaed2149f9f018a4486828fea612c7322af32171 (diff) |
Diffstat (limited to 'target')
16 files changed, 118 insertions, 0 deletions
diff --git a/target/classes/config.json b/target/classes/config.json new file mode 100644 index 0000000..da68812 --- /dev/null +++ b/target/classes/config.json @@ -0,0 +1,22 @@ +{
+ "locale": "en-GB",
+ "world": "instance",
+ "loadingDepth": 2,
+ "resetDungeons": [
+ {
+ "interval": 2592000,
+ "alias": "monthly",
+ "length": 10
+ },
+ {
+ "interval": 86400,
+ "alias": "daily",
+ "length": 10
+ },
+ {
+ "interval": 3600,
+ "alias": "hourly",
+ "length": 10
+ }
+ ]
+}
\ No newline at end of file diff --git a/target/classes/descriptor.json b/target/classes/descriptor.json new file mode 100644 index 0000000..16d8891 --- /dev/null +++ b/target/classes/descriptor.json @@ -0,0 +1,72 @@ +{
+ "schematics": [
+ {
+ "file": "startSide.schematic",
+ "modifier": 1,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 1, 0 ]
+ ],
+ "mobs": [ ]
+ },
+ {
+ "file": "startBottom.schematic",
+ "modifier": 1,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 0, 4 ]
+ ],
+ "mobs": [ ]
+ },
+ {
+ "file": "startTop.schematic",
+ "modifier": 1,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 9, 4 ]
+ ],
+ "mobs": []
+ },
+ {
+ "file": "endSide.schematic",
+ "modifier": 2,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 1, 0 ]
+ ],
+ "mobs": []
+ },
+ {
+ "file": "endBottom.schematic",
+ "modifier": 2,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 0, 4 ]
+ ],
+ "mobs": []
+ },
+ {
+ "file": "endTop.schematic",
+ "modifier": 2,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 4, 9, 4 ]
+ ],
+ "mobs": [ ]
+ },
+ {
+ "file": "test.schematic",
+ "modifier": 0,
+ "size": [ 10, 10, 10 ],
+ "exits": [
+ [ 0, 1, 5 ],
+ [ 4, 1, 0 ],
+ [ 9, 1, 4 ],
+ [ 5, 1, 9 ],
+ [ 2, 0, 7 ],
+ [ 5, 9, 5 ]
+ ],
+ "mobs": []
+ }
+ ]
+}
\ No newline at end of file diff --git a/target/classes/lang/de-DE.properties b/target/classes/lang/de-DE.properties new file mode 100644 index 0000000..fe1b047 --- /dev/null +++ b/target/classes/lang/de-DE.properties @@ -0,0 +1 @@ +no_player=no_player
\ No newline at end of file diff --git a/target/classes/lang/en-GB.properties b/target/classes/lang/en-GB.properties new file mode 100644 index 0000000..fe1b047 --- /dev/null +++ b/target/classes/lang/en-GB.properties @@ -0,0 +1 @@ +no_player=no_player
\ No newline at end of file diff --git a/target/classes/plugin.yml b/target/classes/plugin.yml new file mode 100644 index 0000000..18510eb --- /dev/null +++ b/target/classes/plugin.yml @@ -0,0 +1,9 @@ +main: com.encrox.instanceddungeons.InstancedDungeons
+name: InstancedDungeons
+version: 1.0
+depend: [InstancedRegions]
+
+commands:
+ dungeon:
+ description: Generic dungeon command.
+ usage: /dungeon help
\ No newline at end of file diff --git a/target/classes/schematics/endBottom.schematic b/target/classes/schematics/endBottom.schematic Binary files differnew file mode 100644 index 0000000..9db40b2 --- /dev/null +++ b/target/classes/schematics/endBottom.schematic diff --git a/target/classes/schematics/endSide.schematic b/target/classes/schematics/endSide.schematic Binary files differnew file mode 100644 index 0000000..37b5b2a --- /dev/null +++ b/target/classes/schematics/endSide.schematic diff --git a/target/classes/schematics/endTop.schematic b/target/classes/schematics/endTop.schematic Binary files differnew file mode 100644 index 0000000..a13a690 --- /dev/null +++ b/target/classes/schematics/endTop.schematic diff --git a/target/classes/schematics/startBottom.schematic b/target/classes/schematics/startBottom.schematic Binary files differnew file mode 100644 index 0000000..c03c38d --- /dev/null +++ b/target/classes/schematics/startBottom.schematic diff --git a/target/classes/schematics/startSide.schematic b/target/classes/schematics/startSide.schematic Binary files differnew file mode 100644 index 0000000..09c6c66 --- /dev/null +++ b/target/classes/schematics/startSide.schematic diff --git a/target/classes/schematics/startTop.schematic b/target/classes/schematics/startTop.schematic Binary files differnew file mode 100644 index 0000000..f905219 --- /dev/null +++ b/target/classes/schematics/startTop.schematic diff --git a/target/classes/schematics/test.schematic b/target/classes/schematics/test.schematic Binary files differnew file mode 100644 index 0000000..624505f --- /dev/null +++ b/target/classes/schematics/test.schematic diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..8f2b565 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven
+#Fri Dec 23 23:15:34 CET 2016
+version=0.0.1-SNAPSHOT
+groupId=com.encrox
+artifactId=instanceddungeons
diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..159d9f8 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,8 @@ +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Commander.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Exit.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Schematic.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Dungeon.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Direction.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\DungeonWorld.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\Section.java +C:\Users\Superleo1810\workspace\instanceddungeons\src\main\java\com\encrox\instanceddungeons\InstancedDungeons.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst |