UPDATE: 1.4.2

This commit is contained in:
nimsolated
2026-03-14 02:13:41 -07:00
parent 897df326e5
commit 58d8942ed2
67 changed files with 1618 additions and 13 deletions

View File

@@ -0,0 +1,28 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.properties.BlockSetType;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.ButtonBlock;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberButtonBlock extends ButtonBlock {
public RubberButtonBlock() {
super(BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(2f, 3f), BlockSetType.OAK, 30, true);
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -0,0 +1,27 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.FenceBlock;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberFenceBlock extends FenceBlock {
public RubberFenceBlock() {
super(BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(2f, 3f).forceSolidOn());
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -0,0 +1,28 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.WoodType;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.FenceGateBlock;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberFenceGateBlock extends FenceGateBlock {
public RubberFenceGateBlock() {
super(BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(2f, 3f).forceSolidOn(), WoodType.OAK);
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -0,0 +1,28 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.properties.BlockSetType;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.PressurePlateBlock;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberPressurePlateBlock extends PressurePlateBlock {
public RubberPressurePlateBlock() {
super(Sensitivity.EVERYTHING, BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(2f, 3f).forceSolidOn(), BlockSetType.OAK);
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -0,0 +1,27 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.SlabBlock;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberSlabBlock extends SlabBlock {
public RubberSlabBlock() {
super(BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(2f, 3f));
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -0,0 +1,38 @@
package net.mcreator.nimsrandombullshit.block;
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.StairBlock;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.core.Direction;
import net.minecraft.core.BlockPos;
public class RubberStairsBlock extends StairBlock {
public RubberStairsBlock() {
super(() -> Blocks.AIR.defaultBlockState(), BlockBehaviour.Properties.of().ignitedByLava().instrument(NoteBlockInstrument.BASS).sound(SoundType.WOOD).strength(3f, 2f));
}
@Override
public float getExplosionResistance() {
return 2f;
}
@Override
public boolean isRandomlyTicking(BlockState state) {
return false;
}
@Override
public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) {
return 0;
}
@Override
public int getFlammability(BlockState state, BlockGetter world, BlockPos pos, Direction face) {
return 5;
}
}

View File

@@ -31,9 +31,4 @@ public class PassiveIncomeEnchantmentEnchantment extends Enchantment {
public int getMaxLevel() {
return 5;
}
@Override
public boolean isTreasureOnly() {
return true;
}
}

View File

@@ -0,0 +1,38 @@
package net.mcreator.nimsrandombullshit.recipes.brewing;
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.common.brewing.IBrewingRecipe;
import net.minecraftforge.common.brewing.BrewingRecipeRegistry;
import net.minecraft.world.item.crafting.Ingredient;
import net.minecraft.world.item.Items;
import net.minecraft.world.item.ItemStack;
@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)
public class DragonBreathRecipeBrewingRecipe implements IBrewingRecipe {
@SubscribeEvent
public static void init(FMLCommonSetupEvent event) {
event.enqueueWork(() -> BrewingRecipeRegistry.addRecipe(new DragonBreathRecipeBrewingRecipe()));
}
@Override
public boolean isInput(ItemStack input) {
return Ingredient.of(new ItemStack(Items.GLASS_BOTTLE)).test(input);
}
@Override
public boolean isIngredient(ItemStack ingredient) {
return Ingredient.of(new ItemStack(Items.CHORUS_FRUIT)).test(ingredient);
}
@Override
public ItemStack getOutput(ItemStack input, ItemStack ingredient) {
if (isInput(input) && isIngredient(ingredient)) {
return new ItemStack(Items.DRAGON_BREATH);
}
return ItemStack.EMPTY;
}
}

View File

@@ -0,0 +1,40 @@
package net.mcreator.nimsrandombullshit.recipes.brewing;
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.common.brewing.IBrewingRecipe;
import net.minecraftforge.common.brewing.BrewingRecipeRegistry;
import net.minecraft.world.item.crafting.Ingredient;
import net.minecraft.world.item.Items;
import net.minecraft.world.item.ItemStack;
import net.mcreator.nimsrandombullshit.init.NimsRandomBullshitModItems;
@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)
public class ExperienceBottleRecipeBrewingRecipe implements IBrewingRecipe {
@SubscribeEvent
public static void init(FMLCommonSetupEvent event) {
event.enqueueWork(() -> BrewingRecipeRegistry.addRecipe(new ExperienceBottleRecipeBrewingRecipe()));
}
@Override
public boolean isInput(ItemStack input) {
return Ingredient.of(new ItemStack(Items.GLASS_BOTTLE)).test(input);
}
@Override
public boolean isIngredient(ItemStack ingredient) {
return Ingredient.of(new ItemStack(NimsRandomBullshitModItems.MAGIC_DUST.get())).test(ingredient);
}
@Override
public ItemStack getOutput(ItemStack input, ItemStack ingredient) {
if (isInput(input) && isIngredient(ingredient)) {
return new ItemStack(Items.EXPERIENCE_BOTTLE);
}
return ItemStack.EMPTY;
}
}

View File

@@ -4,11 +4,12 @@ license="Academic Free License v3.0"
[[mods]]
modId="nims_random_bullshit"
version="1.0.0"
version="1.4.2"
displayName="Nim's Random Bullshit"
displayURL="https://mcreator.net"
credits="Created using mod maker MCreator - https://mcreator.net/about"
authors="nimsolated, MCreator"
description="Random shit added by Nim. Created with MCreator."
# Start of user code block mod configuration
# End of user code block mod configuration

View File

@@ -0,0 +1,118 @@
{
"variants": {
"face=floor,facing=east,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"y": 90
},
"face=floor,facing=west,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"y": 270
},
"face=floor,facing=south,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"y": 180
},
"face=floor,facing=north,powered=false": {
"model": "nims_random_bullshit:block/rubber_button"
},
"face=wall,facing=east,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"uvlock": true,
"x": 90,
"y": 90
},
"face=wall,facing=west,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"uvlock": true,
"x": 90,
"y": 270
},
"face=wall,facing=south,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"uvlock": true,
"x": 90,
"y": 180
},
"face=wall,facing=north,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"uvlock": true,
"x": 90
},
"face=ceiling,facing=east,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"x": 180,
"y": 270
},
"face=ceiling,facing=west,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"x": 180,
"y": 90
},
"face=ceiling,facing=south,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"x": 180
},
"face=ceiling,facing=north,powered=false": {
"model": "nims_random_bullshit:block/rubber_button",
"x": 180,
"y": 180
},
"face=floor,facing=east,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"y": 90
},
"face=floor,facing=west,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"y": 270
},
"face=floor,facing=south,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"y": 180
},
"face=floor,facing=north,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed"
},
"face=wall,facing=east,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"uvlock": true,
"x": 90,
"y": 90
},
"face=wall,facing=west,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"uvlock": true,
"x": 90,
"y": 270
},
"face=wall,facing=south,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"uvlock": true,
"x": 90,
"y": 180
},
"face=wall,facing=north,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"uvlock": true,
"x": 90
},
"face=ceiling,facing=east,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"x": 180,
"y": 270
},
"face=ceiling,facing=west,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"x": 180,
"y": 90
},
"face=ceiling,facing=south,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"x": 180
},
"face=ceiling,facing=north,powered=true": {
"model": "nims_random_bullshit:block/rubber_button_pressed",
"x": 180,
"y": 180
}
}
}

View File

@@ -0,0 +1,48 @@
{
"multipart": [
{
"apply": {
"model": "nims_random_bullshit:block/rubber_fence_post"
}
},
{
"when": {
"north": "true"
},
"apply": {
"model": "nims_random_bullshit:block/rubber_fence",
"uvlock": true
}
},
{
"when": {
"south": "true"
},
"apply": {
"model": "nims_random_bullshit:block/rubber_fence",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "true"
},
"apply": {
"model": "nims_random_bullshit:block/rubber_fence",
"y": 270,
"uvlock": true
}
},
{
"when": {
"east": "true"
},
"apply": {
"model": "nims_random_bullshit:block/rubber_fence",
"y": 90,
"uvlock": true
}
}
]
}

View File

@@ -0,0 +1,80 @@
{
"variants": {
"facing=south,in_wall=false,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate",
"uvlock": true
},
"facing=west,in_wall=false,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate",
"uvlock": true,
"y": 90
},
"facing=north,in_wall=false,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate",
"uvlock": true,
"y": 180
},
"facing=east,in_wall=false,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate",
"uvlock": true,
"y": 270
},
"facing=south,in_wall=false,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_open",
"uvlock": true
},
"facing=west,in_wall=false,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_open",
"uvlock": true,
"y": 90
},
"facing=north,in_wall=false,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_open",
"uvlock": true,
"y": 180
},
"facing=east,in_wall=false,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_open",
"uvlock": true,
"y": 270
},
"facing=south,in_wall=true,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall",
"uvlock": true
},
"facing=west,in_wall=true,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall",
"uvlock": true,
"y": 90
},
"facing=north,in_wall=true,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall",
"uvlock": true,
"y": 180
},
"facing=east,in_wall=true,open=false": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall",
"uvlock": true,
"y": 270
},
"facing=south,in_wall=true,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall_open",
"uvlock": true
},
"facing=west,in_wall=true,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall_open",
"uvlock": true,
"y": 90
},
"facing=north,in_wall=true,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall_open",
"uvlock": true,
"y": 180
},
"facing=east,in_wall=true,open=true": {
"model": "nims_random_bullshit:block/rubber_fence_gate_wall_open",
"uvlock": true,
"y": 270
}
}
}

View File

@@ -0,0 +1,10 @@
{
"variants": {
"powered=false": {
"model": "nims_random_bullshit:block/rubber_pressure_plate"
},
"powered=true": {
"model": "nims_random_bullshit:block/rubber_pressure_plate_down"
}
}
}

View File

@@ -0,0 +1,13 @@
{
"variants": {
"type=bottom": {
"model": "nims_random_bullshit:block/rubber_slab"
},
"type=top": {
"model": "nims_random_bullshit:block/rubber_slab_top"
},
"type=double": {
"model": "nims_random_bullshit:block/rubber_slab_full"
}
}
}

View File

@@ -0,0 +1,209 @@
{
"variants": {
"facing=east,half=bottom,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs"
},
"facing=west,half=bottom,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"y": 270,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner"
},
"facing=west,half=bottom,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner"
},
"facing=north,half=bottom,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"x": 180,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=top,shape=straight": {
"model": "nims_random_bullshit:block/rubber_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=top,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=top,shape=inner_left": {
"model": "nims_random_bullshit:block/rubber_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer"
},
"facing=west,half=bottom,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer"
},
"facing=north,half=bottom,shape=outer_left": {
"model": "nims_random_bullshit:block/rubber_stairs_outer",
"y": 180,
"uvlock": true
}
}
}

View File

@@ -8,11 +8,13 @@
"gui.nims_random_bullshit.label_copy_machine_gui.button_copy": "Copy",
"gui.nims_random_bullshit.mailbox_gui.outbox_x_coord": "0",
"block.nims_random_bullshit.broken_glass": "Broken Glass",
"block.nims_random_bullshit.rubber_fence": "Rubber Fence",
"block.nims_random_bullshit.label_copy_machine": "Label Copy Machine",
"effect.nims_random_bullshit.summoned_entity_effect": "Summoned Entity",
"block.nims_random_bullshit.rubber_slab": "Rubber Slab",
"gui.nims_random_bullshit.mailbox_name_entry_gui.mailbox_name_field": "",
"item.nims_random_bullshit.ghoul_spawn_egg": "Ghoul Spawn Egg",
"item.nims_random_bullshit.shipping_label": "Shipping Label",
"item.nims_random_bullshit.ghoul_spawn_egg": "Ghoul Spawn Egg",
"gui.nims_random_bullshit.mailbox_gui.label_y": "Y:",
"gui.nims_random_bullshit.mailbox_gui.label_z": "Z:",
"item.nims_random_bullshit.tux_spawn_egg": "Tux Spawn Egg",
@@ -21,6 +23,7 @@
"item.nims_random_bullshit.lapis_lazuli_nugget": "Lapis Lazuli Nugget",
"item.nims_random_bullshit.gravedigger.description_1": "We must dig!",
"item.nims_random_bullshit.gravedigger.description_0": "Right-Click on soul sand or soul soil to use them, summoning a ghoul that attacks hostile mobs.",
"block.nims_random_bullshit.rubber_fence_gate": "Rubber Fence Gate",
"gui.nims_random_bullshit.label_copy_machine_gui.tooltip_ink_sac_slot": "Ink Sac Slot",
"gui.nims_random_bullshit.label_copy_machine_gui.tooltip_paper_slot": "Paper Slot",
"block.nims_random_bullshit.mailbox": "Mailbox",
@@ -40,7 +43,9 @@
"block.nims_random_bullshit.hexa_condensed_netherrack": "Hexa-condensed Netherrack",
"block.nims_random_bullshit.ore_miner": "Ore Miner",
"gui.nims_random_bullshit.mailbox_gui.label_outbox": "Outbox",
"block.nims_random_bullshit.rubber_stairs": "Rubber Stairs",
"block.nims_random_bullshit.netherrack_juice": "Netherrack Juice",
"block.nims_random_bullshit.rubber_button": "Rubber Button",
"item.nims_random_bullshit.sand_dust": "Sand Dust",
"entity.nims_random_bullshit.tux": "Tux",
"item.nims_random_bullshit.magic_flesh": "Magic Flesh",
@@ -51,6 +56,7 @@
"entity.nims_random_bullshit.ghoul": "Ghoul",
"item.nims_random_bullshit.star": "Star",
"gui.nims_random_bullshit.shit_gui.label_uh_ohh_stinky": "UH OHH!!! STINKY!!! UH OHH!!! STINKY!!! UH OHH!!! STINKY!!! UH OHH!!! STINKY!!! ",
"block.nims_random_bullshit.rubber_pressure_plate": "Rubber Pressure Plate",
"item.nims_random_bullshit.shit": "Shit",
"block.nims_random_bullshit.condensed_netherrack": "Condensed Netherrack",
"gui.nims_random_bullshit.label_copy_machine_gui.tooltip_shipping_label_slot": "Shipping Label Slot",

View File

@@ -0,0 +1,8 @@
{
"parent": "block/button",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/button_inventory",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/button_pressed",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/fence_side",
"textures": {
"texture": "nims_random_bullshit:block/rubber_planks",
"particle": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/template_fence_gate",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/template_fence_gate_open",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/template_fence_gate_wall",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/template_fence_gate_wall_open",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/fence_inventory",
"textures": {
"texture": "nims_random_bullshit:block/rubber_planks",
"particle": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/fence_post",
"textures": {
"texture": "nims_random_bullshit:block/rubber_planks",
"particle": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/pressure_plate_up",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,8 @@
{
"parent": "block/pressure_plate_down",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"texture": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/slab",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/cube_bottom_top",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/slab_top",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/stairs",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/inner_stairs",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,10 @@
{
"parent": "block/outer_stairs",
"textures": {
"particle": "nims_random_bullshit:block/rubber_planks",
"bottom": "nims_random_bullshit:block/rubber_planks",
"top": "nims_random_bullshit:block/rubber_planks",
"side": "nims_random_bullshit:block/rubber_planks"
},
"render_type": "solid"
}

View File

@@ -0,0 +1,4 @@
{
"replace": false,
"values": []
}

View File

@@ -0,0 +1,4 @@
{
"replace": false,
"values": []
}

View File

@@ -0,0 +1,4 @@
{
"replace": false,
"values": []
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_button",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_button"
}
]
}
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_fence",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_fence"
}
]
}
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_fence_gate",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_fence_gate"
}
]
}
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_pressure_plate",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_pressure_plate"
}
]
}
]
}

View File

@@ -0,0 +1,33 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_slab",
"pools": [
{
"rolls": 1.0,
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_slab",
"functions": [
{
"conditions": [
{
"condition": "minecraft:block_state_property",
"block": "nims_random_bullshit:rubber_slab",
"properties": {
"type": "double"
}
}
],
"count": 2.0,
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
]
}
]
}
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"random_sequence": "nims_random_bullshit:blocks/rubber_stairs",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "nims_random_bullshit:rubber_stairs"
}
]
}
]
}

View File

@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "minecraft:charcoal"
}
],
"result": {
"item": "minecraft:gunpowder",
"count": 1
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"pattern": [
"aaa",
"a a",
"aaa"
],
"key": {
"a": {
"item": "minecraft:iron_bars"
}
},
"result": {
"item": "minecraft:spawner",
"count": 1
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": [
"aaa"
],
"key": {
"a": {
"item": "minecraft:rabbit_hide"
}
},
"result": {
"item": "minecraft:rabbit_foot",
"count": 1
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "minecraft:leather"
}
],
"result": {
"item": "minecraft:rabbit_hide",
"count": 2
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"group": "wooden_button",
"category": "redstone",
"ingredients": [
{
"item": "nims_random_bullshit:rubber_planks"
}
],
"result": {
"item": "nims_random_bullshit:rubber_button",
"count": 1
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_fence_gate",
"category": "redstone",
"pattern": [
"aba",
"aba"
],
"key": {
"a": {
"item": "minecraft:stick"
},
"b": {
"item": "nims_random_bullshit:rubber_planks"
}
},
"result": {
"item": "nims_random_bullshit:rubber_fence_gate",
"count": 1
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_fence",
"category": "misc",
"pattern": [
"aba",
"aba"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_planks"
},
"b": {
"item": "minecraft:stick"
}
},
"result": {
"item": "nims_random_bullshit:rubber_fence",
"count": 3
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"group": "planks",
"category": "building",
"ingredients": [
{
"item": "nims_random_bullshit:rubber_log"
}
],
"result": {
"item": "nims_random_bullshit:rubber_planks",
"count": 4
}
}

View File

@@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shapeless",
"group": "planks",
"category": "building",
"ingredients": [
{
"item": "nims_random_bullshit:rubber_wood"
}
],
"result": {
"item": "nims_random_bullshit:rubber_planks",
"count": 4
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_pressure_plate",
"category": "redstone",
"pattern": [
"aa"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_planks"
}
},
"result": {
"item": "nims_random_bullshit:rubber_pressure_plate",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_slab",
"category": "building",
"pattern": [
"aaa"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_planks"
}
},
"result": {
"item": "nims_random_bullshit:rubber_slab",
"count": 6
}
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"group": "wooden_stairs",
"category": "building",
"pattern": [
"a ",
"aa ",
"aaa"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_planks"
}
},
"result": {
"item": "nims_random_bullshit:rubber_stairs",
"count": 4
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"group": "sticks",
"category": "misc",
"pattern": [
"a",
"a"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_planks"
}
},
"result": {
"item": "minecraft:stick",
"count": 4
}
}

View File

@@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"group": "bark",
"category": "building",
"pattern": [
"aa",
"aa"
],
"key": {
"a": {
"item": "nims_random_bullshit:rubber_log"
}
},
"result": {
"item": "nims_random_bullshit:rubber_wood",
"count": 3
}
}

View File

@@ -1,6 +1,6 @@
{
"pack": {
"pack_format": 15,
"description": ""
"description": "Random shit added by Nim. Created with MCreator."
}
}