diff --git a/src/main/java/jesse/keeblarcraft/CustomBlocks/BlockManager.java b/src/main/java/jesse/keeblarcraft/CustomBlocks/BlockManager.java index 22d9097..ab9a2be 100644 --- a/src/main/java/jesse/keeblarcraft/CustomBlocks/BlockManager.java +++ b/src/main/java/jesse/keeblarcraft/CustomBlocks/BlockManager.java @@ -77,6 +77,14 @@ public class BlockManager { RegisterBlock("example_block_ore", exampleBlockOre); RegisterBlock("example_block", exampleBlock); RegisterBlock("money_block", MONEY_BLOCK); + RegisterBlock("cent_coin", CENT_COIN); + RegisterBlock("5_cent_coin", FIVE_CENT_COIN); + RegisterBlock("10_cent_coin", TEN_CENT_COIN); + RegisterBlock("25_cent_coin", TWENTY_FIVE_CENT_COIN); + RegisterBlock("1_dollar", ONE_DOLLAR); + RegisterBlock("5_dollar", FIVE_DOLLAR); + RegisterBlock("10_dollar", TEN_DOLLAR); + RegisterBlock("20_dollar", TWENTY_DOLLAR); } ////CUSTOM BLOCKS BELOW @@ -87,4 +95,67 @@ public class BlockManager { .sounds(BlockSoundGroup.METAL) .luminance(100)); + ////CENT COIN + public static final Block CENT_COIN = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////5_CENT_COIN + public static final Block FIVE_CENT_COIN = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////10_CENT_COIN + public static final Block TEN_CENT_COIN = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////25_CENT_COIN + public static final Block TWENTY_FIVE_CENT_COIN = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////25_CENT_COIN + public static final Block ONE_DOLLAR = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////25_CENT_COIN + public static final Block FIVE_DOLLAR = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////25_CENT_COIN + public static final Block TEN_DOLLAR = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); + + ////25_CENT_COIN + public static final Block TWENTY_DOLLAR = new Block(FabricBlockSettings.create() + .mapColor(MapColor.GOLD) + .breakInstantly() + .noCollision() + .nonOpaque() + .sounds(BlockSoundGroup.METAL)); } diff --git a/src/main/java/jesse/keeblarcraft/CustomBlocks/MoneyBlock.java b/src/main/java/jesse/keeblarcraft/CustomBlocks/MoneyBlock.java index 5cd9bf5..c410ed1 100644 --- a/src/main/java/jesse/keeblarcraft/CustomBlocks/MoneyBlock.java +++ b/src/main/java/jesse/keeblarcraft/CustomBlocks/MoneyBlock.java @@ -7,16 +7,7 @@ public class MoneyBlock extends Block { // CommonServerUtils commonServerUtils = new CommonServerUtils(); - // public static final BlockItem MONEY_BLOCK_ITEM = new BlockItem(BlockManager.MONEY_BLOCK, new FabricItemSettings()); - public MoneyBlock(Settings sett) { super(sett); - - // ItemManager.RegisterItem("money_block", MONEY_BLOCK_ITEM); - - // @Override - // public ActionResult onUse(World world, PlayerEntity player, Hand hand, BlockHitResult hit) { - // return this.getBlock().onUse(this.asBlockState(), world, hit.getBlockPos(), player, hand, hit); - // } } } diff --git a/src/main/resources/assets/keeblarcraft/blockstates/10_cent_coin.json b/src/main/resources/assets/keeblarcraft/blockstates/10_cent_coin.json new file mode 100644 index 0000000..127be12 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/10_cent_coin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/10_cent_coin" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/10_dollar.json b/src/main/resources/assets/keeblarcraft/blockstates/10_dollar.json new file mode 100644 index 0000000..c148204 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/10_dollar.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/10_dollar" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/1_dollar.json b/src/main/resources/assets/keeblarcraft/blockstates/1_dollar.json new file mode 100644 index 0000000..d01ab24 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/1_dollar.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/1_dollar" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/20_dollar.json b/src/main/resources/assets/keeblarcraft/blockstates/20_dollar.json new file mode 100644 index 0000000..8afb578 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/20_dollar.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/20_dollar" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/25_cent_coin.json b/src/main/resources/assets/keeblarcraft/blockstates/25_cent_coin.json new file mode 100644 index 0000000..b7ac9de --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/25_cent_coin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/25_cent_coin" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/5_cent_coin.json b/src/main/resources/assets/keeblarcraft/blockstates/5_cent_coin.json new file mode 100644 index 0000000..e738ef3 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/5_cent_coin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/5_cent_coin" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/5_dollar.json b/src/main/resources/assets/keeblarcraft/blockstates/5_dollar.json new file mode 100644 index 0000000..9f27653 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/5_dollar.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/5_dollar" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/blockstates/cent_coin.json b/src/main/resources/assets/keeblarcraft/blockstates/cent_coin.json new file mode 100644 index 0000000..95b56a2 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/blockstates/cent_coin.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "keeblarcraft:block/cent_coin" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/lang/en_us.json b/src/main/resources/assets/keeblarcraft/lang/en_us.json index 8396e60..3647e97 100644 --- a/src/main/resources/assets/keeblarcraft/lang/en_us.json +++ b/src/main/resources/assets/keeblarcraft/lang/en_us.json @@ -8,5 +8,13 @@ "block.keeblarcraft.example_block": "Keeblarcraft example block", "block.keeblarcraft.money_block": "Money! Money! Money!", - "block.keeblarcraft.example_block_ore": "Keeblarcraft example block ore" + "block.keeblarcraft.example_block_ore": "Keeblarcraft example block ore", + "block.keeblarcraft.cent_coin": "Cent Coin", + "block.keeblarcraft.5_cent_coin": "5 Cent Coin", + "block.keeblarcraft.10_cent_coin": "10 Cent Coin", + "block.keeblarcraft.25_cent_coin": "25 Cent Coin", + "block.keeblarcraft.1_dollar": "$1", + "block.keeblarcraft.5_dollar": "$5", + "block.keeblarcraft.10_dollar": "$10", + "block.keeblarcraft.20_dollar": "$20" } \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/10_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/block/10_cent_coin.json new file mode 100644 index 0000000..93ab4d4 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/10_cent_coin.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "keeblarcraft:block/10_cent_coin", + "particle": "keeblarcraft:block/10_cent_coin" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 7]}, + "faces": { + "north": {"uv": [2, 0, 4, 1], "texture": "#0"}, + "east": {"uv": [2, 1, 4, 2], "texture": "#0"}, + "south": {"uv": [2, 2, 4, 3], "texture": "#0"}, + "west": {"uv": [2, 3, 4, 4], "texture": "#0"}, + "up": {"uv": [2, 2, 0, 0], "texture": "#0"}, + "down": {"uv": [2, 2, 0, 4], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/10_dollar.json b/src/main/resources/assets/keeblarcraft/models/block/10_dollar.json new file mode 100644 index 0000000..9a0cbe7 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/10_dollar.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "keeblarcraft:block/10_dollar", + "particle": "keeblarcraft:block/10_dollar" + }, + "elements": [ + { + "from": [3, 0, 6], + "to": [13, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 0, 6]}, + "faces": { + "north": {"uv": [0, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [5, 0.5, 7.5, 1], "texture": "#0"}, + "south": {"uv": [5, 0, 10, 0.5], "texture": "#0"}, + "west": {"uv": [5, 1, 7.5, 1.5], "texture": "#0"}, + "up": {"uv": [5, 2.5, 0, 0], "texture": "#0"}, + "down": {"uv": [5, 2.5, 0, 5], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/1_dollar.json b/src/main/resources/assets/keeblarcraft/models/block/1_dollar.json new file mode 100644 index 0000000..552f813 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/1_dollar.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "keeblarcraft:block/1_dollar", + "particle": "keeblarcraft:block/1_dollar" + }, + "elements": [ + { + "from": [3, 0, 5], + "to": [13, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 0, 5]}, + "faces": { + "north": {"uv": [0, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [5, 0.5, 7.5, 1], "texture": "#0"}, + "south": {"uv": [5, 0, 10, 0.5], "texture": "#0"}, + "west": {"uv": [5, 1, 7.5, 1.5], "texture": "#0"}, + "up": {"uv": [5, 2.5, 0, 0], "texture": "#0"}, + "down": {"uv": [5, 2.5, 0, 5], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/20_dollar.json b/src/main/resources/assets/keeblarcraft/models/block/20_dollar.json new file mode 100644 index 0000000..bd66efc --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/20_dollar.json @@ -0,0 +1,23 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "keeblarcraft:block/20_dollar", + "particle": "keeblarcraft:block/20_dollar" + }, + "elements": [ + { + "from": [3, 0, 6], + "to": [13, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 0, 6]}, + "faces": { + "north": {"uv": [0, 5, 5, 5.5], "texture": "#0"}, + "east": {"uv": [5, 0.5, 7.5, 1], "texture": "#0"}, + "south": {"uv": [5, 0, 10, 0.5], "texture": "#0"}, + "west": {"uv": [5, 1, 7.5, 1.5], "texture": "#0"}, + "up": {"uv": [5, 2.5, 0, 0], "texture": "#0"}, + "down": {"uv": [5, 2.5, 0, 5], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/25_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/block/25_cent_coin.json new file mode 100644 index 0000000..538474f --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/25_cent_coin.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "keeblarcraft:block/25_cent_coin", + "particle": "keeblarcraft:block/25_cent_coin" + }, + "elements": [ + { + "from": [6, 0, 6], + "to": [10, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 0, 6]}, + "faces": { + "north": {"uv": [4, 0, 8, 1], "texture": "#0"}, + "east": {"uv": [4, 1, 8, 2], "texture": "#0"}, + "south": {"uv": [4, 2, 8, 3], "texture": "#0"}, + "west": {"uv": [4, 3, 8, 4], "texture": "#0"}, + "up": {"uv": [4, 4, 0, 0], "texture": "#0"}, + "down": {"uv": [4, 4, 0, 8], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/5_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/block/5_cent_coin.json new file mode 100644 index 0000000..c778c4b --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/5_cent_coin.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "keeblarcraft:block/5_cent_coin", + "particle": "keeblarcraft:block/5_cent_coin" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [10, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 7]}, + "faces": { + "north": {"uv": [3, 0, 6, 1], "texture": "#0"}, + "east": {"uv": [3, 1, 6, 2], "texture": "#0"}, + "south": {"uv": [3, 2, 6, 3], "texture": "#0"}, + "west": {"uv": [3, 3, 6, 4], "texture": "#0"}, + "up": {"uv": [3, 3, 0, 0], "texture": "#0"}, + "down": {"uv": [3, 3, 0, 6], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/5_dollar.json b/src/main/resources/assets/keeblarcraft/models/block/5_dollar.json new file mode 100644 index 0000000..179ac36 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/5_dollar.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "1": "keeblarcraft:block/5_dollar" + }, + "elements": [ + { + "from": [3, 0, 5], + "to": [13, 1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 0, 5]}, + "faces": { + "north": {"uv": [0, 5, 5, 5.5], "texture": "#1"}, + "east": {"uv": [5, 0.5, 7.5, 1], "texture": "#1"}, + "south": {"uv": [5, 0, 10, 0.5], "texture": "#1"}, + "west": {"uv": [5, 1, 7.5, 1.5], "texture": "#1"}, + "up": {"uv": [5, 2.5, 0, 0], "texture": "#1"}, + "down": {"uv": [5, 2.5, 0, 5], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/block/cent_coin.json b/src/main/resources/assets/keeblarcraft/models/block/cent_coin.json new file mode 100644 index 0000000..3f8cbf0 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/block/cent_coin.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "keeblarcraft:block/cent_coin", + "particle": "keeblarcraft:block/cent_coin" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 1, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [7, 0, 7]}, + "faces": { + "north": {"uv": [2, 0, 4, 1], "texture": "#0"}, + "east": {"uv": [2, 1, 4, 2], "texture": "#0"}, + "south": {"uv": [2, 2, 4, 3], "texture": "#0"}, + "west": {"uv": [2, 3, 4, 4], "texture": "#0"}, + "up": {"uv": [2, 2, 0, 0], "texture": "#0"}, + "down": {"uv": [2, 2, 0, 4], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/10_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/item/10_cent_coin.json new file mode 100644 index 0000000..c8b95b2 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/10_cent_coin.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/10_cent_coin" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/10_dollar.json b/src/main/resources/assets/keeblarcraft/models/item/10_dollar.json new file mode 100644 index 0000000..c6395f4 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/10_dollar.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/10_dollar" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/1_dollar.json b/src/main/resources/assets/keeblarcraft/models/item/1_dollar.json new file mode 100644 index 0000000..957a8b0 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/1_dollar.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/1_dollar" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/20_dollar.json b/src/main/resources/assets/keeblarcraft/models/item/20_dollar.json new file mode 100644 index 0000000..13c5777 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/20_dollar.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/20_dollar" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/25_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/item/25_cent_coin.json new file mode 100644 index 0000000..8429d4b --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/25_cent_coin.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/25_cent_coin" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/5_cent_coin.json b/src/main/resources/assets/keeblarcraft/models/item/5_cent_coin.json new file mode 100644 index 0000000..fe3dbf2 --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/5_cent_coin.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/5_cent_coin" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/5_dollar.json b/src/main/resources/assets/keeblarcraft/models/item/5_dollar.json new file mode 100644 index 0000000..b35e91b --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/5_dollar.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/5_dollar" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/models/item/cent_coin.json b/src/main/resources/assets/keeblarcraft/models/item/cent_coin.json new file mode 100644 index 0000000..a2d1e4b --- /dev/null +++ b/src/main/resources/assets/keeblarcraft/models/item/cent_coin.json @@ -0,0 +1,3 @@ +{ + "parent": "keeblarcraft:block/cent_coin" +} \ No newline at end of file diff --git a/src/main/resources/assets/keeblarcraft/textures/block/10_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/block/10_cent_coin.png new file mode 100644 index 0000000..239b075 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/10_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/10_dollar.png b/src/main/resources/assets/keeblarcraft/textures/block/10_dollar.png new file mode 100644 index 0000000..ce5128a Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/10_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/1_dollar.png b/src/main/resources/assets/keeblarcraft/textures/block/1_dollar.png new file mode 100644 index 0000000..be9aab8 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/1_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/20_dollar.png b/src/main/resources/assets/keeblarcraft/textures/block/20_dollar.png new file mode 100644 index 0000000..0647991 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/20_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/25_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/block/25_cent_coin.png new file mode 100644 index 0000000..1b2265e Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/25_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/5_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/block/5_cent_coin.png new file mode 100644 index 0000000..045c21c Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/5_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/5_dollar.png b/src/main/resources/assets/keeblarcraft/textures/block/5_dollar.png new file mode 100644 index 0000000..37f9747 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/5_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/block/cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/block/cent_coin.png new file mode 100644 index 0000000..9bcaef8 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/block/cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/10_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/item/10_cent_coin.png new file mode 100644 index 0000000..239b075 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/10_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/10_dollar.png b/src/main/resources/assets/keeblarcraft/textures/item/10_dollar.png new file mode 100644 index 0000000..ce5128a Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/10_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/1_dollar.png b/src/main/resources/assets/keeblarcraft/textures/item/1_dollar.png new file mode 100644 index 0000000..be9aab8 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/1_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/20_dollar.png b/src/main/resources/assets/keeblarcraft/textures/item/20_dollar.png new file mode 100644 index 0000000..0647991 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/20_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/25_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/item/25_cent_coin.png new file mode 100644 index 0000000..1b2265e Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/25_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/5_cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/item/5_cent_coin.png new file mode 100644 index 0000000..045c21c Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/5_cent_coin.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/5_dollar.png b/src/main/resources/assets/keeblarcraft/textures/item/5_dollar.png new file mode 100644 index 0000000..37f9747 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/5_dollar.png differ diff --git a/src/main/resources/assets/keeblarcraft/textures/item/cent_coin.png b/src/main/resources/assets/keeblarcraft/textures/item/cent_coin.png new file mode 100644 index 0000000..9bcaef8 Binary files /dev/null and b/src/main/resources/assets/keeblarcraft/textures/item/cent_coin.png differ diff --git a/src/main/resources/data/keeblarcraft/loot_tables/blocks/cent_coin.json b/src/main/resources/data/keeblarcraft/loot_tables/blocks/cent_coin.json new file mode 100644 index 0000000..6775428 --- /dev/null +++ b/src/main/resources/data/keeblarcraft/loot_tables/blocks/cent_coin.json @@ -0,0 +1,20 @@ +{ +"type": "minecraft:block", +"pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "keeblarcraft:cent_coin" + } + ], + "rolls": 1.0 + } +] +} \ No newline at end of file