This commit is contained in:
nimsolated
2026-03-28 23:04:13 -07:00
parent c14fcb4ef1
commit 885a6f0b4d
10 changed files with 140 additions and 28 deletions

View File

@@ -57,7 +57,7 @@ public class AriEntity extends Monster {
public AriEntity(EntityType<AriEntity> type, Level world) {
super(type, world);
setMaxUpStep(0.6f);
xpReward = 0;
xpReward = 9;
setNoAi(false);
setCustomName(Component.literal("Ari"));
setCustomNameVisible(true);

View File

@@ -4,7 +4,7 @@ license="MIT License"
[[mods]]
modId="aris_random_additions"
version="2.3.1"
version="2.3.2"
displayName="Ari's Random Additions"
displayURL="https://mcreator.net"
logoFile="logo.png"

View File

@@ -1,20 +1,30 @@
{
"type": "minecraft:block",
"random_sequence": "aris_random_additions:blocks/orichalcum_deepslate_ore",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "aris_random_additions:orichalcum"
"name": "aris_random_additions:orichalcum",
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
},
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
}
]
}
]
}
]
],
"random_sequence": "aris_random_additions:blocks/orichalcum_deepslate_ore"
}

View File

@@ -1,20 +1,30 @@
{
"type": "minecraft:block",
"random_sequence": "aris_random_additions:blocks/orichalcum_ore",
"pools": [
{
"rolls": 1.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "aris_random_additions:orichalcum"
"name": "aris_random_additions:orichalcum",
"weight": 1,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
},
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
}
]
}
]
}
]
],
"random_sequence": "aris_random_additions:blocks/orichalcum_ore"
}