You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.3 KiB
JSON

{
"type": "origins:multiple",
"name": "Dog Diet",
"description": "You can eat bones. As a treat!",
"badges": [
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/bone.png",
"text": "Eating a bone takes a while but gives 4 hunger. Counts as meat."
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/cookie.png",
"text": "Can I eat those?"
},
{
"type": "origins:tooltip",
"sprite": "minecraft:textures/item/bone.png",
"text": "You love getting treats by others. Who's a good boy?"
}
],
"edible_bones": {
"type": "origins:edible_item",
"item_condition": {
"type": "origins:ingredient",
"ingredient": {
"item": "minecraft:bone"
}
},
"food_component": {
"nutrition": 4,
"saturation": 1,
"meat": true
},
"use_action": "eat"
},
"feed_treat": {
"type": "origins:action_on_being_used",
"item_condition": {
"type": "origins:ingredient",
"ingredient": {
"item": "minecraft:bone"
}
},
"held_item_action": {
"type": "origins:consume",
"amount": 1
},
"bientity_action": {
"type": "origins:target_action",
"action": {
"type": "origins:and",
"actions": [
{
"type": "origins:apply_effect",
"effect": {
"id": "minecraft:saturation",
"duration": 10,
"amplifier": 2
}
},
{
"type": "origins:apply_effect",
"effect": {
"id": "minecraft:speed",
"duration": 100,
"amplifier": 5
}
}
]
}
}
},
"cookie_death": {
"type": "origins:action_on_item_use",
"entity_action": {
"type": "origins:and",
"actions": [
{
"type": "origins:damage",
"amount": 18,
"damage_type": "minecraft:starve"
},
{
"type": "origins:apply_effect",
"effect": {
"id": "minecraft:hunger",
"duration": 50,
"amplifier": 255
}
}
]
},
"item_condition": {
"type": "origins:ingredient",
"ingredient": {
"item": "minecraft:cookie"
}
}
}
}