-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add circle and donut shaped arena, make blocks used in the arena conf…
…igurable
- Loading branch information
1 parent
2b7d8f6
commit 5851390
Showing
9 changed files
with
194 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/resources/data/plasmid/games/deacoudre/circle_deacoudre.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"type": "deacoudre:deacoudre", | ||
"map": { | ||
"radius": 10, | ||
"height": 100, | ||
"shape": "circle", | ||
"spawn_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
}, | ||
"pool_outline_block": { | ||
"Name": "minecraft:spruce_wood", | ||
"Properties": { | ||
"axis": "y" | ||
} | ||
}, | ||
"jump_platform_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
} | ||
}, | ||
"players": { | ||
"min": 1, | ||
"max": 100 | ||
}, | ||
"life": 3 | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/resources/data/plasmid/games/deacoudre/donut_deacoudre.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"type": "deacoudre:deacoudre", | ||
"map": { | ||
"radius": 10, | ||
"height": 100, | ||
"shape": "donut", | ||
"in_circle_radius": 3, | ||
"spawn_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
}, | ||
"pool_outline_block": { | ||
"Name": "minecraft:spruce_wood", | ||
"Properties": { | ||
"axis": "y" | ||
} | ||
}, | ||
"jump_platform_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
} | ||
}, | ||
"players": { | ||
"min": 1, | ||
"max": 100 | ||
}, | ||
"life": 3 | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/resources/data/plasmid/games/deacoudre/square_deacoudre.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"type": "deacoudre:deacoudre", | ||
"map": { | ||
"radius": 7, | ||
"height": 50, | ||
"shape": "square", | ||
"spawn_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
}, | ||
"pool_outline_block": { | ||
"Name": "minecraft:spruce_wood", | ||
"Properties": { | ||
"axis": "y" | ||
} | ||
}, | ||
"jump_platform_block": { | ||
"Name": "minecraft:spruce_planks", | ||
"Properties": {} | ||
} | ||
}, | ||
"players": { | ||
"min": 1, | ||
"max": 100 | ||
}, | ||
"life": 3 | ||
} |
12 changes: 0 additions & 12 deletions
12
src/main/resources/data/plasmid/games/deacoudre/standard_deacoudre.json
This file was deleted.
Oops, something went wrong.