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

@@ -15,6 +15,10 @@ repositories {
maven { url "https://maven.fabricmc.net/" } maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.shedaniel.me/" } maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.nucleoid.xyz/" } maven { url "https://maven.nucleoid.xyz/" }
maven {
name "mod menu"
url "https://maven.terraformersmc.com"
}
} }
dependencies { dependencies {
@@ -27,6 +31,7 @@ dependencies {
modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") { modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") {
exclude(group: "net.fabricmc.fabric-api") exclude(group: "net.fabricmc.fabric-api")
} }
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"
modImplementation include("eu.pb4:placeholder-api:${project.placeholder_api_version}") modImplementation include("eu.pb4:placeholder-api:${project.placeholder_api_version}")
} }

View File

@@ -1,14 +1,14 @@
# Done to increase the memory available to gradle. # Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G org.gradle.jvmargs=-Xmx1G
minecraft_version=1.20 minecraft_version=1.20.1
# Fabric Properties # Fabric Properties
fabric_loader_version=0.14.21 fabric_loader_version=0.14.21
fabric_api_version=0.83.0+1.20 fabric_api_version=0.83.0+1.20.1
# Mod Properties # Mod Properties
mod_version = 1.5.6 mod_version = 1.0.0
maven_group = com.smithy.celestianeconomy maven_group = com.smithy.celestianeconomy
archives_base_name = celestianeconomy archives_base_name = celestianeconomy
@@ -16,3 +16,4 @@ archives_base_name = celestianeconomy
cloth_config_version=11.0.99 cloth_config_version=11.0.99
placeholder_api_version=2.1.1+1.20 placeholder_api_version=2.1.1+1.20
sqlite_version=3.36.0.3 sqlite_version=3.36.0.3
modmenu_version=7.2.2

View File

@@ -21,7 +21,6 @@ import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.Item; import net.minecraft.world.item.Item;
import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks; 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.block.SoundType;
import net.minecraft.world.level.material.MapColor; import net.minecraft.world.level.material.MapColor;
import net.minecraft.world.level.storage.LevelResource; 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 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 @Override
public void onInitialize() { public void onInitialize() {

View File

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

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", "item.celestianeconomy.small_nothing": "Nothing of Note",
"block.celestianeconomy.big_nothing": "Block of Nothing Notes" "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 @@
{ {
"credit": "Made with Blockbench",
"parent": "item/handheld", "parent": "item/handheld",
"textures": { "textures": {
"layer0": "celestianeconomy:item/small_nothing" "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", "name": "CelestianEconomy",
"description": "celestia economy mod", "description": "celestia economy mod",
"authors": [ "authors": [
"Gæmer" "Gæmer",
"WildKitty123"
], ],
"contact": { "contact": {
"homepage": "", "homepage": "",