From eaed2149f9f018a4486828fea612c7322af32171 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Mon, 25 Apr 2022 18:39:58 +0200 Subject: Added .gitignore --- src/main/resources/config.json | 22 ------- src/main/resources/descriptor.json | 72 --------------------- src/main/resources/lang/de-DE.properties | 1 - src/main/resources/lang/en-GB.properties | 1 - src/main/resources/plugin.yml | 9 --- src/main/resources/schematics/endBottom.schematic | Bin 270 -> 0 bytes src/main/resources/schematics/endSide.schematic | Bin 317 -> 0 bytes src/main/resources/schematics/endTop.schematic | Bin 358 -> 0 bytes .../resources/schematics/startBottom.schematic | Bin 423 -> 0 bytes src/main/resources/schematics/startSide.schematic | Bin 252 -> 0 bytes src/main/resources/schematics/startTop.schematic | Bin 278 -> 0 bytes src/main/resources/schematics/test.schematic | Bin 345 -> 0 bytes 12 files changed, 105 deletions(-) delete mode 100644 src/main/resources/config.json delete mode 100644 src/main/resources/descriptor.json delete mode 100644 src/main/resources/lang/de-DE.properties delete mode 100644 src/main/resources/lang/en-GB.properties delete mode 100644 src/main/resources/plugin.yml delete mode 100644 src/main/resources/schematics/endBottom.schematic delete mode 100644 src/main/resources/schematics/endSide.schematic delete mode 100644 src/main/resources/schematics/endTop.schematic delete mode 100644 src/main/resources/schematics/startBottom.schematic delete mode 100644 src/main/resources/schematics/startSide.schematic delete mode 100644 src/main/resources/schematics/startTop.schematic delete mode 100644 src/main/resources/schematics/test.schematic (limited to 'src/main/resources') diff --git a/src/main/resources/config.json b/src/main/resources/config.json deleted file mode 100644 index d481467..0000000 --- a/src/main/resources/config.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "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/src/main/resources/descriptor.json b/src/main/resources/descriptor.json deleted file mode 100644 index 81f3e6e..0000000 --- a/src/main/resources/descriptor.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "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 ], - [ 4, 1, 9 ], - [ 2, 0, 7 ], - [ 5, 9, 5 ] - ], - "mobs": [] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/lang/de-DE.properties b/src/main/resources/lang/de-DE.properties deleted file mode 100644 index fe1b047..0000000 --- a/src/main/resources/lang/de-DE.properties +++ /dev/null @@ -1 +0,0 @@ -no_player=no_player \ No newline at end of file diff --git a/src/main/resources/lang/en-GB.properties b/src/main/resources/lang/en-GB.properties deleted file mode 100644 index fe1b047..0000000 --- a/src/main/resources/lang/en-GB.properties +++ /dev/null @@ -1 +0,0 @@ -no_player=no_player \ No newline at end of file diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml deleted file mode 100644 index 4922b8b..0000000 --- a/src/main/resources/plugin.yml +++ /dev/null @@ -1,9 +0,0 @@ -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/src/main/resources/schematics/endBottom.schematic b/src/main/resources/schematics/endBottom.schematic deleted file mode 100644 index 9db40b2..0000000 Binary files a/src/main/resources/schematics/endBottom.schematic and /dev/null differ diff --git a/src/main/resources/schematics/endSide.schematic b/src/main/resources/schematics/endSide.schematic deleted file mode 100644 index 37b5b2a..0000000 Binary files a/src/main/resources/schematics/endSide.schematic and /dev/null differ diff --git a/src/main/resources/schematics/endTop.schematic b/src/main/resources/schematics/endTop.schematic deleted file mode 100644 index a13a690..0000000 Binary files a/src/main/resources/schematics/endTop.schematic and /dev/null differ diff --git a/src/main/resources/schematics/startBottom.schematic b/src/main/resources/schematics/startBottom.schematic deleted file mode 100644 index c03c38d..0000000 Binary files a/src/main/resources/schematics/startBottom.schematic and /dev/null differ diff --git a/src/main/resources/schematics/startSide.schematic b/src/main/resources/schematics/startSide.schematic deleted file mode 100644 index 09c6c66..0000000 Binary files a/src/main/resources/schematics/startSide.schematic and /dev/null differ diff --git a/src/main/resources/schematics/startTop.schematic b/src/main/resources/schematics/startTop.schematic deleted file mode 100644 index f905219..0000000 Binary files a/src/main/resources/schematics/startTop.schematic and /dev/null differ diff --git a/src/main/resources/schematics/test.schematic b/src/main/resources/schematics/test.schematic deleted file mode 100644 index 624505f..0000000 Binary files a/src/main/resources/schematics/test.schematic and /dev/null differ -- cgit v1.2.1