Processing 1.16.200 entities
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.base_priority",
|
||||
"additionalProperties": false,
|
||||
"type": "integer",
|
||||
"title": "Priority",
|
||||
"minimum": 0,
|
||||
"description": "Allows the mob to drink potions based on specified environment conditions."
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.speed_multiplier",
|
||||
"additionalProperties": false,
|
||||
"default": 1.0,
|
||||
"description": "Movement speed multiplier of the mob when using this AI Goal.",
|
||||
"type": "number",
|
||||
"title": "Speed multiplier"
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.base_priority",
|
||||
"additionalProperties": false,
|
||||
"type": "integer",
|
||||
"title": "Priority",
|
||||
"minimum": 0,
|
||||
"description": "Allows the mob to drink potions based on specified environment conditions."
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.13.0.speed_multiplier",
|
||||
"additionalProperties": false,
|
||||
"default": 1.0,
|
||||
"description": "Movement speed multiplier of the mob when using this AI Goal.",
|
||||
"type": "number",
|
||||
"title": "Speed multiplier"
|
||||
}
|
||||
@@ -11,6 +11,17 @@
|
||||
"description": "The radius that the entity will be restricted to in relation to its home",
|
||||
"type": "integer",
|
||||
"default": -1
|
||||
},
|
||||
"home_block_list": {
|
||||
"title": "Home block list",
|
||||
"description": "Optional block list that the home position will be associated with. If any of the blocks no longer exist at that position, the home restriction is removed. Example syntax: minecraft:sand. Not supported: minecraft:sand:1",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"title": "Home block",
|
||||
"description": "Optional block that the home position will be associated with. If any of the blocks no longer exist at that position, the home restriction is removed. Example syntax: minecraft:sand. Not supported: minecraft:sand:1",
|
||||
"type": "string",
|
||||
"$ref": "../../../../general/item/identifier.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,6 +20,56 @@
|
||||
"default": 0,
|
||||
"description": "The time the mob will stand around 'searching' for POIs",
|
||||
"title": "Wait time"
|
||||
},
|
||||
"next_xz": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "integer"
|
||||
},
|
||||
"next_y": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "integer"
|
||||
},
|
||||
"min_wait_time": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"max_wait_time": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"max_travel_time": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"min_perimeter": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"min_dist_from_target": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"timer_ratio": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"dist_from_boundary": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" },
|
||||
{ "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" },
|
||||
{ "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,11 +7,22 @@
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"priority": {
|
||||
"$ref": "types/base_priority.json"
|
||||
"priority": { "$ref": "types/base_priority.json" },
|
||||
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
|
||||
"max_seconds_before_search": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"speed_multiplier": {
|
||||
"$ref": "types/base_speed_multiplier.json"
|
||||
"search_cooldown_max_seconds": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
},
|
||||
"seconds_until_new_task": {
|
||||
"title": "UNDOCUMENTATED",
|
||||
"description": "UNDOCUMENATED",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.swim_idle",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.trade_interest",
|
||||
"description": "Allows the mob to look at a player that is holding a tradable item.",
|
||||
"type": "object",
|
||||
"title": "Swim idle 1.8.0",
|
||||
"title": "Trade interest 1.8.0",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
@@ -12,31 +12,31 @@
|
||||
"type": "number",
|
||||
"default": 2,
|
||||
"description": "The max time in seconds that the trader will hold an item before attempting to switch for a different item that takes the same trade",
|
||||
"title": "TODO title"
|
||||
"title": "Carried item switch time"
|
||||
},
|
||||
"cooldown": {
|
||||
"type": "number",
|
||||
"default": 2,
|
||||
"description": "The time in seconds before the trader can use this goal again",
|
||||
"title": "TODO title"
|
||||
"title": "Cooldown"
|
||||
},
|
||||
"interest_time": {
|
||||
"type": "number",
|
||||
"default": 45,
|
||||
"description": "The max time in seconds that the trader will be interested with showing it's trade items",
|
||||
"title": "TODO title"
|
||||
"title": "Interest_time"
|
||||
},
|
||||
"remove_item_time": {
|
||||
"type": "number",
|
||||
"default": 1,
|
||||
"description": "The max time in seconds that the trader will wait when you no longer have items to trade",
|
||||
"title": "TODO title"
|
||||
"title": "Remove item time"
|
||||
},
|
||||
"within_radius": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Distance in blocks this mob can be interested by a player holding an item they like",
|
||||
"title": "TODO title"
|
||||
"title": "Within radius"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,44 +4,88 @@
|
||||
"type": "object",
|
||||
"title": "Economy trade table 1.8.0",
|
||||
"additionalProperties": false,
|
||||
"description": "Allows the entity to power jump like the horse does in vanilla.",
|
||||
"description": "Defines this entity's ability to trade with players.",
|
||||
"required": [],
|
||||
"properties": {
|
||||
"convert_trades_economy": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Determines when the mob transforms, if the trades should be converted when the new mob has a economy_trade_table. When the trades are converted, the mob will generate a new trade list with their new trade table, but then it will try to convert any of the same trades over to have the same enchantments and user data. For example, if the original has a Emerald to Enchanted Iron Sword (Sharpness 1), and the new trade also has an Emerald for Enchanted Iron Sword, then the enchantment will be Sharpness 1.",
|
||||
"title": "Convert Trades Economy"
|
||||
"title": "convert trades economy"
|
||||
},
|
||||
"cured_discount": {
|
||||
"type": "array",
|
||||
"default": [-5, -20],
|
||||
"description": "How much should the discount be modified by when the player has cured the Zombie Villager. Can be specified as a pair of numbers (low-tier trade discount and high-tier trade discount)",
|
||||
"title": "cured discount",
|
||||
"items": [
|
||||
{ "type": "integer", "title": "A", "description": "" },
|
||||
{ "type": "integer", "title": "B", "description": "" }
|
||||
]
|
||||
},
|
||||
"display_name": {
|
||||
"type": "string",
|
||||
"default": 0,
|
||||
"default": "",
|
||||
"description": "Name to be displayed while trading with this entity",
|
||||
"title": "Display Name"
|
||||
"title": "display name"
|
||||
},
|
||||
"hero_demand_discount": {
|
||||
"type": "integer",
|
||||
"default": -4,
|
||||
"description": "How much should Demand be modified by when the player has the Hero of the Village mob effect",
|
||||
"title": "Hero Demand Discount"
|
||||
"description": "Used in legacy prices to determine how much should Demand be modified by when the player has the Hero of the Village mob effect",
|
||||
"title": "hero demand discount"
|
||||
},
|
||||
"max_cured_discount": {
|
||||
"type": "array",
|
||||
"default": [-25, -63],
|
||||
"description": "The max the discount can be modified by when the player has cured the Zombie Villager. Can be specified as a pair of numbers (low-tier trade discount and high-tier trade discount)",
|
||||
"title": "max cured discount",
|
||||
"items": [
|
||||
{ "type": "integer", "title": "A", "description": "" },
|
||||
{ "type": "integer", "title": "B", "description": "" }
|
||||
]
|
||||
},
|
||||
"max_nearby_cured_discount": {
|
||||
"type": "integer",
|
||||
"default": -200,
|
||||
"description": "The max the discount can be modified by when the player has cured a nearby Zombie Villager",
|
||||
"title": "max nearby cured discount"
|
||||
},
|
||||
"nearby_cured_discount": {
|
||||
"type": "integer",
|
||||
"default": -25,
|
||||
"description": "How much should the discount be modified by when the player has cured a nearby Zombie Villager",
|
||||
"title": "nearby cured discount"
|
||||
},
|
||||
"new_screen": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Used to determine if trading with entity opens the new trade screen",
|
||||
"title": "New Screen"
|
||||
"title": "new screen"
|
||||
},
|
||||
"persist_trades": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Determines if the trades should persist when the mob transforms. This makes it so that the next time the mob is transformed to something with a trade_table or economy_trade_table, then it keeps their trades.",
|
||||
"title": "Persist Trades"
|
||||
"title": "persist trades"
|
||||
},
|
||||
"show_trade_screen": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Show an in game trade screen when interacting with the mob.",
|
||||
"title": "show trade screen"
|
||||
},
|
||||
"table": {
|
||||
"type": "string",
|
||||
"default": 0,
|
||||
"default": "",
|
||||
"description": "File path relative to the resource pack root for this entity's trades",
|
||||
"title": "Table"
|
||||
"title": "table"
|
||||
},
|
||||
"use_legacy_price_formula": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Determines whether the legacy formula is used to determines the trade prices.",
|
||||
"title": "use legacy price formula"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user