diff --git a/src/main/java/net/jeqo/bloons/balloon/BalloonCore.java b/src/main/java/net/jeqo/bloons/balloon/BalloonCore.java index 48f5c8d..b05389b 100644 --- a/src/main/java/net/jeqo/bloons/balloon/BalloonCore.java +++ b/src/main/java/net/jeqo/bloons/balloon/BalloonCore.java @@ -34,6 +34,7 @@ public class BalloonCore { private final String[] exampleBalloons = new String[] { "color_pack_example.yml", "dyeable_example.yml", + "meg_example.yml", "multipart_example.yml" }; diff --git a/src/main/resources/balloons/color_pack_example.yml b/src/main/resources/balloons/color_pack_example.yml index faab8f5..8b4e968 100644 --- a/src/main/resources/balloons/color_pack_example.yml +++ b/src/main/resources/balloons/color_pack_example.yml @@ -2,7 +2,7 @@ # It can contain all the way from one balloon to technically an infinite # amount of balloons, as long as the server can handle it. blue: - type: single # The type of balloon, this must be single for single balloons + type: single id: blue permission: balloon.blue material: FLINT diff --git a/src/main/resources/balloons/dyeable_example.yml b/src/main/resources/balloons/dyeable_example.yml index 85be6db..76c2775 100644 --- a/src/main/resources/balloons/dyeable_example.yml +++ b/src/main/resources/balloons/dyeable_example.yml @@ -5,8 +5,8 @@ dyeable_example: type: single id: dyeable_example permission: balloon.dyeable - leash-height: 1.2 # The height of the balloon leash from about the players head - balloon-height: 2.0 # The height of the balloon from about the players head + leash-height: 1.2 + balloon-height: 2.0 material: LEATHER_HORSE_ARMOR color: '#ffffff' custom-model-data: 1 @@ -15,15 +15,3 @@ dyeable_example: - '&8Bloons Example Balloon' - '' - '&eᴄʟɪᴄᴋ ᴛᴏ ᴇǫᴜɪᴘ' -single_meg_example: - id: single_meg_example - permission: balloon.single_meg_example - meg-model-id: single_meg_example - icon: - material: FLINT - custom-model-data: 7 - name: 'Single MEG Balloon' - lore: - - '&8Bloons Default Balloon' - - '' - - '&eᴄʟɪᴄᴋ ᴛᴏ ᴇǫᴜɪᴘ' diff --git a/src/main/resources/balloons/meg_example.yml b/src/main/resources/balloons/meg_example.yml new file mode 100644 index 0000000..e9ccc30 --- /dev/null +++ b/src/main/resources/balloons/meg_example.yml @@ -0,0 +1,13 @@ +# An example of a MEG balloon which utilizes custom models from ModelEngine +meg_example: + id: meg_example + permission: balloon.meg_example + meg-model-id: meg_example + icon: + material: FLINT + custom-model-data: 7 + name: 'MEG Balloon' + lore: + - '&8Bloons Default Balloon' + - '' + - '&eᴄʟɪᴄᴋ ᴛᴏ ᴇǫᴜɪᴘ' \ No newline at end of file