diff --git a/src/main/resources/assets/acesbs/lang/en_us.json b/src/main/resources/assets/acesbs/lang/en_us.json index 7bf1f7e..139a1c3 100644 --- a/src/main/resources/assets/acesbs/lang/en_us.json +++ b/src/main/resources/assets/acesbs/lang/en_us.json @@ -33,12 +33,23 @@ "item.acesbs.prisma_steel_boots": "Prisma Steel Boots", "item.acesbs.prisma_armor_trim_smithing_template": "Prisma Smithing Template", + "item.acesbs.berserkers_pauldron": "Berserker's Pauldron", + "item.acesbs.kaupen_bow": "Kaupen Bow", "item.acesbs.crab_rave_music_disc": "Crab Rave Music Disc", "item.acesbs.crab_rave_music_disc.desc": "Noisestorm - Crab Rave [Monstercat Release]", + "painting.acesbs.herald.title": "Herald's Banner", + "painting.acesbs.herald.author": "AceTheWildfire", + "painting.acesbs.fire.title": "Neon Wildfire", + "painting.acesbs.fire.author": "AceTheWildfire", + "painting.acesbs.stained.title": "Temple of Love", + "painting.acesbs.stained.author": "Sovaeris", + "painting.acesbs.soul_flame.title": "White Soul Flame", + "painting.acesbs.soul_flame.author": "Sovaeris", + "trim_material.acesbs.prisma_steel": "Prisma Steel Material", "trim_pattern.acesbs.prisma": "Prisma Armor Pattern", @@ -69,6 +80,7 @@ "itemgroup.acesbs.tools": "Ace's BS Tools", "tooltip.acesbs.generic.shift_up": "Hold §eShift§r for item description.", + "tooltip.acesbs.generic.shift_more": "Hold §eShift§r for more.", "tooltip.acesbs.entropy_block.tooltip": "Exerts an §o§4uncertain force§r when stepped on.", "tooltip.acesbs.stable_entropy_block.tooltip": "Exerts an §o§2upward force§r of 4.5 blocks when stepped on.", @@ -79,6 +91,10 @@ "tooltip.acesbs.kaupen_bow": "§7§oThanks to §1Modding by Kaupenjoe§r", "tooltip.acesbs.kaupen_bow_2": "§7§oYou made minecraft modding easy.§r", + "tooltip.acesbs.berserkers_pauldron_desc": "§c§oI will not be moved.§r", + "tooltip.acesbs.berserkers_pauldron_thanks": "§7§oProgrammed with <3 for Tennocraft§r", + "tooltip.acesbs.thanks_sov": "§7§oTextures by Sovaeris§r", + "sounds.acesbs.lizard": "Lizard!", "sounds.acesbs.crab_rave": "Jukebox plays Crab Rave" } \ No newline at end of file diff --git a/src/main/resources/assets/acesbs/textures/painting/fire.png b/src/main/resources/assets/acesbs/textures/painting/fire.png new file mode 100644 index 0000000..c8ce8cb Binary files /dev/null and b/src/main/resources/assets/acesbs/textures/painting/fire.png differ diff --git a/src/main/resources/assets/acesbs/textures/painting/herald.png b/src/main/resources/assets/acesbs/textures/painting/herald.png new file mode 100644 index 0000000..059342a Binary files /dev/null and b/src/main/resources/assets/acesbs/textures/painting/herald.png differ diff --git a/src/main/resources/assets/acesbs/textures/painting/soul_flame.png b/src/main/resources/assets/acesbs/textures/painting/soul_flame.png new file mode 100644 index 0000000..04c9203 Binary files /dev/null and b/src/main/resources/assets/acesbs/textures/painting/soul_flame.png differ diff --git a/src/main/resources/assets/acesbs/textures/painting/stained.png b/src/main/resources/assets/acesbs/textures/painting/stained.png new file mode 100644 index 0000000..f2f0ede Binary files /dev/null and b/src/main/resources/assets/acesbs/textures/painting/stained.png differ diff --git a/src/main/resources/data/acesbs/painting_variant/fire.json b/src/main/resources/data/acesbs/painting_variant/fire.json new file mode 100644 index 0000000..bc54fb2 --- /dev/null +++ b/src/main/resources/data/acesbs/painting_variant/fire.json @@ -0,0 +1,5 @@ +{ + "asset_id": "acesbs:fire", + "height": 2, + "width": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/acesbs/painting_variant/herald.json b/src/main/resources/data/acesbs/painting_variant/herald.json new file mode 100644 index 0000000..deab9a0 --- /dev/null +++ b/src/main/resources/data/acesbs/painting_variant/herald.json @@ -0,0 +1,5 @@ +{ + "asset_id": "acesbs:herald", + "height": 2, + "width": 4 +} \ No newline at end of file diff --git a/src/main/resources/data/acesbs/painting_variant/soul_flame.json b/src/main/resources/data/acesbs/painting_variant/soul_flame.json new file mode 100644 index 0000000..990ed47 --- /dev/null +++ b/src/main/resources/data/acesbs/painting_variant/soul_flame.json @@ -0,0 +1,5 @@ +{ + "asset_id": "acesbs:soul_flame", + "height": 2, + "width": 2 +} \ No newline at end of file diff --git a/src/main/resources/data/acesbs/painting_variant/stained.json b/src/main/resources/data/acesbs/painting_variant/stained.json new file mode 100644 index 0000000..9f8856a --- /dev/null +++ b/src/main/resources/data/acesbs/painting_variant/stained.json @@ -0,0 +1,5 @@ +{ + "asset_id": "acesbs:stained", + "height": 4, + "width": 3 +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/painting_variant/placeable.json b/src/main/resources/data/minecraft/tags/painting_variant/placeable.json new file mode 100644 index 0000000..811fa1d --- /dev/null +++ b/src/main/resources/data/minecraft/tags/painting_variant/placeable.json @@ -0,0 +1,8 @@ +{ + "values": [ + "acesbs:herald", + "acesbs:fire", + "acesbs:soul_flame", + "acesbs:stained" + ] +} \ No newline at end of file