Initial fixed commit
This commit is contained in:
parent
ecfdcb29a4
commit
165bb307d3
|
|
@ -97,6 +97,21 @@
|
|||
"sha512": "872c2c6562b76fd1b1876871845cf3480bdc47f33305f28144876c0d50a6441f057c9f9bf450385ac64e92d916e918d167d7ca439386f6bd06c27062ba0b2f1d"
|
||||
},
|
||||
"path": "mods/treesmakesound-1.2.1.jar"
|
||||
},
|
||||
{
|
||||
"downloads": [
|
||||
"https://cdn.modrinth.com/data/3rOtjaMW/versions/RnpX7Wfv/fixedminecraft-1.6.1-1.21.1.jar"
|
||||
],
|
||||
"env": {
|
||||
"client": "required",
|
||||
"server": "required"
|
||||
},
|
||||
"fileSize": 7115800,
|
||||
"hashes": {
|
||||
"sha1": "1038c7e8c80a6b8d49076a80c5ba7d3b254189c3",
|
||||
"sha512": "85669d670c218eedb3f3f503904a038b5b678d7ba6081c00ac9f9100d4e4f185402f3252c03387fc9519b24a1389c317f465a9ed15a92a1cc46cb51b8bfb6e2b"
|
||||
},
|
||||
"path": "mods/fixedminecraft-1.6.1-1.21.1.jar"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3 KiB |
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"item.fixedminecraft.netherite_horse_armor": "Dendrite Horse Armour",
|
||||
"block.fixedminecraft.netherite_anvil": "Dendrite Anvil",
|
||||
"block.fixedminecraft.chipped_netherite_anvil": "Chipped Dendrite Anvil",
|
||||
"block.fixedminecraft.damaged_netherite_anvil": "Damaged Dendrite Anvil",
|
||||
"advancements.nether.repair_super_gear.description": "Repair Super Enchanted Gear within a Dendrite Anvil"
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"item.fixedminecraft.netherite_horse_armor": "Dendrite Horse Armor",
|
||||
"block.fixedminecraft.netherite_anvil": "Dendrite Anvil",
|
||||
"block.fixedminecraft.chipped_netherite_anvil": "Chipped Dendrite Anvil",
|
||||
"block.fixedminecraft.damaged_netherite_anvil": "Damaged Dendrite Anvil",
|
||||
"advancements.nether.repair_super_gear.description": "Repair Super Enchanted Gear within a Dendrite Anvil"
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
#version 150
|
||||
|
||||
#moj_import <fog.glsl>
|
||||
|
||||
uniform sampler2D Sampler0;
|
||||
|
||||
uniform vec4 ColorModulator;
|
||||
uniform float FogStart;
|
||||
uniform float FogEnd;
|
||||
uniform vec4 FogColor;
|
||||
|
||||
in float vertexDistance;
|
||||
in vec4 vertexColor;
|
||||
in vec2 texCoord0;
|
||||
|
||||
out vec4 fragColor;
|
||||
|
||||
void main() {
|
||||
vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator;
|
||||
if (color.a < 0.1) {
|
||||
discard;
|
||||
}
|
||||
|
||||
if((color.r < 66/255.0 && color.r > 63/255.0) && (color.g < 66/255.0 && color.g > 63/255.0) && (color.b < 66/255.0 && color.b > 63/255.0)){
|
||||
color = vec4(0.6588, 0.6588, 0.6588, color.a);
|
||||
}
|
||||
|
||||
if(color.r < 42/255.0 && color.r > 40/255.0 && color.g < 42/255.0 && color.g > 40/255.0 && color.b < 42/255.0 && color.b > 40/255.0){
|
||||
color = vec4(0.1059, 0.1059, 0.1059, color.a);
|
||||
}
|
||||
|
||||
fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor);
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"targets": [
|
||||
"fixedminecraft:chainmail_horse_armor",
|
||||
"fixedminecraft:netherite_horse_armor"
|
||||
],
|
||||
"components": {
|
||||
"minecraft:max_stack_size": 16
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "minecraft:smithing_transform",
|
||||
"addition": {
|
||||
"item": "minecraft:netherite_block"
|
||||
},
|
||||
"base": {
|
||||
"item": "minecraft:anvil"
|
||||
},
|
||||
"result": {
|
||||
"count": 1,
|
||||
"id": "fixedminecraft:netherite_anvil"
|
||||
},
|
||||
"template": []
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "minecraft:smithing_transform",
|
||||
"addition": {
|
||||
"item": "minecraft:netherite_ingot"
|
||||
},
|
||||
"base": {
|
||||
"item": "minecraft:diamond_horse_armor"
|
||||
},
|
||||
"result": {
|
||||
"count": 1,
|
||||
"id": "fixedminecraft:netherite_horse_armor"
|
||||
},
|
||||
"template": []
|
||||
}
|
||||
Loading…
Reference in a new issue