perfectly ready 1.0 release i fucking hope

This commit is contained in:
Gæmer
2025-05-15 00:40:01 +02:00
parent 5d5856fbc4
commit 5d1fe3748e
15 changed files with 2183 additions and 41 deletions

View File

@@ -21,7 +21,6 @@ import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.Item;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.RotatedPillarBlock;
import net.minecraft.world.level.block.SoundType;
import net.minecraft.world.level.material.MapColor;
import net.minecraft.world.level.storage.LevelResource;
@@ -84,7 +83,7 @@ public class CelestianEconomy implements ModInitializer {
}
public static final Item SMALL_NOTHING = new Item(new Item.Properties().fireResistant());
public static final Block BIG_NOTHING_BLOCK = new RotatedPillarBlock(FabricBlockSettings.copyOf(Blocks.HAY_BLOCK).sounds(SoundType.GRASS).mapColor(MapColor.COLOR_LIGHT_GREEN));
public static final Block BIG_NOTHING_BLOCK = new Block(FabricBlockSettings.copyOf(Blocks.HAY_BLOCK).sounds(SoundType.GRASS).mapColor(MapColor.COLOR_LIGHT_GREEN));
@Override
public void onInitialize() {

View File

@@ -1,16 +1,5 @@
{
"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
}
}
}
"variants": {
"": { "model": "celestianeconomy:block/big_nothing" }
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 105 KiB

View File

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

View File

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

View File

@@ -1,6 +1,34 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "celestianeconomy:item/small_nothing"
}
"credit": "Made with Blockbench",
"parent": "item/handheld",
"textures": {
"layer0": "celestianeconomy:item/small_nothing"
},
"display": {
"thirdperson_righthand": {
"rotation": [0, 90, 0],
"scale": [0.5, 0.5, 0.5]
},
"thirdperson_lefthand": {
"rotation": [0, 90, 0],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_righthand": {
"rotation": [0, 90, 0],
"translation": [1, 1, 1],
"scale": [0.5, 0.5, 0.5]
},
"firstperson_lefthand": {
"rotation": [0, 90, 0],
"scale": [0.5, 0.5, 0.5]
},
"ground": {
"translation": [0, 0, 1],
"scale": [0.5, 0.5, 0.5]
},
"head": {
"rotation": [90, 0, 0],
"translation": [0, 7, 0]
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 946 B

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "celestianeconomy:big_nothing"
}
],
"rolls": 1.0
}
],
"random_sequence": "celestianeconomy:blocks/big_nothing"
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"###",
"###"
],
"key": {
"#": {
"item": "celestianeconomy:small_nothing"
}
},
"result": {
"item": "celestianeconomy:big_nothing",
"count": 1
}
}

View File

@@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "celestianeconomy:big_nothing"
}
],
"result": {
"count": 9,
"item": "celestianeconomy:small_nothing"
}
}

View File

@@ -6,7 +6,8 @@
"name": "CelestianEconomy",
"description": "celestia economy mod",
"authors": [
"Gæmer"
"Gæmer",
"WildKitty123"
],
"contact": {
"homepage": "",