
The Plushie Blocks Mod allows users to create custom plushie blocks with their own textures, sounds, and descriptions. Personalize your Minecraft world with unique plushies by simply adding a texture file and updating the configuration file.
Add Your Texture:
config/plushified/textures folder.Update Configuration File:
config/plushified/config.json5 file."your_plushie_name": {
"texture": "your_texture_name",
"soundEvent": "your_sound_event",
"descriptionText": "your_description"
}
Example:
"cup_plushie": {
"texture": "cup_plushie",
"soundEvent": "minecraft:block.mud.hit",
"descriptionText": "It's only been a week, but it feels like a year."
}Here is an example configuration with multiple plushies:
{
"cup_plushie": {
"texture": "cup_plushie",
"soundEvent": "minecraft:block.mud.hit",
"descriptionText": "It's only been a week, but it feels like a year."
},
"bear_plushie": {
"texture": "bear_plushie",
"soundEvent": "minecraft:block.wood.hit",
"descriptionText": "A cuddly bear plushie."
},
"cat_plushie": {
"texture": "cat_plushie",
"soundEvent": "minecraft:block.wool.hit",
"descriptionText": "A cute cat plushie to keep you company."
}
}
config/textures folder.config/plushified/config.json5 file to add your plushie configurations.