summaryrefslogtreecommitdiff
path: root/target/classes
diff options
context:
space:
mode:
Diffstat (limited to 'target/classes')
-rw-r--r--target/classes/config.json22
-rw-r--r--target/classes/descriptor.json72
-rw-r--r--target/classes/lang/de-DE.properties1
-rw-r--r--target/classes/lang/en-GB.properties1
-rw-r--r--target/classes/plugin.yml9
-rw-r--r--target/classes/schematics/endBottom.schematicbin0 -> 270 bytes
-rw-r--r--target/classes/schematics/endSide.schematicbin0 -> 317 bytes
-rw-r--r--target/classes/schematics/endTop.schematicbin0 -> 358 bytes
-rw-r--r--target/classes/schematics/startBottom.schematicbin0 -> 423 bytes
-rw-r--r--target/classes/schematics/startSide.schematicbin0 -> 252 bytes
-rw-r--r--target/classes/schematics/startTop.schematicbin0 -> 278 bytes
-rw-r--r--target/classes/schematics/test.schematicbin0 -> 345 bytes
12 files changed, 105 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
new file mode 100644
index 0000000..9db40b2
--- /dev/null
+++ b/target/classes/schematics/endBottom.schematic
Binary files differ
diff --git a/target/classes/schematics/endSide.schematic b/target/classes/schematics/endSide.schematic
new file mode 100644
index 0000000..37b5b2a
--- /dev/null
+++ b/target/classes/schematics/endSide.schematic
Binary files differ
diff --git a/target/classes/schematics/endTop.schematic b/target/classes/schematics/endTop.schematic
new file mode 100644
index 0000000..a13a690
--- /dev/null
+++ b/target/classes/schematics/endTop.schematic
Binary files differ
diff --git a/target/classes/schematics/startBottom.schematic b/target/classes/schematics/startBottom.schematic
new file mode 100644
index 0000000..c03c38d
--- /dev/null
+++ b/target/classes/schematics/startBottom.schematic
Binary files differ
diff --git a/target/classes/schematics/startSide.schematic b/target/classes/schematics/startSide.schematic
new file mode 100644
index 0000000..09c6c66
--- /dev/null
+++ b/target/classes/schematics/startSide.schematic
Binary files differ
diff --git a/target/classes/schematics/startTop.schematic b/target/classes/schematics/startTop.schematic
new file mode 100644
index 0000000..f905219
--- /dev/null
+++ b/target/classes/schematics/startTop.schematic
Binary files differ
diff --git a/target/classes/schematics/test.schematic b/target/classes/schematics/test.schematic
new file mode 100644
index 0000000..624505f
--- /dev/null
+++ b/target/classes/schematics/test.schematic
Binary files differ