Vanilla Integrations

This commit is contained in:
ItsBlackGear 2022-07-21 00:06:27 -04:00
parent 94c5794556
commit 7be1b91581
130 changed files with 2804 additions and 16 deletions

View file

@ -45,12 +45,12 @@ public class WardenLayerRenderer<T extends Warden, M extends WardenModel<T>> ext
private void updateModelPartVisibility() {
List<ModelPart> parts = this.modelPartVisibility.getPartsToDraw(this.getParentModel());
this.getParentModel().root().getAllParts().forEach(part -> ((Drawable)(Object)part).setSkipDraw(true));
parts.forEach(part -> ((Drawable)(Object)part).setSkipDraw(false));
this.getParentModel().root().getAllParts().forEach(part -> Drawable.of(part).setSkipDraw(true));
parts.forEach(part -> Drawable.of(part).setSkipDraw(false));
}
private void unhideAllModelParts() {
this.getParentModel().root().getAllParts().forEach(part -> ((Drawable)(Object)part).setSkipDraw(false));
this.getParentModel().root().getAllParts().forEach(part -> Drawable.of(part).setSkipDraw(false));
}
public interface AnimationAngleAdjuster<T extends Warden> {

View file

@ -1,7 +1,13 @@
package com.cursedcauldron.wildbackport.client.render.model;
import net.minecraft.client.model.geom.ModelPart;
public interface Drawable {
boolean skipDraw();
void setSkipDraw(boolean set);
static Drawable of(ModelPart part) {
return Drawable.class.cast(part);
}
}

View file

@ -4,10 +4,34 @@ import com.cursedcauldron.wildbackport.common.entities.Allay;
import com.cursedcauldron.wildbackport.common.entities.Frog;
import com.cursedcauldron.wildbackport.common.entities.Tadpole;
import com.cursedcauldron.wildbackport.common.entities.Warden;
import com.cursedcauldron.wildbackport.common.registry.WBBlocks;
import com.cursedcauldron.wildbackport.common.registry.entity.WBEntities;
import com.cursedcauldron.wildbackport.common.registry.worldgen.WBWorldGeneration;
import com.cursedcauldron.wildbackport.common.tag.WBBlockTags;
import com.cursedcauldron.wildbackport.core.api.MobRegistry;
import com.cursedcauldron.wildbackport.core.api.event.Interactions;
import com.cursedcauldron.wildbackport.core.api.worldgen.BiomeModifier;
import net.minecraft.core.BlockPos;
import net.minecraft.core.BlockSource;
import net.minecraft.core.Direction;
import net.minecraft.core.dispenser.DefaultDispenseItemBehavior;
import net.minecraft.core.particles.ParticleTypes;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.sounds.SoundEvents;
import net.minecraft.sounds.SoundSource;
import net.minecraft.stats.Stats;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.ItemUtils;
import net.minecraft.world.item.Items;
import net.minecraft.world.item.alchemy.PotionUtils;
import net.minecraft.world.item.alchemy.Potions;
import net.minecraft.world.item.context.UseOnContext;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.DispenserBlock;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.gameevent.GameEvent;
public class CommonSetup {
/**
@ -19,6 +43,7 @@ public class CommonSetup {
MobRegistry.registerAttributes(WBEntities.FROG, Frog::createAttributes);
MobRegistry.registerAttributes(WBEntities.TADPOLE, Tadpole::createAttributes);
MobRegistry.registerAttributes(WBEntities.WARDEN, Warden::createAttributes);
}
/**
@ -27,5 +52,6 @@ public class CommonSetup {
public static void onPostCommon() {
WBWorldGeneration.bootstrap();
BiomeModifier.setup();
VanillaInteraction.setup();
}
}

View file

@ -0,0 +1,126 @@
package com.cursedcauldron.wildbackport.common;
import com.cursedcauldron.wildbackport.common.registry.WBBlocks;
import com.cursedcauldron.wildbackport.common.tag.WBBlockTags;
import com.cursedcauldron.wildbackport.core.api.event.Interactions;
import com.cursedcauldron.wildbackport.core.mixin.access.AxeItemAccessor;
import com.cursedcauldron.wildbackport.core.mixin.access.FireBlockAccessor;
import com.google.common.collect.Maps;
import net.minecraft.core.BlockPos;
import net.minecraft.core.BlockSource;
import net.minecraft.core.Direction;
import net.minecraft.core.dispenser.DefaultDispenseItemBehavior;
import net.minecraft.core.particles.ParticleTypes;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.sounds.SoundEvents;
import net.minecraft.sounds.SoundSource;
import net.minecraft.stats.Stats;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.ItemUtils;
import net.minecraft.world.item.Items;
import net.minecraft.world.item.alchemy.PotionUtils;
import net.minecraft.world.item.alchemy.Potions;
import net.minecraft.world.level.ItemLike;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.ComposterBlock;
import net.minecraft.world.level.block.DispenserBlock;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.gameevent.GameEvent;
public class VanillaInteraction {
public static void setup() {
// Flammables
addFlammable(WBBlocks.MANGROVE_LOG.get(), 5, 5);
addFlammable(WBBlocks.MANGROVE_WOOD.get(), 5, 5);
addFlammable(WBBlocks.STRIPPED_MANGROVE_LOG.get(), 5, 5);
addFlammable(WBBlocks.STRIPPED_MANGROVE_WOOD.get(), 5, 5);
addFlammable(WBBlocks.MANGROVE_PLANKS.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_STAIRS.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_SLAB.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_FENCE.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_FENCE_GATE.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_ROOTS.get(), 5, 20);
addFlammable(WBBlocks.MANGROVE_LEAVES.get(), 30, 60);
// Compostables
addCompostable(WBBlocks.MANGROVE_LEAVES.get(), 0.3F);
addCompostable(WBBlocks.MANGROVE_PROPAGULE.get(), 0.3F);
addCompostable(WBBlocks.MANGROVE_ROOTS.get(), 0.3F);
// Strippables
addStrippable(WBBlocks.MANGROVE_LOG.get(), WBBlocks.STRIPPED_MANGROVE_LOG.get());
addStrippable(WBBlocks.MANGROVE_WOOD.get(), WBBlocks.STRIPPED_MANGROVE_WOOD.get());
// Turning Dirt into Mud
Interactions.addRightClick(context -> {
Level level = context.getLevel();
BlockPos pos = context.getClickedPos();
Player player = context.getPlayer();
ItemStack stack = context.getItemInHand();
BlockState state = level.getBlockState(pos);
if (player != null && context.getClickedFace() != Direction.DOWN && state.is(WBBlockTags.CONVERTABLE_TO_MUD) && PotionUtils.getPotion(stack) == Potions.WATER) {
level.playSound(null, pos, SoundEvents.GENERIC_SPLASH, SoundSource.PLAYERS, 1.0F, 1.0F);
player.setItemInHand(context.getHand(), ItemUtils.createFilledResult(stack, player, new ItemStack(Items.GLASS_BOTTLE)));
player.awardStat(Stats.ITEM_USED.get(stack.getItem()));
if (!level.isClientSide()) {
for (int i = 0; i < 5; i++) {
((ServerLevel)level).sendParticles(ParticleTypes.SPLASH, (double)pos.getX() + level.random.nextDouble(), pos.getY() + 1, (double)pos.getZ() + level.random.nextDouble(), 1, 0.0D, 0.0D, 0.0D, 1.0D);
}
}
level.playSound(null, pos, SoundEvents.BOTTLE_EMPTY, SoundSource.BLOCKS, 1.0F, 1.0F);
level.gameEvent(GameEvent.FLUID_PLACE, pos);
level.setBlockAndUpdate(pos, WBBlocks.MUD.get().defaultBlockState());
return InteractionResult.sidedSuccess(level.isClientSide());
} else {
return InteractionResult.PASS;
}
});
DispenserBlock.registerBehavior(Items.POTION, new DefaultDispenseItemBehavior() {
private final DefaultDispenseItemBehavior behavior = new DefaultDispenseItemBehavior();
@Override protected ItemStack execute(BlockSource source, ItemStack stack) {
if (PotionUtils.getPotion(stack) != Potions.WATER) {
return this.behavior.dispense(source, stack);
} else {
ServerLevel level = source.getLevel();
BlockPos sourcePos = source.getPos();
BlockPos dispenserPos = source.getPos().relative(source.getBlockState().getValue(DispenserBlock.FACING));
if (!level.getBlockState(dispenserPos).is(WBBlockTags.CONVERTABLE_TO_MUD)) {
return this.behavior.dispense(source, stack);
} else {
if (!level.isClientSide()) {
for (int i = 0; i < 5; i++) {
level.sendParticles(ParticleTypes.SPLASH, (double)sourcePos.getX() + level.random.nextDouble(), sourcePos.getY() + 1, (double)sourcePos.getZ() + level.random.nextDouble(), 1, 0.0D, 0.0D, 0.0D, 1.0D);
}
}
level.playSound(null, sourcePos, SoundEvents.BOTTLE_EMPTY, SoundSource.BLOCKS, 1.0F, 1.0F);
level.gameEvent(GameEvent.FLUID_PLACE, sourcePos);
level.setBlockAndUpdate(dispenserPos, WBBlocks.MUD.get().defaultBlockState());
return new ItemStack(Items.GLASS_BOTTLE);
}
}
}
});
}
public static void addFlammable(Block block, int flameOdds, int burnOdds) {
((FireBlockAccessor)Blocks.FIRE).callSetFlammable(block, flameOdds, burnOdds);
}
public static void addCompostable(ItemLike item, float chance) {
ComposterBlock.COMPOSTABLES.put(item, chance);
}
public static void addStrippable(Block from, Block to) {
AxeItemAccessor.setSTRIPPABLES(Maps.newHashMap(AxeItemAccessor.getSTRIPPABLES()));
AxeItemAccessor.getSTRIPPABLES().put(from, to);
}
}

View file

@ -0,0 +1,37 @@
package com.cursedcauldron.wildbackport.common.blocks;
import com.cursedcauldron.wildbackport.common.registry.WBBlocks;
import com.cursedcauldron.wildbackport.core.mixin.access.PointedDripstoneBlockAccessor;
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.material.Fluid;
import net.minecraft.world.level.material.Fluids;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import java.util.Optional;
public record DrippingFluid(BlockPos pos, Fluid fluid, BlockState sourceState) {
public static void fillCauldron(BlockState state, ServerLevel world, BlockPos blockPos, CallbackInfo ci) {
Optional<DrippingFluid> fluidAbove = getFluidAboveStalactite(world, blockPos, state);
if (fluidAbove.isPresent()) {
Fluid fluid = fluidAbove.get().fluid;
if (fluidAbove.get().sourceState().is(WBBlocks.MUD.get()) && fluid == Fluids.WATER) {
world.setBlockAndUpdate(fluidAbove.get().pos, Blocks.CLAY.defaultBlockState());
world.levelEvent(1504, blockPos, 0);
ci.cancel();
}
}
}
public static Optional<DrippingFluid> getFluidAboveStalactite(Level level, BlockPos pos, BlockState state) {
return !PointedDripstoneBlockAccessor.callIsStalactite(state) ? Optional.empty() : PointedDripstoneBlockAccessor.callFindRootBlock(level, pos, state, 11).map(blockPos -> {
BlockPos position = blockPos.above();
BlockState sourceState = level.getBlockState(position);
Fluid fluid = sourceState.is(WBBlocks.MUD.get()) && !level.dimensionType().ultraWarm() ? Fluids.WATER : level.getFluidState(position).getType();
return new DrippingFluid(position, fluid, sourceState);
});
}
}

View file

@ -74,9 +74,6 @@ public class SculkCatalystBlock extends BaseEntityBlock {
@Override
public void spawnAfterBreak(BlockState state, ServerLevel level, BlockPos pos, ItemStack stack) {
super.spawnAfterBreak(state, level, pos, stack);
if (EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, stack) == 0) {
this.popExperience(level, pos, 20);
}
if (EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, stack) == 0) this.popExperience(level, pos, 5);
}
}

View file

@ -7,6 +7,10 @@ public interface WardenTracker {
WardenSpawnTracker getWardenSpawnTracker();
static WardenSpawnTracker getWardenSpawnTracker(Player player) {
return ((WardenTracker)player).getWardenSpawnTracker();
return of(player).getWardenSpawnTracker();
}
}
static WardenTracker of(Player player) {
return (WardenTracker)player;
}
}

View file

@ -74,14 +74,14 @@ public class WardenSpawnTracker {
players.add(player);
}
if (players.stream().anyMatch(playerIn -> ((WardenTracker)playerIn).getWardenSpawnTracker().onCooldown())) {
if (players.stream().anyMatch(playerIn -> WardenTracker.of(playerIn).getWardenSpawnTracker().onCooldown())) {
return OptionalInt.empty();
}
Optional<WardenSpawnTracker> optional = players.stream().map(WardenTracker::getWardenSpawnTracker).max(Comparator.comparingInt(tracker -> tracker.warningLevel));
WardenSpawnTracker tracker = optional.get();
tracker.increaseWarningLevel();
players.forEach(playerIn -> ((WardenTracker)playerIn).getWardenSpawnTracker().copyData(tracker));
players.forEach(playerIn -> WardenTracker.of(playerIn).getWardenSpawnTracker().copyData(tracker));
return OptionalInt.of(tracker.warningLevel);
} else {
return OptionalInt.empty();

View file

@ -2,9 +2,7 @@ package com.cursedcauldron.wildbackport.common.tag;
import com.cursedcauldron.wildbackport.WildBackport;
import com.cursedcauldron.wildbackport.core.api.TagRegistry;
import net.minecraft.core.Registry;
import net.minecraft.data.BuiltinRegistries;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.tags.TagKey;
import net.minecraft.world.level.biome.Biome;

View file

@ -10,11 +10,12 @@ public class WBBlockTags {
public static final TagRegistry<Block> TAGS = TagRegistry.create(Registry.BLOCK, WildBackport.MOD_ID);
// Mangrove Swamp
public static final TagKey<Block> CONVERTABLE_TO_MUD = TAGS.create("convertable_to_mud");
public static final TagKey<Block> FROG_PREFER_JUMP_TO = TAGS.create("frog_prefer_jump_to");
//TODO
public static final TagKey<Block> FROGS_SPAWNABLE_ON = TAGS.create("frogs_spawnable_on");
public static final TagKey<Block> MANGROVE_LOGS_CAN_GROW_THROUGH = TAGS.create("mangrove_logs_can_grow_through");
public static final TagKey<Block> MANGROVE_ROOTS_CAN_GROW_THROUGH = TAGS.create("mangrove_roots_can_grow_through");
public static final TagKey<Block> FROG_PREFER_JUMP_TO = TAGS.create("frog_prefer_jump_to");
public static final TagKey<Block> FROGS_SPAWNABLE_ON = TAGS.create("frogs_spawnable_on");
// Deep Dark
public static final TagKey<Block> SCULK_REPLACEABLE = TAGS.create("sculk_replaceable");

View file

@ -3,8 +3,12 @@ package com.cursedcauldron.wildbackport.common.tag;
import com.cursedcauldron.wildbackport.WildBackport;
import com.cursedcauldron.wildbackport.core.api.TagRegistry;
import net.minecraft.core.Registry;
import net.minecraft.tags.TagKey;
import net.minecraft.world.item.Item;
public class WBItemTags {
public static final TagRegistry<Item> TAGS = TagRegistry.create(Registry.ITEM, WildBackport.MOD_ID);
public static final TagKey<Item> CHEST_BOATS = TAGS.create("chest_boats");
public static final TagKey<Item> MANGROVE_LOGS = TAGS.create("mangrove_logs");
}

View file

@ -0,0 +1,16 @@
package com.cursedcauldron.wildbackport.core.api.event;
import dev.architectury.injectables.annotations.ExpectPlatform;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.item.context.UseOnContext;
public class Interactions {
@ExpectPlatform
public static void addRightClick(Interaction interaction) {
throw new AssertionError();
}
public interface Interaction {
InteractionResult of(UseOnContext context);
}
}

View file

@ -0,0 +1,23 @@
package com.cursedcauldron.wildbackport.core.mixin.access;
import net.minecraft.world.item.AxeItem;
import net.minecraft.world.level.block.Block;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Mutable;
import org.spongepowered.asm.mixin.gen.Accessor;
import java.util.Map;
@Mixin(AxeItem.class)
public interface AxeItemAccessor {
@Accessor
static Map<Block, Block> getSTRIPPABLES() {
throw new UnsupportedOperationException();
}
@Mutable
@Accessor
static void setSTRIPPABLES(Map<Block, Block> STRIPPABLES) {
throw new UnsupportedOperationException();
}
}

View file

@ -0,0 +1,12 @@
package com.cursedcauldron.wildbackport.core.mixin.access;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.FireBlock;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
@Mixin(FireBlock.class)
public interface FireBlockAccessor {
@Invoker
void callSetFlammable(Block block, int i, int j);
}

View file

@ -0,0 +1,23 @@
package com.cursedcauldron.wildbackport.core.mixin.access;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.PointedDripstoneBlock;
import net.minecraft.world.level.block.state.BlockState;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.gen.Invoker;
import java.util.Optional;
@Mixin(PointedDripstoneBlock.class)
public interface PointedDripstoneBlockAccessor {
@Invoker
static Optional<BlockPos> callFindRootBlock(Level level, BlockPos blockPos2, BlockState blockState2, int i) {
throw new UnsupportedOperationException();
}
@Invoker
static boolean callIsStalactite(BlockState blockState) {
throw new UnsupportedOperationException();
}
}

View file

@ -0,0 +1,19 @@
package com.cursedcauldron.wildbackport.core.mixin.common;
import com.cursedcauldron.wildbackport.common.blocks.DrippingFluid;
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.level.block.PointedDripstoneBlock;
import net.minecraft.world.level.block.state.BlockState;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(PointedDripstoneBlock.class)
public class PointedDripstoneBlockMixin {
@Inject(method = "maybeFillCauldron", at = @At("HEAD"), cancellable = true)
private static void wb$maybeFillCauldron(BlockState state, ServerLevel level, BlockPos pos, float dripChance, CallbackInfo ci) {
DrippingFluid.fillCauldron(state, level, pos, ci);
}
}

View file

@ -0,0 +1,15 @@
package com.cursedcauldron.wildbackport.core.mixin.common;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.entity.BlockEntityType;
import net.minecraft.world.level.block.entity.SculkSensorBlockEntity;
import net.minecraft.world.level.block.state.BlockState;
import org.spongepowered.asm.mixin.Mixin;
@Mixin(SculkSensorBlockEntity.class)
public class SculkSensorBlockEntityMixin extends BlockEntity {
public SculkSensorBlockEntityMixin(BlockEntityType<?> type, BlockPos pos, BlockState state) {
super(type, pos, state);
}
}

View file

@ -0,0 +1,36 @@
package com.cursedcauldron.wildbackport.core.mixin.common;
import com.cursedcauldron.wildbackport.common.registry.WBGameEvents;
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.enchantment.EnchantmentHelper;
import net.minecraft.world.item.enchantment.Enchantments;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.BaseEntityBlock;
import net.minecraft.world.level.block.SculkSensorBlock;
import net.minecraft.world.level.block.state.BlockState;
import org.spongepowered.asm.mixin.Mixin;
@Mixin(SculkSensorBlock.class)
public abstract class SculkSensorBlockMixin extends BaseEntityBlock {
protected SculkSensorBlockMixin(Properties properties) {
super(properties);
}
@Override
public void stepOn(Level level, BlockPos pos, BlockState state, Entity entity) {
if (!level.isClientSide() && SculkSensorBlock.canActivate(state)) {
SculkSensorBlock.activate(level, pos, state, 1);
level.gameEvent(entity, WBGameEvents.SCULK_SENSOR_TENDRILS_CLICKING.get(), pos);
}
super.stepOn(level, pos, state, entity);
}
@Override
public void spawnAfterBreak(BlockState state, ServerLevel level, BlockPos pos, ItemStack stack) {
if (EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, stack) == 0) this.popExperience(level, pos, 5);
}
}

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:sculk_sensor"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_boat",
"#wildbackport:chest_boats"
]
}

View file

@ -0,0 +1,7 @@
{
"replace": false,
"values": [
"wildbackport:mud",
"wildbackport:muddy_mangrove_roots"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_leaves"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"#wildbackport:mangrove_logs"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_planks"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mud_brick_wall"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_door"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_fence"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_slab"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_stairs"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_swamp"
]
}

View file

@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"wildbackport:mangrove_swamp"
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_logs": {
"conditions": {
"items": [
{
"tag": "wildbackport:mangrove_logs"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_planks"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_logs",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_planks"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_slab"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_stairs"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_log": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_log"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_wood"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_log",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_wood"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_slab"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_slab"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_slab_from_mud_bricks_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_slab_from_mud_bricks_stonecutting"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_stairs"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_stairs"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_stairs_from_mud_bricks_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_stairs_from_mud_bricks_stonecutting"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_packed_mud": {
"conditions": {
"items": [
{
"items": [
"wildbackport:packed_mud"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_bricks"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_packed_mud",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_bricks"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mangrove_roots": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_roots"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:muddy_mangrove_roots"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mangrove_roots",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:muddy_mangrove_roots"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:packed_mud"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:packed_mud"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_fence"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_fence"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_fence"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_fence"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_wall"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_wall"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mud_bricks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mud_bricks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mud_brick_wall_from_mud_bricks_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mud_bricks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mud_brick_wall_from_mud_bricks_stonecutting"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_disc_fragment_5": {
"conditions": {
"items": [
{
"items": [
"wildbackport:disc_fragment_5"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:music_disc_5"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_disc_fragment_5",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:music_disc_5"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_button"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_button"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_door"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_door"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_fence_gate"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_fence_gate"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_pressure_plate"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_pressure_plate"
]
}
}

View file

@ -0,0 +1,34 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_planks": {
"conditions": {
"items": [
{
"items": [
"wildbackport:mangrove_planks"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_trapdoor"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_planks",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_trapdoor"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:acacia_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:acacia_chest_boat"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:birch_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:birch_chest_boat"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:dark_oak_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:dark_oak_chest_boat"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:jungle_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:jungle_chest_boat"
]
}
}

View file

@ -0,0 +1,28 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_boat"
},
"trigger": "minecraft:recipe_unlocked"
},
"in_water": {
"conditions": {
"block": "minecraft:water"
},
"trigger": "minecraft:enter_block"
}
},
"requirements": [
[
"in_water",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_boat"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:mangrove_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:mangrove_chest_boat"
]
}
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_boat": {
"conditions": {
"items": [
{
"tag": "minecraft:boats"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "wildbackport:spruce_chest_boat"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_boat",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"wildbackport:spruce_chest_boat"
]
}
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_button"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"conditions": [
{
"block": "wildbackport:mangrove_door",
"condition": "minecraft:block_state_property",
"properties": {
"half": "lower"
}
}
],
"name": "wildbackport:mangrove_door"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_fence"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_fence_gate"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,79 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:alternative",
"terms": [
{
"condition": "minecraft:match_tool",
"predicate": {
"items": [
"minecraft:shears"
]
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
]
}
],
"name": "wildbackport:mangrove_leaves"
},
{
"type": "minecraft:item",
"conditions": [
{
"chances": [
0.02,
0.022222223,
0.025,
0.033333335,
0.1
],
"condition": "minecraft:table_bonus",
"enchantment": "minecraft:fortune"
}
],
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:stick"
}
]
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_log"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_planks"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_pressure_plate"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,29 @@
{
"type": "minecraft:block",
"functions": [
{
"function": "minecraft:explosion_decay"
}
],
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"block": "wildbackport:mangrove_propagule",
"condition": "minecraft:block_state_property",
"properties": {
"age": "4"
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_propagule"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_roots"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_sign"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,34 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "wildbackport:mangrove_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "wildbackport:mangrove_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_trapdoor"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mangrove_wood"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mud"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,34 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"conditions": [
{
"block": "wildbackport:mud_brick_slab",
"condition": "minecraft:block_state_property",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "wildbackport:mud_brick_slab"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mud_brick_stairs"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mud_brick_wall"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:mud_bricks"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:muddy_mangrove_roots"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:ochre_froglight"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:packed_mud"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:pearlescent_froglight"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:sculk"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:sculk_catalyst"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,30 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:sculk_shrieker"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,124 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"functions": [
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"down": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"up": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"north": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"south": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"west": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"conditions": [
{
"block": "wildbackport:sculk_vein",
"condition": "minecraft:block_state_property",
"properties": {
"east": "true"
}
}
],
"count": 1.0,
"function": "minecraft:set_count"
},
{
"add": true,
"count": -1.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "wildbackport:sculk_vein"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:stripped_mangrove_log"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:stripped_mangrove_wood"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:verdant_froglight"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:entity",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "wildbackport:sculk_catalyst"
}
],
"rolls": 1.0
}
]
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"group": "chest_boat",
"ingredients": [
{
"item": "minecraft:chest"
},
{
"item": "minecraft:acacia_boat"
}
],
"result": {
"item": "wildbackport:acacia_chest_boat"
}
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"group": "chest_boat",
"ingredients": [
{
"item": "minecraft:chest"
},
{
"item": "minecraft:birch_boat"
}
],
"result": {
"item": "wildbackport:birch_chest_boat"
}
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"group": "chest_boat",
"ingredients": [
{
"item": "minecraft:chest"
},
{
"item": "minecraft:dark_oak_boat"
}
],
"result": {
"item": "wildbackport:dark_oak_chest_boat"
}
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"group": "chest_boat",
"ingredients": [
{
"item": "minecraft:chest"
},
{
"item": "minecraft:jungle_boat"
}
],
"result": {
"item": "wildbackport:jungle_chest_boat"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"group": "boat",
"key": {
"#": {
"item": "wildbackport:mangrove_planks"
}
},
"pattern": [
"# #",
"###"
],
"result": {
"item": "wildbackport:mangrove_boat"
}
}

View file

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"group": "wooden_button",
"ingredients": [
{
"item": "wildbackport:mangrove_planks"
}
],
"result": {
"item": "wildbackport:mangrove_button"
}
}

View file

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"group": "chest_boat",
"ingredients": [
{
"item": "minecraft:chest"
},
{
"item": "wildbackport:mangrove_boat"
}
],
"result": {
"item": "wildbackport:mangrove_chest_boat"
}
}

View file

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_door",
"key": {
"#": {
"item": "wildbackport:mangrove_planks"
}
},
"pattern": [
"##",
"##",
"##"
],
"result": {
"count": 3,
"item": "wildbackport:mangrove_door"
}
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_fence",
"key": {
"#": {
"item": "minecraft:stick"
},
"W": {
"item": "wildbackport:mangrove_planks"
}
},
"pattern": [
"W#W",
"W#W"
],
"result": {
"count": 3,
"item": "wildbackport:mangrove_fence"
}
}

Some files were not shown because too many files have changed in this diff Show more