Skip to content

Commit 86286fe

Browse files
committed
UD-260203
1 parent 5d2caec commit 86286fe

37 files changed

Lines changed: 658 additions & 130 deletions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mae_version=1.0.2
2525
mod_id=mia
2626
mod_name=Memento In Abyss
2727
mod_license=MIT
28-
mod_version=0.1.0-alpha.15
28+
mod_version=0.1.0-alpha.16
2929
mod_group_id=com.altnoir.mia
3030
mod_authors=Altnoir, lonelyicer, zljtt, zhaijineet
3131
mod_description=Memento In Abyss.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"variants": {
3+
"half=lower": {
4+
"model": "mia:block/reed_bottom"
5+
},
6+
"half=upper": {
7+
"model": "mia:block/reed_top"
8+
}
9+
}
10+
}

src/generated/resources/assets/mia/lang/en_us.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
"block.mia.prasiolite_block": "Prasiolite Block",
8484
"block.mia.prasiolite_cluster": "Prasiolite Cluster",
8585
"block.mia.prasiolite_lamptube": "Prasiolite Lamptube",
86+
"block.mia.reed": "Reed",
8687
"block.mia.rope": "Rope",
8788
"block.mia.skyfog_button": "Skyfog Button",
8889
"block.mia.skyfog_door": "Skyfog Door",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "minecraft:block/cross",
3+
"render_type": "minecraft:cutout",
4+
"textures": {
5+
"cross": "mia:block/reed_bottom"
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "minecraft:block/cross",
3+
"render_type": "minecraft:cutout",
4+
"textures": {
5+
"cross": "mia:block/reed_top"
6+
}
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "minecraft:item/generated",
3+
"textures": {
4+
"layer0": "mia:block/reed_top"
5+
}
6+
}

src/generated/resources/data/mia/dimension/the_abyss.json

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,41 @@
44
"type": "minecraft:noise",
55
"biome_source": {
66
"type": "mia:the_abyss",
7-
"abyss_biome": "mia:the_abyss/the_abyss",
7+
"abyss_biomes": [
8+
{
9+
"biome": "mia:the_abyss/the_abyss",
10+
"parameters": {
11+
"continentalness": 0.0,
12+
"depth": [
13+
0.0,
14+
1.9
15+
],
16+
"erosion": 0.0,
17+
"humidity": [
18+
-1.0,
19+
1.0
20+
],
21+
"offset": 0.0,
22+
"temperature": 0.8,
23+
"weirdness": 0.0
24+
}
25+
},
26+
{
27+
"biome": "mia:the_abyss/inverted_forest",
28+
"parameters": {
29+
"continentalness": 0.0,
30+
"depth": 2.0,
31+
"erosion": 0.0,
32+
"humidity": [
33+
-1.0,
34+
1.0
35+
],
36+
"offset": 0.0,
37+
"temperature": 0.8,
38+
"weirdness": 0.0
39+
}
40+
}
41+
],
842
"biomes": [
943
{
1044
"biome": "mia:the_abyss/skyfog_forest",
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"type": "minecraft:block",
3+
"pools": [
4+
{
5+
"bonus_rolls": 0.0,
6+
"conditions": [
7+
{
8+
"condition": "minecraft:survives_explosion"
9+
}
10+
],
11+
"entries": [
12+
{
13+
"type": "minecraft:item",
14+
"conditions": [
15+
{
16+
"block": "mia:reed",
17+
"condition": "minecraft:block_state_property",
18+
"properties": {
19+
"half": "lower"
20+
}
21+
}
22+
],
23+
"name": "mia:reed"
24+
}
25+
],
26+
"rolls": 1.0
27+
}
28+
],
29+
"random_sequence": "mia:blocks/reed"
30+
}

src/generated/resources/data/mia/worldgen/placed_feature/the_abyss/trees_inverted.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"placement": [
44
{
55
"type": "mia:inverted_count_on_every_layer",
6-
"count": 8
6+
"count": 6
77
},
88
{
99
"type": "minecraft:biome"

src/main/java/com/altnoir/mia/gametest/MiaGameTests.java renamed to src/main/java/com/altnoir/mia/MiaGameTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
package com.altnoir.mia.gametest;
1+
package com.altnoir.mia;
22

3-
import com.altnoir.mia.MIA;
43
import net.minecraft.gametest.framework.*;
54
import net.neoforged.neoforge.event.RegisterGameTestsEvent;
65
import net.neoforged.neoforge.gametest.GameTestHolder;

0 commit comments

Comments
 (0)