2020-11-01 17:22:42 +01:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
2021-04-04 13:52:35 +02:00
"$id" : "blockception.minecraft.behavior.entities.1.8.0.minecraft.tamemount" ,
2020-11-01 17:22:42 +01:00
"description" : "Allows the Entity to be tamed by mounting it." ,
"type" : "object" ,
"title" : "Tamemount 1.8.0" ,
"additionalProperties" : false ,
"definitions" : {
"feed_items" : {
"type" : "object" ,
"description" : "The list of items that can be used to increase the entity's temper and speed up the taming process" ,
"properties" : {
2021-03-21 15:18:38 +01:00
"item" : { "$ref" : "../../../../general/item/identifier.json" , "description" : "Name of the item this entity likes and can be used to increase this entity's temper" } ,
"temperMod" : { "type" : "number" , "default" : 0 , "description" : "The amount of temper this entity gains when fed this item" }
2020-11-01 17:22:42 +01:00
}
} ,
"auto_reject_items" : {
"type" : "object" ,
"description" : "The list of items that can be used to increase the entity's temper and speed up the taming process" ,
"properties" : {
2021-03-21 15:18:38 +01:00
"item" : { "$ref" : "../../../../general/item/identifier.json" , "description" : "Name of the item this entity dislikes and will cause it to get angry if used while untamed" }
2020-11-01 17:22:42 +01:00
}
}
} ,
"required" : [ ] ,
"properties" : {
2021-03-21 15:18:38 +01:00
"attemptTemperMod" : { "type" : "integer" , "default" : 5 , "description" : "The amount the entity's temper will increase when mounted" , "title" : "TODO Title" } ,
2020-11-01 17:22:42 +01:00
"autoRejectItems" : {
"description" : "The list of items that, if carried while interacting with the entity, will anger it" ,
"oneOf" : [
2021-03-21 15:18:38 +01:00
{ "type" : "object" , "$ref" : "#/definitions/auto_reject_items" } ,
{ "type" : "array" , "items" : { "$ref" : "#/definitions/auto_reject_items" } }
2020-11-01 17:22:42 +01:00
] ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
} ,
2021-03-21 15:18:38 +01:00
"feed_text" : { "type" : "string" , "default" : "" , "description" : "The text that shows in the feeding interact button" , "title" : "TODO Title" } ,
2020-11-01 17:22:42 +01:00
"feedItems" : {
"type" : "object" ,
"description" : "The list of items that can be used to increase the entity's temper and speed up the taming process" ,
"oneOf" : [
2021-03-21 15:18:38 +01:00
{ "type" : "object" , "$ref" : "#/definitions/feed_items" } ,
{ "type" : "array" , "items" : { "$ref" : "#/definitions/feed_items" } }
2020-11-01 17:22:42 +01:00
] ,
2021-03-21 15:18:38 +01:00
"title" : "TODO Title"
2020-11-01 17:22:42 +01:00
} ,
2021-03-21 15:18:38 +01:00
"maxTemper" : { "type" : "integer" , "default" : 100 , "description" : "The maximum value for the entity's random starting temper" , "title" : "TODO Title" } ,
"minTemper" : { "type" : "integer" , "default" : 0 , "description" : "The minimum value for the entity's random starting temper" , "title" : "TODO Title" } ,
"ride_text" : { "type" : "string" , "description" : "The text that shows in the riding interact button" , "title" : "TODO Title" } ,
"tame_event" : { "$ref" : "../types/event.json" , "description" : "Event that triggers when the entity becomes tamed" , "title" : "TODO Title" }
2020-11-01 17:22:42 +01:00
}
}