mirror of
https://github.com/TeamMidnightDust/VisualOverhaul.git
synced 2025-12-17 06:15:09 +01:00
VisualOverhaul 3.0.0 - Puddles & Colors
Switched to MidnightConfig (No need to seperately download AutoConfig & ClothConfig anymore) Adds puddles which spawn during rain and can be used to fill a water bottle. (Game rule: "puddleSpawnRate") Also, snow layers can now pile up during snow storms. (Game rule: "snowStackChance") Items which are colored in their block form also show the color corresponding to the biome as an item. (Toggleable via config)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "visualoverhaul:block/puddle"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,10 @@
|
||||
{
|
||||
"text.autoconfig.visualoverhaul.title":"Visual Overhaul Config",
|
||||
"text.autoconfig.visualoverhaul.option.brewingstand":"Enable Brewing Stand Enhancements",
|
||||
"text.autoconfig.visualoverhaul.option.jukebox":"Enable Jukebox Enhancements",
|
||||
"text.autoconfig.visualoverhaul.option.jukebox_fake_block":"Enable fake block on jukebox top",
|
||||
"text.autoconfig.visualoverhaul.option.furnace":"Enable Furnace Enhancements"
|
||||
"visualoverhaul.midnightconfig.title":"Visual Overhaul Config",
|
||||
"visualoverhaul.midnightconfig.brewingstand":"Enable Brewing Stand Enhancements",
|
||||
"visualoverhaul.midnightconfig.jukebox":"Enable Jukebox Enhancements",
|
||||
"visualoverhaul.midnightconfig.jukebox_fake_block":"Enable fake block on jukebox top",
|
||||
"visualoverhaul.midnightconfig.furnace":"Enable Furnace Enhancements",
|
||||
"visualoverhaul.midnightconfig.coloredItems":"Enable biome-based item colors",
|
||||
"visualoverhaul.midnightconfig.coloredItems.tooltip":"Needs restart!",
|
||||
"block.visualoverhaul.puddle":"Puddle"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "block/water_still"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "block/water_still",
|
||||
"particle": "block/water_still"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 1, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 1], "texture": "#0", "tintindex": 0},
|
||||
"east": {"uv": [0, 0, 16, 1], "texture": "#0", "tintindex": 0},
|
||||
"south": {"uv": [0, 0, 16, 1], "texture": "#0", "tintindex": 0},
|
||||
"west": {"uv": [0, 0, 16, 1], "texture": "#0", "tintindex": 0},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "tintindex": 0},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "tintindex": 0}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -20,6 +20,9 @@
|
||||
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"eu.midnightdust.visualoverhaul.VisualOverhaul"
|
||||
],
|
||||
"client": [
|
||||
"eu.midnightdust.visualoverhaul.VisualOverhaulClient"
|
||||
],
|
||||
@@ -34,7 +37,6 @@
|
||||
|
||||
"depends": {
|
||||
"fabric": ">=0.28.4",
|
||||
"autoconfig1u": "*",
|
||||
"cloth-config2": "*"
|
||||
"minecraft": "1.16.x"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer1": "item/water_bucket_overlay",
|
||||
"layer0": "item/water_bucket"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 252 B |
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 6,
|
||||
"description": "Makes the water bucket also change it's color based on biome color"
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/resourcepacks/coloredwaterbucket/pack.png
Normal file
BIN
src/main/resources/resourcepacks/coloredwaterbucket/pack.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 408 B |
@@ -5,7 +5,8 @@
|
||||
"mixins": [
|
||||
"MixinBrewingStandBlockEntity",
|
||||
"MixinJukeboxBlockEntity",
|
||||
"MixinAbstractFurnaceBlockEntity"
|
||||
"MixinAbstractFurnaceBlockEntity",
|
||||
"MixinServerWorld"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
|
||||
Reference in New Issue
Block a user