Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
-Fixed Essence of Fire not being craftable with Blaze Powder (and thus was unobtainable)
-Hell Rats now drop Coal instead of Raw Rat
-Made Big Golem drops more generous
-Removed Fire Resistance from Mystic Pears
  • Loading branch information
IcarussOne committed Oct 25, 2023
1 parent 4891102 commit 05c743b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 20 deletions.
1 change: 0 additions & 1 deletion src/main/java/drzhark/mocreatures/item/MoCItemFood.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public int getMaxItemUseDuration(ItemStack stack) {
@Override
protected void onFoodEaten(ItemStack stack, World world, EntityPlayer player) {
if (this == MoCItems.mysticPear) {
player.addPotionEffect(new PotionEffect(MobEffects.FIRE_RESISTANCE, 10 * 20, 0));
player.addPotionEffect(new PotionEffect(MobEffects.RESISTANCE, 10 * 20, 1));
player.addPotionEffect(new PotionEffect(MobEffects.SPEED, 10 * 20, 1));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
{
"function": "set_count",
"count": {
"min": 1,
"max": 3
"min": 2,
"max": 4
}
},
{
Expand All @@ -39,8 +39,8 @@
{
"function": "set_count",
"count": {
"min": 2,
"max": 4
"min": 3,
"max": 6
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"entries": [
{
"type": "item",
"name": "mocreatures:ratraw",
"name": "minecraft:coal",
"weight": 1,
"functions": [
{
Expand All @@ -16,24 +16,16 @@
"max": 1
}
},
{
"function": "furnace_smelt",
"conditions": [
{
"condition": "entity_properties",
"entity": "this",
"properties": {
"on_fire": true
}
}
]
},
{
"function": "looting_enchant",
"count": {
"min": 0,
"max": 1
}
},
{
"function": "set_data",
"data": 0
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"type": "forge:ore_shapeless",
"ingredients": [
{
"type": "forge:ore_dict",
"ore": "dustBlaze"
"item": "minecraft:blaze_powder"
},
{
"item": "mocreatures:heartfire"
Expand Down

0 comments on commit 05c743b

Please sign in to comment.