Added base examples

This commit is contained in:
DaanV2
2021-10-11 18:10:42 +02:00
parent f188cfa6ee
commit 67ccb3d2d1
134 changed files with 2414 additions and 385 deletions

View File

@@ -12,7 +12,11 @@
"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"
},
"display_name": { "type": "string", "description": "Name to be displayed while trading with this entity.", "title": "Display Name" },
"display_name": {
"type": "string",
"description": "Name to be displayed while trading with this entity.",
"title": "Display Name"
},
"new_screen": {
"type": "boolean",
"default": false,
@@ -25,6 +29,19 @@
"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"
},
"table": { "type": "string", "description": "File path relative to the resource pack root for this entity's trades.", "title": "Table" }
}
"table": {
"type": "string",
"description": "File path relative to the resource pack root for this entity's trades.",
"title": "Table"
}
},
"examples": [
{
"convert_trades_economy": false,
"display_name": "example",
"new_screen": false,
"persist_trades": false,
"table": "example"
}
]
}