Skip to content

Commit d0f0581

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/download-artifact-6
2 parents f45ac1e + 296b596 commit d0f0581

File tree

10 files changed

+28
-8
lines changed

10 files changed

+28
-8
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"variants": {
3+
"": {
4+
"model": "mia:block/sun_stone"
5+
}
6+
}
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "minecraft:block/cube_all",
3+
"textures": {
4+
"all": "mia:block/sun_stone"
5+
}
6+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"parent": "mia:block/sun_stone"
3+
}

src/generated/resources/data/mia/advancement/recipes/building_blocks/polished_abyss_andesite_slab.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"parent": "minecraft:recipes/root",
33
"criteria": {
4-
"has_abyss_andesite": {
4+
"has_polished_abyss_andesite": {
55
"conditions": {
66
"items": [
77
{
8-
"items": "mia:abyss_andesite"
8+
"items": "mia:polished_abyss_andesite"
99
}
1010
]
1111
},
@@ -21,7 +21,7 @@
2121
"requirements": [
2222
[
2323
"has_the_recipe",
24-
"has_abyss_andesite"
24+
"has_polished_abyss_andesite"
2525
]
2626
],
2727
"rewards": {

src/generated/resources/data/mia/advancement/recipes/building_blocks/polished_abyss_andesite_wall.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"parent": "minecraft:recipes/root",
33
"criteria": {
4-
"has_abyss_andesite": {
4+
"has_polished_abyss_andesite": {
55
"conditions": {
66
"items": [
77
{
8-
"items": "mia:abyss_andesite"
8+
"items": "mia:polished_abyss_andesite"
99
}
1010
]
1111
},
@@ -21,7 +21,7 @@
2121
"requirements": [
2222
[
2323
"has_the_recipe",
24-
"has_abyss_andesite"
24+
"has_polished_abyss_andesite"
2525
]
2626
],
2727
"rewards": {

src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"mia:prasiolite_lamptube",
5959
"mia:pedestal",
6060
"mia:artifact_smithing_table",
61-
"mia:endless_cup"
61+
"mia:endless_cup",
62+
"mia:sun_stone"
6263
]
6364
}

src/main/java/com/altnoir/mia/datagen/MiaBlockStateProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ protected void registerStatesAndModels() {
4444
coverGrassBlock(MiaBlocks.COVERGRASS_ABYSS_ANDESITE, MiaBlocks.ABYSS_ANDESITE);
4545
coverGrassBlock(MiaBlocks.COVERGRASS_TUFF, Blocks.TUFF);
4646
mirroredBlock(MiaBlocks.ABYSS_ANDESITE);
47+
blockWithItem(MiaBlocks.SUN_STONE);
4748
// 深界安山岩
4849
stairsBlockWithItem(MiaBlocks.ABYSS_ANDESITE_STAIRS, MiaBlocks.ABYSS_ANDESITE);
4950
slabBlockWithItem(MiaBlocks.ABYSS_ANDESITE_SLAB, MiaBlocks.ABYSS_ANDESITE);

src/main/java/com/altnoir/mia/datagen/MiaBlockTagProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ protected void addTags(HolderLookup.Provider provider) {
174174
.add(MiaBlocks.PRASIOLITE_LAMPTUBE.get())
175175
.add(MiaBlocks.PEDESTAL.get())
176176
.add(MiaBlocks.ARTIFACT_SMITHING_TABLE.get())
177-
.add(MiaBlocks.ENDLESS_CUP.get());
177+
.add(MiaBlocks.ENDLESS_CUP.get())
178+
.add(MiaBlocks.SUN_STONE.get());
178179

179180
// tag(BlockTags.MINEABLE_WITH_SHOVEL)
180181
// .add(MiaBlocks.HOPPER_FARMLAND.get());

src/main/resources/assets/mia/lang/zh_cn.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
"block.mia.abyss_spawner": "深渊刷怪笼",
106106
"block.mia.endless_cup": "无尽水杯",
107107
"block.mia.artifact_smithing_table": "遗物锻造台",
108+
"block.mia.sun_stone": "太阳石",
108109

109110
"container.mia.artifact.smithing.title": "遗物锻造台",
110111

651 Bytes
Loading

0 commit comments

Comments
 (0)