Refactor
This commit is contained in:
14
source/behavior/items/1.16.100/events/add_mob_effect.json
Normal file
14
source/behavior/items/1.16.100/events/add_mob_effect.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.add_mob_effect",
|
||||
"title": "Add Mob Effect",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"effect": { "type": "string", "title": "Effect", "description": "UNDOCUMENTATED" },
|
||||
"target": { "type": "string", "title": "Target", "description": "UNDOCUMENTATED", "enum": ["holder"] },
|
||||
"duration": { "type": "number", "title": "Duration", "description": "UNDOCUMENTATED" },
|
||||
"amplifier": { "type": "number", "title": "Amplifier", "description": "UNDOCUMENTATED" }
|
||||
}
|
||||
}
|
||||
12
source/behavior/items/1.16.100/events/damage.json
Normal file
12
source/behavior/items/1.16.100/events/damage.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.shoot",
|
||||
"title": "Shoot",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"type": { "type": "string", "title": "Type", "description": "UNDOCUMENTATED", "enum": ["magic"] },
|
||||
"amount": { "type": "number", "title": "Amount", "description": "UNDOCUMENTATED" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.decrement_stack",
|
||||
"title": "Decrement Stack",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
}
|
||||
12
source/behavior/items/1.16.100/events/remove_mob_effect.json
Normal file
12
source/behavior/items/1.16.100/events/remove_mob_effect.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.remove_mob_effect",
|
||||
"title": "Remove Mob Effect",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"effect": { "type": "string", "title": "Effect", "description": "UNDOCUMENTATED" },
|
||||
"target": { "type": "string", "title": "Target", "description": "UNDOCUMENTATED", "enum": ["holder"] }
|
||||
}
|
||||
}
|
||||
13
source/behavior/items/1.16.100/events/shoot.json
Normal file
13
source/behavior/items/1.16.100/events/shoot.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.shoot",
|
||||
"title": "Shoot",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"angle_offset": { "type": "number", "title": "Angle Offset", "description": "UNDOCUMENTATED" },
|
||||
"launch_power": { "type": "number", "title": "Launch Power", "description": "UNDOCUMENTATED" },
|
||||
"projectile": { "type": "string", "title": "Projectile", "description": "UNDOCUMENTATED" }
|
||||
}
|
||||
}
|
||||
8
source/behavior/items/1.16.100/events/swing.json
Normal file
8
source/behavior/items/1.16.100/events/swing.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.swing",
|
||||
"title": "Swing",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
}
|
||||
21
source/behavior/items/1.16.100/events/teleport.json
Normal file
21
source/behavior/items/1.16.100/events/teleport.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.teleport",
|
||||
"title": "Teleport",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"target": { "type": "string", "title": "Target", "description": "UNDOCUMENTATED", "enum": ["holder"] },
|
||||
"max_range": {
|
||||
"type": "array",
|
||||
"title": "Max Range",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"items": [
|
||||
{ "type": "number", "title": "X", "description": "UNDOCUMENTATED" },
|
||||
{ "type": "number", "title": "Y", "description": "UNDOCUMENTATED" },
|
||||
{ "type": "number", "title": "Z", "description": "UNDOCUMENTATED" }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.1.16.100.items.events.transform_item",
|
||||
"title": "Transform Item",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": { "transform": { "title": "Transform", "description": "UNDOCUMENTATED", "type": "string" } }
|
||||
}
|
||||
Reference in New Issue
Block a user