Added Blood liquid and Porous Flesh blocks to the Visceral Heap. NOTE: The Blood fluid is not 100% finished and will have minor issues.
This commit is contained in:
parent
3f47841dd8
commit
0f589e77bb
4 changed files with 18 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
package biomesoplenty.api.block;
|
||||
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.material.FlowingFluid;
|
||||
|
||||
public class BOPBlocks
|
||||
{
|
||||
|
@ -50,6 +51,7 @@ public class BOPBlocks
|
|||
public static Block ROOTED_SAND;
|
||||
public static Block DRIED_SALT;
|
||||
public static Block FLESH;
|
||||
public static Block POROUS_FLESH;
|
||||
public static Block BRIMSTONE;
|
||||
public static Block BRIMSTONE_FUMAROLE;
|
||||
public static Block ROSE_QUARTZ_BLOCK;
|
||||
|
@ -304,6 +306,8 @@ public class BOPBlocks
|
|||
public static Block LARGE_ROSE_QUARTZ_BUD;
|
||||
public static Block MEDIUM_ROSE_QUARTZ_BUD;
|
||||
public static Block SMALL_ROSE_QUARTZ_BUD;
|
||||
public static Block BLOOD;
|
||||
|
||||
public static Block POTTED_ORIGIN_SAPLING;
|
||||
public static Block POTTED_FLOWERING_OAK_SAPLING;
|
||||
public static Block POTTED_RAINBOW_BIRCH_SAPLING;
|
||||
|
|
9
src/main/java/biomesoplenty/api/block/BOPFluids.java
Normal file
9
src/main/java/biomesoplenty/api/block/BOPFluids.java
Normal file
|
@ -0,0 +1,9 @@
|
|||
package biomesoplenty.api.block;
|
||||
|
||||
import net.minecraft.world.level.material.FlowingFluid;
|
||||
|
||||
public class BOPFluids
|
||||
{
|
||||
public static FlowingFluid FLOWING_BLOOD;
|
||||
public static FlowingFluid BLOOD;
|
||||
}
|
|
@ -28,4 +28,6 @@ public class BOPItems
|
|||
public static Item HELLBARK_BOAT;
|
||||
|
||||
public static Item MUSIC_DISC_WANDERER;
|
||||
|
||||
public static Item BLOOD_BUCKET;
|
||||
}
|
||||
|
|
|
@ -92,6 +92,7 @@
|
|||
"biome.biomesoplenty.wooded_scrubland": "Wooded Scrubland",
|
||||
"biome.biomesoplenty.woodland": "Woodland",
|
||||
|
||||
"item.biomesoplenty.blood_bucket": "Blood Bucket",
|
||||
"item.biomesoplenty.bop_icon": "BOP Icon",
|
||||
"item.biomesoplenty.cherry_boat": "Cherry Boat",
|
||||
"item.biomesoplenty.dead_boat": "Dead Boat",
|
||||
|
@ -116,6 +117,7 @@
|
|||
"block.biomesoplenty.black_sandstone_slab": "Black Sandstone Slab",
|
||||
"block.biomesoplenty.black_sandstone_stairs": "Black Sandstone Stairs",
|
||||
"block.biomesoplenty.black_sandstone_wall": "Black Sandstone Wall",
|
||||
"block.biomesoplenty.blood": "Blood",
|
||||
"block.biomesoplenty.blue_hydrangea": "Blue Hydrangea",
|
||||
"block.biomesoplenty.bramble": "Bramble",
|
||||
"block.biomesoplenty.brimstone": "Brimstone",
|
||||
|
@ -298,6 +300,7 @@
|
|||
"block.biomesoplenty.pink_cherry_sapling": "Pink Cherry Sapling",
|
||||
"block.biomesoplenty.pink_daffodil": "Pink Daffodil",
|
||||
"block.biomesoplenty.pink_hibiscus": "Pink Hibiscus",
|
||||
"block.biomesoplenty.porous_flesh": "Porous Flesh",
|
||||
"block.biomesoplenty.potted_burning_blossom": "Potted Burning Blossom",
|
||||
"block.biomesoplenty.potted_clover": "Potted Clover",
|
||||
"block.biomesoplenty.potted_dead_sapling": "Potted Dead Sapling",
|
||||
|
|
Loading…
Reference in a new issue