Skip to content

Commit

Permalink
1.3.3-beta1 Hotfix 2
Browse files Browse the repository at this point in the history
* Fixed Pescavore seafood not counting as seafood (for realsies this time I promise)
* Reduced the chance of blindness from severe malnutrition to 5 percent (it was set to 25 percent, that's too high)
* Tweaked tags slightly
  • Loading branch information
BlasterM5 committed Feb 22, 2024
1 parent 9430567 commit 0d5b630
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 16 deletions.
2 changes: 1 addition & 1 deletion data/ponyorigins/powers/common/diets/carnivore.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
},
"action": {
"type": "origins:chance",
"chance": 0.25,
"chance": 0.05,
"action": {
"type": "origins:and",
"actions": [
Expand Down
2 changes: 1 addition & 1 deletion data/ponyorigins/powers/common/diets/fructivore.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@
},
"action": {
"type": "origins:chance",
"chance": 0.25,
"chance": 0.05,
"action": {
"type": "origins:and",
"actions": [
Expand Down
44 changes: 36 additions & 8 deletions data/ponyorigins/powers/common/diets/pescavore.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,14 @@
{
"inverted": true,
"type": "origins:ingredient",
"ingredient": {
"tag": "ponyorigins:pufferfishes"
}
"ingredient": [
{
"tag": "ponyorigins:pufferfishes"
},
{
"tag": "c:cooked_fishes"
}
]
}
]
},
Expand All @@ -73,10 +78,33 @@
"seafood_delight": {
"type": "origins:modify_food",
"item_condition": {
"type": "origins:ingredient",
"ingredient": [
"type": "origins:and",
"conditions": [
{
"tag": "c:cooked_fishes"
"type": "origins:ingredient",
"ingredient": [
{
"tag": "minecraft:fishes"
},
{
"tag": "c:cooked_fishes"
},
{
"tag": "ponyorigins:seafood"
}
]
},
{
"inverted": true,
"type": "origins:ingredient",
"ingredient": [
{
"tag": "ponyorigins:pufferfishes"
},
{
"tag": "c:raw_fishes"
}
]
}
]
},
Expand Down Expand Up @@ -724,7 +752,7 @@
"tag": "c:cooked_fishes"
},
{
"tag": "c:seafood"
"tag": "ponyorigins:seafood"
}
]
},
Expand Down Expand Up @@ -762,7 +790,7 @@
},
"action": {
"type": "origins:chance",
"chance": 0.25,
"chance": 0.05,
"action": {
"type": "origins:and",
"actions": [
Expand Down
6 changes: 3 additions & 3 deletions data/ponyorigins/tags/items/seafood.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
},
{
"id": "minecraft:seagrass",
"required": false
"required": true
},
{
"id": "minecraft:kelp",
"required": false
"required": true
},
{
"id": "minecraft:sea_pickle",
"required": false
"required": true
},
{
"id": "oceansdelight:braised_sea_pickle",
Expand Down
5 changes: 3 additions & 2 deletions fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
"fabric-api-base": "*",
"fabric": "*",
"minecraft": ">=1.19.0 <=1.19.3",
"origins": ">=1.7.0"
"origins": ">=1.7.0",
"apugli": ">=2.6.6"
},
"name": "Pony Origins LTS",
"id": "ponyorigins",
"version": "1.3.3-b1h1",
"version": "1.3.3-b1h2",
"description": "Origins Replacement Mod, designed to compliment Mine Little Pony.",
"license": "Unlicense",
"icon": "pack.png",
Expand Down
2 changes: 1 addition & 1 deletion pack.mcmeta
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Pony Origins LTS",
"id": "ponyorigins",
"pack_format": 10,
"version": "1.3.3-b1h1",
"version": "1.3.3-b1h2",
"authors": [
"BlasterM5"
],
Expand Down

0 comments on commit 0d5b630

Please sign in to comment.