mirror of
https://github.com/TeamMidnightDust/Puddles.git
synced 2025-12-16 20:15:10 +01:00
Puddles 1.0.0
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "puddles:block/puddle"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/puddles/icon.png
Normal file
BIN
src/main/resources/assets/puddles/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
3
src/main/resources/assets/puddles/lang/en_us.json
Normal file
3
src/main/resources/assets/puddles/lang/en_us.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"block.puddles.puddle":"Puddle"
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"credit": "made by Motschen",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"particle": "block/water_still"
|
||||
}
|
||||
}
|
||||
22
src/main/resources/assets/puddles/models/item/puddle.json
Normal file
22
src/main/resources/assets/puddles/models/item/puddle.json
Normal 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}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
34
src/main/resources/fabric.mod.json
Normal file
34
src/main/resources/fabric.mod.json
Normal 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"
|
||||
]
|
||||
}
|
||||
11
src/main/resources/puddles.mixins.json
Normal file
11
src/main/resources/puddles.mixins.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "eu.midnightdust.puddles.mixin",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"mixins": [
|
||||
"MixinServerWorld"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user