Puddles 1.0.0

This commit is contained in:
Motschen
2021-03-30 20:13:33 +02:00
parent 1acdc65fd6
commit 0342b5f312
20 changed files with 817 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "puddles:block/puddle"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1,3 @@
{
"block.puddles.puddle":"Puddle"
}

View File

@@ -0,0 +1,7 @@
{
"credit": "made by Motschen",
"parent": "block/block",
"textures": {
"particle": "block/water_still"
}
}

View File

@@ -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}
}
}
]
}

View File

@@ -0,0 +1,34 @@
{
"schemaVersion": 1,
"id": "puddles",
"version": "${version}",
"name": "Puddles",
"description": "Adds puddles. Compatible with your favorite shaderpacks & mods!",
"authors": [
"Motschen",
"TeamMidnightDust"
],
"contact": {
"homepage": "https://www.midnightdust.eu/",
"sources": "https://github.com/TeamMidnightDust/Puddles",
"issues": "https://github.com/TeamMidnightDust/Puddles/issues"
},
"license": "MIT",
"icon": "assets/puddles/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"eu.midnightdust.puddles.Puddles"
],
"client": [
"eu.midnightdust.puddles.PuddlesClient"
]
},
"mixins": [
"puddles.mixins.json"
]
}

View File

@@ -0,0 +1,11 @@
{
"required": true,
"package": "eu.midnightdust.puddles.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
"MixinServerWorld"
],
"injectors": {
"defaultRequire": 1
}
}