Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gm4/modeldata_registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,9 @@
"experience_bottle": {
"standard_liquids:gui/advancement/standard_liquids": 1
},
"feather": {
"gm4_horsemanship:item/glider_wing": 1
},
"firework_rocket": {
"gm4_phantom_scarecrows:gui/advancement/phantom_scarecrows": 1
},
Expand Down
9 changes: 9 additions & 0 deletions gm4_horsemanship/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Shapeless Portals<!--$headerTitle--><!--$pmc:delete-->

TODO!<!--$pmc:headerSize-->

<img src="images/shapeless_portals.png" alt="There is 1 portal among us" height="350"/> <!--$localAssetToURL--> <!--$modrinth:replaceWithVideo--> <!--$pmc:delete-->

### Features
- Light portals of any shape with Flint and Steel or Fire Charges.
- Portals can use Crying Obsidian.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions gm4_horsemanship/assets/model_data.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
model_data:
- item: feather
reference: item/glider_wing
template: generated
2 changes: 2 additions & 0 deletions gm4_horsemanship/assets/translations.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
key,en_us
gm4.horsemanship.item.horse_wings,Horse Wings
28 changes: 28 additions & 0 deletions gm4_horsemanship/beet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
id: gm4_horsemanship
name: Horsemanship
version: 1.0.X

data_pack:
load: .

pipeline:
- gm4.plugins.extend.module
- gm4.plugins.include.lib_forceload

meta:
gm4:
versioning:
required:
lib_forceload: 1.1.0
schedule_loops:
- main
- tick
website:
description: Form a bond with your horses
recommended: []
notes: []
video: null
wiki: https://wiki.gm4.co/wiki/Horsemanship
credits:
Creator:
- Thanathor
187 changes: 187 additions & 0 deletions gm4_horsemanship/data/gm4_horsemanship/advancement/feed_horse.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
{
"criteria": {
"apple": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:apple"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"golden_apple": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:golden_apple"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"carrot": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:carrot"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"enchanted_golden_apple": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:enchanted_golden_apple"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"golden_carrot": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:golden_carrot"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"sugar": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:sugar"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"wheat": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:wheat"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
},
"hay_block": {
"trigger": "minecraft:player_interacted_with_entity",
"conditions": {
"player": [],
"item": {
"items": [
"minecraft:hay_block"
]
},
"entity": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "#gm4_horsemanship:trainable",
"nbt": "{Tags:[\"gm4_horse\"]}"
}
}
]
}
}
},
"requirements": [
[
"apple",
"golden_apple",
"carrot",
"enchanted_golden_apple",
"golden_carrot",
"sugar",
"wheat",
"hay_block"
]
],
"rewards": {
"function": "gm4_horsemanship:horse_processing/food/feed_original_food"
}
}
Loading
Loading