Skip to content

Commit

Permalink
Add moolip taters (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
haykam821 authored Sep 7, 2023
1 parent 07aba3a commit 139c2a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/xyz/nucleoid/extras/lobby/NEBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ public class NEBlocks {
public static final Block JUNGLE_LOG_TATER = createTaterBlock(Blocks.JUNGLE_LOG, "fd9658650626b1c63fe8fa5f10e5a981a400532de45153cfe481f302d8980818");
public static final Block MAGMA_CUBE_TATER = createTaterBlock(ParticleTypes.DRIPPING_LAVA, "b34a0d09a2721e18afd3f4c1f2abf630734566e5e04054cc086945dd3af4a1b3");
public static final Block MOOBLOOM_TATER = createTaterBlock(ParticleTypes.COMPOSTER, "a5a022dae96e419275a0bf5dfabde2d1c4dd073376d52265bee5dd67776ee5a2");
public static final Block MOOLIP_TATER = createTaterBlock(ParticleTypes.CHERRY_LEAVES, "271e15bc807ccf8ecdd594bac37680c06aeb7ec46ce071f225cf207d718654a2");
public static final Block MUDDY_PIG_TATER = createTaterBlock(ParticleTypes.HEART, "70137b92b07e1c24c6d3042daa2997a871383c7278d88e3ecf1964e4b75ff993");
public static final Block MUSHROOM_STEM_TATER = createTaterBlock(Blocks.MUSHROOM_STEM, "104dd3bad53758af4eb92be90e78277a6201e63d63614c463c5156d210a61c11");
public static final Block NETHER_BRICK_TATER = createTaterBlock(Blocks.NETHER_BRICKS, "751534292b1f5e13c8cea2d4f4f653c9f46cb63f5e2ad480c24fc98f22a027c0");
Expand Down Expand Up @@ -753,6 +754,7 @@ public static void register() {
register("jungle_log_tater", JUNGLE_LOG_TATER);
register("magma_cube_tater", MAGMA_CUBE_TATER);
register("moobloom_tater", MOOBLOOM_TATER);
register("moolip_tater", MOOLIP_TATER);
register("muddy_pig_tater", MUDDY_PIG_TATER);
register("mushroom_stem_tater", MUSHROOM_STEM_TATER);
register("nether_brick_tater", NETHER_BRICK_TATER);
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/xyz/nucleoid/extras/lobby/NEItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ public class NEItems {
public static final Item JUNGLE_LOG_TATER = createHead(NEBlocks.JUNGLE_LOG_TATER);
public static final Item MAGMA_CUBE_TATER = createHead(NEBlocks.MAGMA_CUBE_TATER);
public static final Item MOOBLOOM_TATER = createHead(NEBlocks.MOOBLOOM_TATER);
public static final Item MOOLIP_TATER = createHead(NEBlocks.MOOLIP_TATER);
public static final Item MUDDY_PIG_TATER = createHead(NEBlocks.MUDDY_PIG_TATER);
public static final Item MUSHROOM_STEM_TATER = createHead(NEBlocks.MUSHROOM_STEM_TATER);
public static final Item NETHER_BRICK_TATER = createHead(NEBlocks.NETHER_BRICK_TATER);
Expand Down Expand Up @@ -688,6 +689,7 @@ public static void register() {
registerTater("jungle_log_tater", JUNGLE_LOG_TATER);
registerTater("magma_cube_tater", MAGMA_CUBE_TATER);
registerTater("moobloom_tater", MOOBLOOM_TATER);
registerTater("moolip_tater", MOOLIP_TATER);
registerTater("muddy_pig_tater", MUDDY_PIG_TATER);
registerTater("mushroom_stem_tater", MUSHROOM_STEM_TATER);
registerTater("nether_brick_tater", NETHER_BRICK_TATER);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
"tater": "nucleoid_extras:moobloom_tater"
}
},
"get_moolip_tater": {
"trigger": "nucleoid_extras:tater_collected",
"conditions": {
"tater": "nucleoid_extras:moolip_tater"
}
},
"get_glow_squid_tater": {
"trigger": "nucleoid_extras:tater_collected",
"conditions": {
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/data/nucleoid_extras/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@
"block.nucleoid_extras.jungle_log_tater": "Jungle Log Tater",
"block.nucleoid_extras.magma_cube_tater": "Magma Cube Tater",
"block.nucleoid_extras.moobloom_tater": "Moobloom Tater",
"block.nucleoid_extras.moolip_tater": "Moolip Tater",
"block.nucleoid_extras.muddy_pig_tater": "Muddy Pig Tater",
"block.nucleoid_extras.mushroom_stem_tater": "Mushroom Stem Tater",
"block.nucleoid_extras.nether_brick_tater": "Nether Brick Tater",
Expand Down

0 comments on commit 139c2a3

Please sign in to comment.