This commit is contained in:
Gæmer
2025-05-06 18:08:09 +02:00
parent 701912347f
commit 5d5856fbc4
31 changed files with 271 additions and 211 deletions

View File

@@ -0,0 +1,16 @@
{
"variants": {
"axis=y": {
"model": "celestianeconomy:block/big_nothing"
},
"axis=z": {
"model": "celestianeconomy:block/big_nothing",
"x": 90
},
"axis=x": {
"model": "celestianeconomy:block/big_nothing",
"x": 90,
"y": 90
}
}
}

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,4 @@
{
"item.celestianeconomy.small_nothing": "Nothing Note",
"block.celestianeconomy.big_nothing": "Block of Nothing Notes"
}

View File

@@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column",
"textures": {
"end": "celestianeconomy:block/big_nothing_top",
"side": "celestianeconomy:block/big_nothing"
}
}

View File

@@ -0,0 +1,7 @@
{
"parent": "minecraft:block/cube_column_horizontal",
"textures": {
"end": "celestianeconomy:block/big_nothing_top",
"side": "celestianeconomy:block/big_nothing"
}
}

View File

@@ -0,0 +1,3 @@
{
"parent": "celestianeconomy:block/big_nothing"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "celestianeconomy:item/small_nothing"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -1,10 +1,10 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.gmail.sneakdevs.diamondeconomy.mixin",
"package": "com.smithy.celestianeconomy.mixin",
"compatibilityLevel": "JAVA_8",
"mixins": [
"PlayerListMixin_DiamondEconomy",
"PlayerListMixin_CelestianEconomy",
"ServerPlayerMixin"
],
"injectors": {

View File

@@ -1,12 +1,12 @@
{
"schemaVersion": 1,
"id": "diamondeconomy",
"id": "celestianeconomy",
"version": "${version}",
"name": "Diamond Economy",
"description": "Serverside economy mod with diamonds",
"name": "CelestianEconomy",
"description": "celestia economy mod",
"authors": [
"IAmSneak"
"Gæmer"
],
"contact": {
"homepage": "",
@@ -18,11 +18,11 @@
"environment": "*",
"entrypoints": {
"main": [
"com.gmail.sneakdevs.diamondeconomy.DiamondEconomy"
"com.smithy.celestianeconomy.CelestianEconomy"
]
},
"mixins": [
"diamondeconomy.mixins.json"
"celestianeconomy.mixins.json"
],
"depends": {
"fabricloader": ">=0.7.4",