diff --git a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.find_mount.json b/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.find_mount.json deleted file mode 100644 index 0bc057ec..00000000 --- a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.find_mount.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.find_mount", - "type": "object", - "title": "Find Mount 1.8.0", - "description": "Allows the mob to look around for another mob to ride atop it.", - "additionalProperties": false, - - "properties": { - "priority": { "$ref": "./types/priority.json" }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "If true, the mob will not go into water blocks when going towards a mount", - "title": "Avoid Water" - }, - "mount_distance": { - "type": "number", - "default": -1, - "description": "This is the distance the mob needs to be, in blocks, from the desired mount to mount it. If the value is below 0, the mob will use its default attack distance", - "title": "Mount Distance" - }, - "start_delay": { - "type": "integer", - "default": 0, - "description": "Time the mob will wait before starting to move towards the mount", - "title": "Start Delay" - }, - "target_needed": { - "type": "boolean", - "default": false, - "description": "If true, the mob will only look for a mount if it has a target", - "title": "Target Needed" - }, - "within_radius": { - "type": "number", - "default": 0, - "description": "Distance in blocks within which the mob will look for a mount", - "title": "Within Radius" - } - } -} diff --git a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.go_home.json b/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.go_home.json deleted file mode 100644 index c4205762..00000000 --- a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.go_home.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.behavior.go_home", - "type": "object", - "title": "Go Home 1.13.0", - "description": "Allows the mob to move back to the position they were spawned.", - "additionalProperties": false, - - "properties": { - "priority": { "$ref": "types/priority.json" }, - "speed_multiplier": { "$ref": "types/speed_multiplier.json" }, - "goal_radius": { - "type": "number", - "default": 0.5, - "description": "Distance in blocks within the mob considers it has reached the goal. This is the `wiggle room` to stop the AI from bouncing back and forth trying to reach a specific spot", - "title": "Goal Radius" - }, - "interval": { - "type": "integer", - "default": 120, - "description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal", - "title": "Interval" - }, - "on_home": { - "title": "On Home", - "description": "Event to run when this mob gets home.", - "oneOf": [ - { "type": "string" }, - { "type": "object", "$ref": "../types/trigger.json" }, - { "type": "array", "items": { "$ref": "../types/trigger.json" } } - ] - }, - "on_failed": { - "title": "On Failed", - "description": "Event to run when this mob gets home.", - "oneOf": [ - { "type": "string" }, - { "type": "object", "$ref": "../types/trigger.json" }, - { "type": "array", "items": { "$ref": "../types/trigger.json" } } - ] - } - } -} diff --git a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.stomp_turtle_egg.json b/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.stomp_turtle_egg.json deleted file mode 100644 index f84875a4..00000000 --- a/source/behavior/entities/1.13.0/behaviors/minecraft.behavior.stomp_turtle_egg.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.behavior.stomp_turtle_egg", - "description": "Allows this mob to stomp turtle eggs", - "type": "object", - "title": "Stomp Turtle Egg 1.13.0", - "additionalProperties": false, - - "properties": { - "priority": { "$ref": "types/priority.json" }, - "speed_multiplier": { "$ref": "types/speed_multiplier.json" }, - "goal_radius": { - "type": "number", - "default": 0.5, - "description": "Distance in blocks within the mob considers it has reached the goal. This is the `wiggle room` to stop the AI from bouncing back and forth trying to reach a specific spot", - "title": "Goal Radius" - }, - "interval": { - "type": "integer", - "default": 120, - "description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal", - "title": "Interval" - }, - "search_count": { - "type": "integer", - "default": 10, - "description": "The number of blocks each tick that the mob will check within it's search range and height for a valid block to move to. A value of 0 will have the mob check every block within range in one tick", - "title": "Search Count" - }, - "search_height": { - "type": "integer", - "default": 1, - "description": "Height in blocks the mob will look for turtle eggs to move towards", - "title": "Search Height" - }, - "search_range": { - "type": "integer", - "default": 0, - "description": "The distance in blocks it will look for turtle eggs to move towards", - "title": "Search Range" - } - } -} diff --git a/source/behavior/entities/1.13.0/behaviors/types/priority.json b/source/behavior/entities/1.13.0/behaviors/types/priority.json deleted file mode 100644 index 0cb54ed4..00000000 --- a/source/behavior/entities/1.13.0/behaviors/types/priority.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.priority", - "additionalProperties": false, - "type": "integer", - "title": "Priority", - "minimum": 0, - "default": 8, - "description": "Allows the mob to drink potions based on specified environment conditions." -} diff --git a/source/behavior/entities/1.13.0/behaviors/types/speed_multiplier.json b/source/behavior/entities/1.13.0/behaviors/types/speed_multiplier.json deleted file mode 100644 index abb337cc..00000000 --- a/source/behavior/entities/1.13.0/behaviors/types/speed_multiplier.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.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" -} diff --git a/source/behavior/entities/1.13.0/components.json b/source/behavior/entities/1.13.0/components.json deleted file mode 100644 index a5ae07a9..00000000 --- a/source/behavior/entities/1.13.0/components.json +++ /dev/null @@ -1,337 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.components1.13.0", - "additionalProperties": false, - "type": "object", - "title": "Entity 1.13.0", - "description": "The components", - "properties": { - "minecraft:addrider": { "$ref": "../1.8.0/components/minecraft.addrider.json" }, - "minecraft:admire_item": { "$ref": "../1.8.0/components/minecraft.admire_item.json" }, - "minecraft:ageable": { "$ref": "./components/minecraft.ageable.json" }, - "minecraft:ambient_sound_interval": { "$ref": "./components/minecraft.ambient_sound_interval.json" }, - "minecraft:angry": { "$ref": "../1.8.0/components/minecraft.angry.json" }, - "minecraft:annotation.break_door": { "$ref": "../1.8.0/components/minecraft.annotation.break_door.json" }, - "minecraft:annotation.open_door": { "$ref": "../1.8.0/components/minecraft.annotation.open_door.json" }, - "minecraft:area_attack": { "$ref": "../1.8.0/components/minecraft.area_attack.json" }, - "minecraft:attack": { "$ref": "../1.8.0/components/minecraft.attack.json" }, - "minecraft:attack_cooldown": { "$ref": "../1.8.0/components/minecraft.attack_cooldown.json" }, - "minecraft:attack_damage": { "$ref": "../1.8.0/components/minecraft.attack_damage.json" }, - "minecraft:balloonable": { "$ref": "../1.8.0/components/minecraft.balloonable.json" }, - "minecraft:barter": { "$ref": "../1.8.0/components/minecraft.barter.json" }, - "minecraft:block_climber": { "$ref": "../1.8.0/components/minecraft.block_climber.json" }, - "minecraft:block_sensor": { "$ref": "../1.8.0/components/minecraft.block_sensor.json" }, - "minecraft:boostable": { "$ref": "../1.8.0/components/minecraft.boostable.json" }, - "minecraft:boss": { "$ref": "../1.8.0/components/minecraft.boss.json" }, - "minecraft:break_blocks": { "$ref": "../1.8.0/components/minecraft.break_blocks.json" }, - "minecraft:breathable": { "$ref": "../1.8.0/components/minecraft.breathable.json" }, - "minecraft:breedable": { "$ref": "./components/minecraft.breedable.json" }, - "minecraft:bribeable": { "$ref": "../1.8.0/components/minecraft.bribeable.json" }, - "minecraft:buoyant": { "$ref": "../1.8.0/components/minecraft.buoyant.json" }, - "minecraft:burns_in_daylight": { "$ref": "../1.8.0/components/minecraft.burns_in_daylight.json" }, - "minecraft:can_climb": { "$ref": "../1.8.0/components/minecraft.can_climb.json" }, - "minecraft:can_fly": { "$ref": "../1.8.0/components/minecraft.can_fly.json" }, - "minecraft:can_power_jump": { "$ref": "../1.8.0/components/minecraft.can_power_jump.json" }, - "minecraft:celebrate_hunt": { "$ref": "../1.8.0/components/minecraft.celebrate_hunt.json" }, - "minecraft:collision_box": { "$ref": "../1.8.0/components/minecraft.collision_box.json" }, - "minecraft:color": { "$ref": "../1.8.0/components/minecraft.color.json" }, - "minecraft:color2": { "$ref": "../1.8.0/components/minecraft.color2.json" }, - "minecraft:combat_regeneration": { "$ref": "../1.8.0/components/minecraft.combat_regeneration.json" }, - "minecraft:drying_out_timer": { "$ref": "../1.8.0/components/minecraft.drying_out_timer.json" }, - "minecraft:conditional_bandwidth_optimization": { "$ref": "../1.8.0/components/minecraft.conditional_bandwidth_optimization.json" }, - "minecraft:custom_hit_test": { "$ref": "../1.8.0/components/minecraft.custom_hit_test.json" }, - "minecraft:damage_over_time": { "$ref": "../1.8.0/components/minecraft.damage_over_time.json" }, - "minecraft:damage_sensor": { "$ref": "./components/minecraft.damage_sensor.json" }, - "minecraft:default_look_angle": { "$ref": "../1.8.0/components/minecraft.default_look_angle.json" }, - "minecraft:despawn": { "$ref": "../1.8.0/components/minecraft.despawn.json" }, - "minecraft:dweller": { "$ref": "../1.8.0/components/minecraft.dweller.json" }, - "minecraft:economy_trade_table": { "$ref": "../1.8.0/components/minecraft.economy_trade_table.json" }, - "minecraft:entity_sensor": { "$ref": "../1.8.0/components/minecraft.entity_sensor.json" }, - "minecraft:environment_sensor": { "$ref": "./components/minecraft.environment_sensor.json" }, - "minecraft:equip_item": { "$ref": "../1.8.0/components/minecraft.equip_item.json" }, - "minecraft:equipment": { "$ref": "../1.8.0/components/minecraft.equipment.json" }, - "minecraft:equippable": { "$ref": "../1.8.0/components/minecraft.equippable.json" }, - "minecraft:experience_reward": { "$ref": "./components/minecraft.experience_reward.json" }, - "minecraft:explode": { "$ref": "../1.12.0/components/minecraft.explode.json" }, - "minecraft:fall_damage": { "$ref": "../1.8.0/components/minecraft.fall_damage.json" }, - "minecraft:fire_immune": { "$ref": "../1.8.0/components/minecraft.fire_immune.json" }, - "minecraft:floats_in_liquid": { "$ref": "../1.8.0/components/minecraft.floats_in_liquid.json" }, - "minecraft:flocking": { "$ref": "../1.8.0/components/minecraft.flocking.json" }, - "minecraft:flying_speed": { "$ref": "../1.8.0/components/minecraft.flying_speed.json" }, - "minecraft:follow_range": { "$ref": "../1.8.0/components/minecraft.follow_range.json" }, - "minecraft:foot_size": { "$ref": "../1.8.0/components/minecraft.foot_size.json" }, - "minecraft:friction_modifier": { "$ref": "../1.8.0/components/minecraft.friction_modifier.json" }, - "minecraft:genetics": { "$ref": "../1.8.0/components/minecraft.genetics.json" }, - "minecraft:giveable": { "$ref": "../1.8.0/components/minecraft.giveable.json" }, - "minecraft:ground_offset": { "$ref": "../1.8.0/components/minecraft.ground_offset.json" }, - "minecraft:group_size": { "$ref": "../1.8.0/components/minecraft.group_size.json" }, - "minecraft:grows_crop": { "$ref": "../1.8.0/components/minecraft.grows_crop.json" }, - "minecraft:healable": { "$ref": "../1.8.0/components/minecraft.healable.json" }, - "minecraft:health": { "$ref": "../1.8.0/components/minecraft.health.json" }, - "minecraft:home": { "$ref": "../1.8.0/components/minecraft.home.json" }, - "minecraft:hurt_on_condition": { "$ref": "../1.8.0/components/minecraft.hurt_on_condition.json" }, - "minecraft:hurt_when_wet": { "$ref": "../1.8.0/components/minecraft.hurt_when_wet.json" }, - "minecraft:input_ground_controlled": { "$ref": "../1.8.0/components/minecraft.input_ground_controlled.json" }, - "minecraft:inside_block_notifier": { "$ref": "../1.8.0/components/minecraft.inside_block_notifier.json" }, - "minecraft:insomnia": { "$ref": "../1.8.0/components/minecraft.insomnia.json" }, - "minecraft:instant_despawn": { "$ref": "../1.8.0/components/minecraft.instant_despawn.json" }, - "minecraft:interact": { "$ref": "./components/minecraft.interact.json" }, - "minecraft:inventory": { "$ref": "../1.8.0/components/minecraft.inventory.json" }, - "minecraft:is_baby": { "$ref": "../1.8.0/components/minecraft.is_baby.json" }, - "minecraft:is_charged": { "$ref": "../1.8.0/components/minecraft.is_charged.json" }, - "minecraft:is_chested": { "$ref": "../1.8.0/components/minecraft.is_chested.json" }, - "minecraft:is_dyeable": { "$ref": "../1.8.0/components/minecraft.is_dyeable.json" }, - "minecraft:is_hidden_when_invisible": { "$ref": "../1.8.0/components/minecraft.is_hidden_when_invisible.json" }, - "minecraft:is_ignited": { "$ref": "../1.8.0/components/minecraft.is_ignited.json" }, - "minecraft:is_illager_captain": { "$ref": "../1.8.0/components/minecraft.is_illager_captain.json" }, - "minecraft:is_saddled": { "$ref": "../1.8.0/components/minecraft.is_saddled.json" }, - "minecraft:is_shaking": { "$ref": "../1.8.0/components/minecraft.is_shaking.json" }, - "minecraft:is_sheared": { "$ref": "../1.8.0/components/minecraft.is_sheared.json" }, - "minecraft:is_stackable": { "$ref": "../1.8.0/components/minecraft.is_stackable.json" }, - "minecraft:is_stunned": { "$ref": "../1.8.0/components/minecraft.is_stunned.json" }, - "minecraft:is_tamed": { "$ref": "../1.8.0/components/minecraft.is_tamed.json" }, - "minecraft:item_controllable": { "$ref": "../1.8.0/components/minecraft.item_controllable.json" }, - "minecraft:item_hopper": { "$ref": "../1.8.0/components/minecraft.item_hopper.json" }, - "minecraft:jump.dynamic": { "$ref": "../1.8.0/components/minecraft.jump.dynamic.json" }, - "minecraft:jump.static": { "$ref": "../1.8.0/components/minecraft.jump.static.json" }, - "minecraft:knockback_resistance": { "$ref": "../1.8.0/components/minecraft.knockback_resistance.json" }, - "minecraft:lava_movement": { "$ref": "../1.8.0/components/minecraft.lava_movement.json" }, - "minecraft:leashable": { "$ref": "../1.8.0/components/minecraft.leashable.json" }, - "minecraft:lookat": { "$ref": "../1.8.0/components/minecraft.lookat.json" }, - "minecraft:loot": { "$ref": "../1.8.0/components/minecraft.loot.json" }, - "minecraft:managed_wandering_trader": { "$ref": "../1.8.0/components/minecraft.managed_wandering_trader.json" }, - "minecraft:mark_variant": { "$ref": "../1.8.0/components/minecraft.mark_variant.json" }, - "minecraft:mob_effect": { "$ref": "../1.8.0/components/minecraft.mob_effect.json" }, - "minecraft:movement": { "$ref": "../1.8.0/components/minecraft.movement.json" }, - "minecraft:movement.amphibious": { "$ref": "../1.8.0/components/minecraft.movement.amphibious.json" }, - "minecraft:movement.basic": { "$ref": "../1.8.0/components/minecraft.movement.basic.json" }, - "minecraft:movement.fly": { "$ref": "../1.8.0/components/minecraft.movement.fly.json" }, - "minecraft:movement.generic": { "$ref": "../1.8.0/components/minecraft.movement.generic.json" }, - "minecraft:movement.glide": { "$ref": "../1.8.0/components/minecraft.movement.glide.json" }, - "minecraft:movement.hover": { "$ref": "../1.8.0/components/minecraft.movement.hover.json" }, - "minecraft:movement.jump": { "$ref": "../1.8.0/components/minecraft.movement.jump.json" }, - "minecraft:movement.skip": { "$ref": "../1.8.0/components/minecraft.movement.skip.json" }, - "minecraft:movement.sway": { "$ref": "../1.8.0/components/minecraft.movement.sway.json" }, - "minecraft:nameable": { "$ref": "../1.8.0/components/minecraft.nameable.json" }, - "minecraft:navigation.climb": { "$ref": "./components/minecraft.navigation.climb.json" }, - "minecraft:navigation.float": { "$ref": "./components/minecraft.navigation.float.json" }, - "minecraft:navigation.fly": { "$ref": "./components/minecraft.navigation.fly.json" }, - "minecraft:navigation.generic": { "$ref": "./components/minecraft.navigation.generic.json" }, - "minecraft:navigation.hover": { "$ref": "../1.8.0/components/minecraft.navigation.hover.json" }, - "minecraft:navigation.swim": { "$ref": "./components/minecraft.navigation.swim.json" }, - "minecraft:navigation.walk": { "$ref": "./components/minecraft.navigation.walk.json" }, - "minecraft:npc": { "$ref": "../1.8.0/components/minecraft.npc.json" }, - "minecraft:on_death": { "$ref": "../1.8.0/components/minecraft.on_death.json" }, - "minecraft:on_friendly_anger": { "$ref": "../1.8.0/components/minecraft.on_friendly_anger.json" }, - "minecraft:on_hurt": { "$ref": "../1.8.0/components/minecraft.on_hurt.json" }, - "minecraft:on_hurt_by_player": { "$ref": "../1.8.0/components/minecraft.on_hurt_by_player.json" }, - "minecraft:on_ignite": { "$ref": "../1.8.0/components/minecraft.on_ignite.json" }, - "minecraft:on_start_landing": { "$ref": "../1.8.0/components/minecraft.on_start_landing.json" }, - "minecraft:on_start_takeoff": { "$ref": "../1.8.0/components/minecraft.on_start_takeoff.json" }, - "minecraft:on_target_acquired": { "$ref": "../1.8.0/components/minecraft.on_target_acquired.json" }, - "minecraft:on_target_escape": { "$ref": "../1.8.0/components/minecraft.on_target_escape.json" }, - "minecraft:on_wake_with_owner": { "$ref": "../1.8.0/components/minecraft.on_wake_with_owner.json" }, - "minecraft:out_of_control": { "$ref": "../1.8.0/components/minecraft.out_of_control.json" }, - "minecraft:player.saturation": { "$ref": "../1.8.0/components/minecraft.player.saturation.json" }, - "minecraft:player.exhaustion": { "$ref": "../1.8.0/components/minecraft.player.exhaustion.json" }, - "minecraft:player.level": { "$ref": "../1.8.0/components/minecraft.player.level.json" }, - "minecraft:player.experience": { "$ref": "../1.8.0/components/minecraft.player.experience.json" }, - "minecraft:peek": { "$ref": "../1.8.0/components/minecraft.peek.json" }, - "minecraft:persistent": { "$ref": "../1.8.0/components/minecraft.persistent.json" }, - "minecraft:physics": { "$ref": "../1.8.0/components/minecraft.physics.json" }, - "minecraft:preferred_path": { "$ref": "../1.8.0/components/minecraft.preferred_path.json" }, - "minecraft:projectile": { "$ref": "./components/minecraft.projectile.json" }, - "minecraft:push_through": { "$ref": "../1.8.0/components/minecraft.push_through.json" }, - "minecraft:pushable": { "$ref": "../1.8.0/components/minecraft.pushable.json" }, - "minecraft:raid_trigger": { "$ref": "../1.8.0/components/minecraft.raid_trigger.json" }, - "minecraft:rail_movement": { "$ref": "../1.8.0/components/minecraft.rail_movement.json" }, - "minecraft:rail_sensor": { "$ref": "../1.8.0/components/minecraft.rail_sensor.json" }, - "minecraft:ravager_blocked": { "$ref": "../1.8.0/components/minecraft.ravager_blocked.json" }, - "minecraft:rideable": { "$ref": "./components/minecraft.rideable.json" }, - "minecraft:scale": { "$ref": "../1.8.0/components/minecraft.scale.json" }, - "minecraft:scale_by_age": { "$ref": "../1.8.0/components/minecraft.scale_by_age.json" }, - "minecraft:scheduler": { "$ref": "../1.8.0/components/minecraft.scheduler.json" }, - "minecraft:shareables": { "$ref": "../1.8.0/components/minecraft.shareables.json" }, - "minecraft:shooter": { "$ref": "../1.8.0/components/minecraft.shooter.json" }, - "minecraft:sittable": { "$ref": "../1.8.0/components/minecraft.sittable.json" }, - "minecraft:skin_id": { "$ref": "../1.8.0/components/minecraft.skin_id.json" }, - "minecraft:sound_volume": { "$ref": "../1.8.0/components/minecraft.sound_volume.json" }, - "minecraft:spawn_entity": { "$ref": "../1.8.0/components/minecraft.spawn_entity.json" }, - "minecraft:spell_effects": { "$ref": "../1.8.0/components/minecraft.spell_effects.json" }, - "minecraft:strength": { "$ref": "../1.8.0/components/minecraft.strength.json" }, - "minecraft:tameable": { "$ref": "../1.8.0/components/minecraft.tameable.json" }, - "minecraft:tamemount": { "$ref": "../1.8.0/components/minecraft.tamemount.json" }, - "minecraft:target_nearby_sensor": { "$ref": "../1.8.0/components/minecraft.target_nearby_sensor.json" }, - "minecraft:teleport": { "$ref": "../1.8.0/components/minecraft.teleport.json" }, - "minecraft:tick_world": { "$ref": "../1.8.0/components/minecraft.tick_world.json" }, - "minecraft:timer": { "$ref": "../1.8.0/components/minecraft.timer.json" }, - "minecraft:trade_table": { "$ref": "../1.8.0/components/minecraft.trade_table.json" }, - "minecraft:trail": { "$ref": "../1.8.0/components/minecraft.trail.json" }, - "minecraft:transformation": { "$ref": "./components/minecraft.transformation.json" }, - "minecraft:trust": { "$ref": "../1.8.0/components/minecraft.trust.json" }, - "minecraft:trusting": { "$ref": "../1.8.0/components/minecraft.trusting.json" }, - "minecraft:type_family": { "$ref": "../1.8.0/components/minecraft.type_family.json" }, - "minecraft:variant": { "$ref": "../1.8.0/components/minecraft.variant.json" }, - "minecraft:underwater_movement": { "$ref": "../1.8.0/components/minecraft.underwater_movement.json" }, - "minecraft:walk_animation_speed": { "$ref": "../1.8.0/components/minecraft.walk_animation_speed.json" }, - "minecraft:wants_jockey": { "$ref": "../1.8.0/components/minecraft.wants_jockey.json" }, - "minecraft:water_movement": { "$ref": "../1.8.0/components/minecraft.water_movement.json" }, - "minecraft:hide": { "$ref": "../1.16.0/components/minecraft.hide.json" }, - "minecraft:horse.jump_strength": { "$ref": "../1.16.0/components/minecraft.horse.jump_strength.json" }, - "minecraft:trade_resupply": { "$ref": "../1.16.0/components/minecraft.trade_resupply.json" }, - - "minecraft:behavior.admire_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.admire_item.json" }, - "minecraft:behavior.avoid_mob_type": { "$ref": "../1.8.0/behaviors/minecraft.behavior.avoid_mob_type.json" }, - "minecraft:behavior.barter": { "$ref": "../1.8.0/behaviors/minecraft.behavior.barter.json" }, - "minecraft:behavior.beg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.beg.json" }, - "minecraft:behavior.break_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.break_door.json" }, - "minecraft:behavior.breed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.breed.json" }, - "minecraft:behavior.celebrate": { "$ref": "../1.8.0/behaviors/minecraft.behavior.celebrate.json" }, - "minecraft:behavior.charge_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_attack.json" }, - "minecraft:behavior.charge_held_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.charge_held_item.json" }, - "minecraft:behavior.circle_around_anchor": { "$ref": "../1.8.0/behaviors/minecraft.behavior.circle_around_anchor.json" }, - "minecraft:behavior.controlled_by_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.controlled_by_player.json" }, - "minecraft:behavior.defend_trusted_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_trusted_target.json" }, - "minecraft:behavior.defend_village_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.defend_village_target.json" }, - "minecraft:behavior.delayed_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.delayed_attack.json" }, - "minecraft:behavior.door_interact": { "$ref": "../1.8.0/behaviors/minecraft.behavior.door_interact.json" }, - "minecraft:behavior.dragonchargeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonchargeplayer.json" }, - "minecraft:behavior.dragondeath": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragondeath.json" }, - "minecraft:behavior.dragonflaming": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonflaming.json" }, - "minecraft:behavior.dragonholdingpattern": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonholdingpattern.json" }, - "minecraft:behavior.dragonlanding": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonlanding.json" }, - "minecraft:behavior.dragonscanning": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonscanning.json" }, - "minecraft:behavior.dragonstrafeplayer": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragonstrafeplayer.json" }, - "minecraft:behavior.dragontakeoff": { "$ref": "../1.8.0/behaviors/minecraft.behavior.dragontakeoff.json" }, - "minecraft:behavior.drink_potion": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drink_potion.json" }, - "minecraft:behavior.drop_item_for": { "$ref": "../1.8.0/behaviors/minecraft.behavior.drop_item_for.json" }, - "minecraft:behavior.eat_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_block.json" }, - "minecraft:behavior.eat_carried_item": { "$ref": "../1.8.0/behaviors/minecraft.behavior.eat_carried_item.json" }, - "minecraft:behavior.enderman_leave_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_leave_block.json" }, - "minecraft:behavior.enderman_take_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.enderman_take_block.json" }, - "minecraft:behavior.explore_outskirts": { "$ref": "../1.8.0/behaviors/minecraft.behavior.explore_outskirts.json" }, - "minecraft:behavior.find_cover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_cover.json" }, - "minecraft:behavior.find_mount": { "$ref": "./behaviors/minecraft.behavior.find_mount.json" }, - "minecraft:behavior.find_underwater_treasure": { "$ref": "../1.8.0/behaviors/minecraft.behavior.find_underwater_treasure.json" }, - "minecraft:behavior.flee_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.flee_sun.json" }, - "minecraft:behavior.float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float.json" }, - "minecraft:behavior.float_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.float_wander.json" }, - "minecraft:behavior.follow_caravan": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_caravan.json" }, - "minecraft:behavior.follow_mob": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_mob.json" }, - "minecraft:behavior.follow_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_owner.json" }, - "minecraft:behavior.follow_parent": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_parent.json" }, - "minecraft:behavior.follow_target_captain": { "$ref": "../1.8.0/behaviors/minecraft.behavior.follow_target_captain.json" }, - "minecraft:behavior.go_home": { "$ref": "./behaviors/minecraft.behavior.go_home.json" }, - "minecraft:behavior.guardian_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.guardian_attack.json" }, - "minecraft:behavior.harvest_farm_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.harvest_farm_block.json" }, - "minecraft:behavior.hide": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hide.json" }, - "minecraft:behavior.hold_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hold_ground.json" }, - "minecraft:behavior.hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.hurt_by_target.json" }, - "minecraft:behavior.inspect_bookshelf": { "$ref": "../1.8.0/behaviors/minecraft.behavior.inspect_bookshelf.json" }, - "minecraft:behavior.jump_to_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.jump_to_block.json" }, - "minecraft:behavior.knockback_roar": { "$ref": "../1.8.0/behaviors/minecraft.behavior.knockback_roar.json" }, - "minecraft:behavior.lay_down": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_down.json" }, - "minecraft:behavior.lay_egg": { "$ref": "../1.8.0/behaviors/minecraft.behavior.lay_egg.json" }, - "minecraft:behavior.leap_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.leap_at_target.json" }, - "minecraft:behavior.look_at_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_entity.json" }, - "minecraft:behavior.look_at_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_player.json" }, - "minecraft:behavior.look_at_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_target.json" }, - "minecraft:behavior.look_at_trading_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.look_at_trading_player.json" }, - "minecraft:behavior.make_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.make_love.json" }, - "minecraft:behavior.melee_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.melee_attack.json" }, - "minecraft:behavior.mingle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mingle.json" }, - "minecraft:behavior.mount_pathing": { "$ref": "../1.8.0/behaviors/minecraft.behavior.mount_pathing.json" }, - "minecraft:behavior.move_indoors": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_indoors.json" }, - "minecraft:behavior.move_through_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_through_village.json" }, - "minecraft:behavior.move_to_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_block.json" }, - "minecraft:behavior.move_to_land": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_land.json" }, - "minecraft:behavior.move_to_lava": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_lava.json" }, - "minecraft:behavior.move_to_liquid": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_liquid.json" }, - "minecraft:behavior.move_to_poi": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_poi.json" }, - "minecraft:behavior.move_to_random_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_random_block.json" }, - "minecraft:behavior.move_to_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_village.json" }, - "minecraft:behavior.move_to_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_to_water.json" }, - "minecraft:behavior.move_towards_dwelling_restriction": { - "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_dwelling_restriction.json" - }, - "minecraft:behavior.move_towards_restriction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_restriction.json" }, - "minecraft:behavior.move_towards_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.move_towards_target.json" }, - "minecraft:behavior.nap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nap.json" }, - "minecraft:behavior.nearest_attackable_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_attackable_target.json" }, - "minecraft:behavior.nearest_prioritized_attackable_target": { - "$ref": "../1.8.0/behaviors/minecraft.behavior.nearest_prioritized_attackable_target.json" - }, - "minecraft:behavior.ocelot_sit_on_block": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelot_sit_on_block.json" }, - "minecraft:behavior.ocelotattack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ocelotattack.json" }, - "minecraft:behavior.offer_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.offer_flower.json" }, - "minecraft:behavior.open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.open_door.json" }, - "minecraft:behavior.owner_hurt_by_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_by_target.json" }, - "minecraft:behavior.owner_hurt_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.owner_hurt_target.json" }, - "minecraft:behavior.panic": { "$ref": "../1.8.0/behaviors/minecraft.behavior.panic.json" }, - "minecraft:behavior.peek": { "$ref": "../1.8.0/behaviors/minecraft.behavior.peek.json" }, - "minecraft:behavior.pet_sleep_with_owner": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pet_sleep_with_owner.json" }, - "minecraft:behavior.pickup_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.pickup_items.json" }, - "minecraft:behavior.play": { "$ref": "../1.8.0/behaviors/minecraft.behavior.play.json" }, - "minecraft:behavior.play_dead": { "$ref": "../1.8.0/behaviors/minecraft.behavior.play_dead.json" }, - "minecraft:behavior.player_ride_tamed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.player_ride_tamed.json" }, - "minecraft:behavior.raid_garden": { "$ref": "../1.8.0/behaviors/minecraft.behavior.raid_garden.json" }, - "minecraft:behavior.ram_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ram_attack.json" }, - "minecraft:behavior.random_breach": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_breach.json" }, - "minecraft:behavior.random_fly": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_fly.json" }, - "minecraft:behavior.random_hover": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_hover.json" }, - "minecraft:behavior.random_look_around": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around.json" }, - "minecraft:behavior.random_look_around_and_sit": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_look_around_and_sit.json" }, - "minecraft:behavior.random_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_sitting.json" }, - "minecraft:behavior.random_stroll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_stroll.json" }, - "minecraft:behavior.random_swim": { "$ref": "../1.8.0/behaviors/minecraft.behavior.random_swim.json" }, - "minecraft:behavior.ranged_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.ranged_attack.json" }, - "minecraft:behavior.receive_love": { "$ref": "../1.8.0/behaviors/minecraft.behavior.receive_love.json" }, - "minecraft:behavior.restrict_open_door": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_open_door.json" }, - "minecraft:behavior.restrict_sun": { "$ref": "../1.8.0/behaviors/minecraft.behavior.restrict_sun.json" }, - "minecraft:behavior.rise_to_liquid_level": { "$ref": "../1.8.0/behaviors/minecraft.behavior.rise_to_liquid_level.json" }, - "minecraft:behavior.roll": { "$ref": "../1.8.0/behaviors/minecraft.behavior.roll.json" }, - "minecraft:behavior.run_around_like_crazy": { "$ref": "../1.8.0/behaviors/minecraft.behavior.run_around_like_crazy.json" }, - "minecraft:behavior.scared": { "$ref": "../1.8.0/behaviors/minecraft.behavior.scared.json" }, - "minecraft:behavior.send_event": { "$ref": "../1.8.0/behaviors/minecraft.behavior.send_event.json" }, - "minecraft:behavior.share_items": { "$ref": "../1.8.0/behaviors/minecraft.behavior.share_items.json" }, - "minecraft:behavior.silverfish_merge_with_stone": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_merge_with_stone.json" }, - "minecraft:behavior.silverfish_wake_up_friends": { "$ref": "../1.8.0/behaviors/minecraft.behavior.silverfish_wake_up_friends.json" }, - "minecraft:behavior.skeleton_horse_trap": { "$ref": "../1.8.0/behaviors/minecraft.behavior.skeleton_horse_trap.json" }, - "minecraft:behavior.sleep": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sleep.json" }, - "minecraft:behavior.slime_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_attack.json" }, - "minecraft:behavior.slime_float": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_float.json" }, - "minecraft:behavior.slime_keep_on_jumping": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_keep_on_jumping.json" }, - "minecraft:behavior.slime_random_direction": { "$ref": "../1.8.0/behaviors/minecraft.behavior.slime_random_direction.json" }, - "minecraft:behavior.snacking": { "$ref": "../1.8.0/behaviors/minecraft.behavior.snacking.json" }, - "minecraft:behavior.sneeze": { "$ref": "../1.8.0/behaviors/minecraft.behavior.sneeze.json" }, - "minecraft:behavior.squid_dive": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_dive.json" }, - "minecraft:behavior.squid_flee": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_flee.json" }, - "minecraft:behavior.squid_idle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_idle.json" }, - "minecraft:behavior.squid_move_away_from_ground": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_move_away_from_ground.json" }, - "minecraft:behavior.squid_out_of_water": { "$ref": "../1.8.0/behaviors/minecraft.behavior.squid_out_of_water.json" }, - "minecraft:behavior.stalk_and_pounce_on_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stalk_and_pounce_on_target.json" }, - "minecraft:behavior.stay_while_sitting": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stay_while_sitting.json" }, - "minecraft:behavior.stomp_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stomp_attack.json" }, - "minecraft:behavior.stomp_turtle_egg": { "$ref": "./behaviors/minecraft.behavior.stomp_turtle_egg.json" }, - "minecraft:behavior.stroll_towards_village": { "$ref": "../1.8.0/behaviors/minecraft.behavior.stroll_towards_village.json" }, - "minecraft:behavior.summon_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.summon_entity.json" }, - "minecraft:behavior.swell": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swell.json" }, - "minecraft:behavior.swim_idle": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_idle.json" }, - "minecraft:behavior.swim_wander": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_wander.json" }, - "minecraft:behavior.swim_with_entity": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swim_with_entity.json" }, - "minecraft:behavior.swoop_attack": { "$ref": "../1.8.0/behaviors/minecraft.behavior.swoop_attack.json" }, - "minecraft:behavior.take_flower": { "$ref": "../1.8.0/behaviors/minecraft.behavior.take_flower.json" }, - "minecraft:behavior.target_when_pushed": { "$ref": "../1.8.0/behaviors/minecraft.behavior.target_when_pushed.json" }, - "minecraft:behavior.tempt": { "$ref": "../1.8.0/behaviors/minecraft.behavior.tempt.json" }, - "minecraft:behavior.trade_interest": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_interest.json" }, - "minecraft:behavior.trade_with_player": { "$ref": "../1.8.0/behaviors/minecraft.behavior.trade_with_player.json" }, - "minecraft:behavior.vex_copy_owner_target": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_copy_owner_target.json" }, - "minecraft:behavior.vex_random_move": { "$ref": "../1.8.0/behaviors/minecraft.behavior.vex_random_move.json" }, - "minecraft:behavior.wither_random_attack_pos_goal": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_random_attack_pos_goal.json" }, - "minecraft:behavior.wither_target_highest_damage": { "$ref": "../1.8.0/behaviors/minecraft.behavior.wither_target_highest_damage.json" }, - "minecraft:behavior.work": { "$ref": "../1.8.0/behaviors/minecraft.behavior.work.json" }, - - "minecraft:behavior.avoid_block": { "$ref": "../1.16.0/behaviors/minecraft.behavior.avoid_block.json" }, - "minecraft:behavior.equip_item": { "$ref": "../1.16.0/behaviors/minecraft.behavior.equip_item.json" }, - "minecraft:behavior.move_towards_home_restriction": { "$ref": "../1.16.0/behaviors/minecraft.behavior.move_towards_home_restriction.json" } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.ageable.json b/source/behavior/entities/1.13.0/components/minecraft.ageable.json deleted file mode 100644 index 4599c315..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.ageable.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.ageable", - "type": "object", - "title": "Ageable 1.13.0", - "description": "Adds a timer for the entity to grow up. It can be accelerated by giving the entity the items it likes as defined by feedItems.", - "additionalProperties": false, - "properties": { - "duration": { - "type": "number", - "default": 1200.0, - "description": "Amount of time before the entity grows up, -1 for always a baby.", - "title": "Duration" - }, - "feed_items": { - "description": "List of items that can be fed to the entity. Includes `item` for the item name and `growth` to define how much time it grows up by", - "title": "Feed Items", - "type": "array", - "items": { - "title": "Feed Item", - "description": "An item that can be fed to the entity. Includes 'item' for the item name and 'growth' to define how much time it grows up by", - "oneOf": [ - { - "type": "object", - "properties": { - "item": { - "type": "string", - "description": "The item name that can be used to feed", - "title": "Item", - "$ref": "../../../../general/item/identifier.json" - }, - "growth": { "type": "integer", "description": "The amount that counts for aging", "title": "Growth" } - } - }, - { "type": "string", "$ref": "../../../../general/item/identifier.json" } - ] - } - }, - "drop_items": { - "type": "array", - "description": "List of items that the entity drops when it grows up.", - "items": { "type": "string", "description": "Item names", "title": "Drop Items", "$ref": "../../../../general/item/identifier.json" }, - "title": "Drop Items" - }, - "grow_up": { - "description": "Event to run when this entity grows up", - "title": "Grow Up", - "oneOf": [ - { "type": "string" }, - { "type": "object", "properties": { "event": { "type": "string" }, "target": { "$ref": "../../filters/filters/types/subject.json" } } } - ] - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.ambient_sound_interval.json b/source/behavior/entities/1.13.0/components/minecraft.ambient_sound_interval.json deleted file mode 100644 index 24bcaa09..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.ambient_sound_interval.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.ambient_sound_interval", - "additionalProperties": false, - "type": "object", - "title": "Ambient Sound Interval 1.8.0", - "description": "Sets the entity's delay between playing its ambient sound.", - "required": ["event_name"], - "properties": { - "event_name": { - "type": "string", - "default": "ambient", - "description": "Level sound event to be played as the ambient sound.", - "title": "Event Name" - }, - "range": { - "type": "number", - "default": 16, - "description": "Maximum time in seconds to randomly add to the ambient sound delay time.", - "title": "Range" - }, - "value": { - "type": "number", - "default": 8, - "description": "Minimum time in seconds before the entity plays its ambient sound again", - "title": "Value" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.breedable.json b/source/behavior/entities/1.13.0/components/minecraft.breedable.json deleted file mode 100644 index 37a4ad27..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.breedable.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.breedable", - "type": "object", - "title": "Breedable 1.13.0", - "additionalProperties": false, - "description": "Defines the way an entity can get into the `love` state.", - "definitions": { - "breeds_with_spec": { - "type": "object", - "description": "An entity definitions that this entity can breed with.", - "additionalItems": false, - - "properties": { - "baby_type": { "type": "string", "description": "The entity definition of this entity's babies.", "title": "Baby Type" }, - "breed_event": { "$ref": "../types/event.json", "description": "Event to run when this entity breeds.", "title": "Breed Event" }, - "mate_type": { "type": "string", "description": "The entity definition of this entity's mate.", "title": "Mate Type" } - } - } - }, - - "properties": { - "allow_sitting": { "description": "If true, entities can breed while sitting.", "type": "boolean", "default": false, "title": "Allow Sitting" }, - "blend_attributes": { - "description": "If true, the entities will blend their attributes in the offspring after they breed. For example, horses blend their health, movement, and jump_strength in their offspring.", - "type": "boolean", - "default": true, - "title": "Blend Attributes" - }, - "breed_cooldown": { - "description": "Time in seconds before the Entity can breed again.", - "type": "number", - "default": 60.0, - "title": "Breed Cooldown" - }, - "breed_items": { - "description": "The list of items that can be used to get the entity into the `love` state", - "title": "Breed Items", - "oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] - }, - "breeds_with": { - "description": "The list of entity definitions that this entity can breed with.", - "oneOf": [ - { "type": "object", "$ref": "#/definitions/breeds_with_spec" }, - { "uniqueItems": true, "type": "array", "items": { "type": "object", "$ref": "#/definitions/breeds_with_spec" } } - ], - "title": "Breeds With" - }, - "deny_parents_variant": { - "type": "object", - "description": "Determines how likely the baby of parents with the same variant will deny that variant and take a random variant within the given range instead.", - "additionalProperties": false, - "properties": { - "chance": { "type": "number", "default": 0, "description": "The percentage chance of denying the parents` variant.", "title": "Chance" }, - "max_variant": { "type": "integer", "default": 0, "description": "The inclusive maximum of the variant range.", "title": "Maximum Variant" }, - "min_variant": { "type": "integer", "default": 0, "description": "The inclusive minimum of the variant range.", "title": "Minimum Variant" } - }, - "title": "Deny Parents Variant" - }, - "environment_requirements": { - "type": "array", - "description": "The list of nearby block requirements to get the entity into the `love` state.", - "items": { - "type": "object", - "description": "A nearby block requirements to get the entity into the `love` state.", - "properties": { - "blocks": { - "type": "array", - "description": "The block types required nearby for the entity to breed.", - "items": { - "description": "A block type required nearby for the entity to breed.", - "type": "string", - "$ref": "../../../../general/blocks_item.json", - "title": "Blocks" - }, - "title": "Blocks" - }, - "count": { "type": "number", "description": "The number of the required block types nearby for the entity to breed.", "title": "Count" }, - "radius": { - "type": "number", - "description": "How many blocks radius from the mob's center to search in for the required blocks. Bounded between 0 and 16.", - "minimum": 0, - "title": "Radius" - } - }, - "title": "Environment Requirements" - }, - "title": "Environment Requirements" - }, - "extra_baby_chance": { - "type": "number", - "default": 0.0, - "description": "Chance that up to 16 babies will spawn between 0.0 and 1.0, where 1.0 is 100%.", - "minimum": 0.0, - "maximum": 1.0, - "title": "Extra Baby Chance" - }, - "love_filters": { - "$ref": "../../filters/filters.json", - "description": "The filters to run when attempting to fall in love.", - "title": "Love Filters" - }, - "mutation_factor": { - "type": "object", - "description": "Determines how likely the babies are to NOT inherit one of their parent's variances. Values are between 0.0 and 1.0, with a higher number meaning more likely to mutate.", - "additionalProperties": false, - "properties": { - "color": { - "type": "number", - "default": 0, - "minimum": 0.0, - "maximum": 1.0, - "description": "The percentage chance of a mutation on the entity's color.", - "title": "Color" - }, - "extra_variant": { - "type": "number", - "default": 0, - "minimum": 0.0, - "maximum": 1.0, - "description": "The percentage chance of a mutation on the entity's extra variant type.", - "title": "Extra Variant" - }, - "variant": { - "type": "number", - "default": 0, - "minimum": 0.0, - "maximum": 1.0, - "description": "The percentage chance of a mutation on the entity's variant type.", - "title": "Variant" - } - }, - "title": "Mutation Factor" - }, - "causes_pregnancy": { - "type": "boolean", - "default": false, - "description": "If true, the entity will become pregnant instead of spawning a baby.", - "title": "Causes Pregnancy" - }, - "inherit_tamed": { - "type": "boolean", - "default": true, - "description": "If true, the babies will be automatically tamed if its parents are", - "title": "Inherit Tamed" - }, - "require_full_health": { - "type": "boolean", - "default": false, - "description": "If true, the entity needs to be at full health before it can breed.", - "title": "Require Full Health" - }, - "require_tame": { - "type": "boolean", - "default": true, - "description": "If true, the entities need to be tamed first before they can breed.", - "title": "Require Tame" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.damage_sensor.json b/source/behavior/entities/1.13.0/components/minecraft.damage_sensor.json deleted file mode 100644 index 4365ccd7..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.damage_sensor.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.damage_sensor", - "title": "Damage Sensor 1.13.0", - "description": "Defines what events to call when this entity is damaged by specific entities or items.", - "type": "object", - "additionalProperties": false, - "definitions": { - "trigger": { - "properties": { - "cause": { - "type": "string", - "default": "none", - "description": "Type of damage that triggers the events.", - "title": "Cause", - "$ref": "../../../../general/entity/damage_source.json" - }, - "damage_multiplier": { - "type": "number", - "default": 1, - "description": "A multiplier that modifies the base damage from the damage cause. If deals_damage is true the multiplier can only reduce the damage the entity will take to a minimum of 1.", - "title": "Damage Multiplier" - }, - "deals_damage": { - "type": "boolean", - "default": true, - "description": "If true, the damage dealt to the entity will take away health from it, set to false to make the entity ignore that damage.", - "title": "Deals Damage" - }, - "on_damage": { - "type": "object", - "description": "Specifies filters for entity definitions and events.", - "title": "On Damage", - "properties": { - "filters": { "$ref": "../../filters/filters.json" }, - "event": { "type": "string", "pattern": "^.*$", "description": "Defines what event to run", "title": "Event" }, - "target": { - "$ref": "../../filters/filters/types/subject.json", - "description": "filters to use to define specific tests", - "title": "Target" - } - } - }, - "on_damage_sound_event": { - "$ref": "../../1.8.0/types/event.json", - "description": "Defines what sound to play, if any, when the on_damage filters are met.", - "title": "On Damage Sound Event" - } - } - } - }, - "properties": { - "triggers": { - "description": "The list of triggers with the events to call when taking specific kinds of damage.", - "title": "Triggers", - "oneOf": [ - { "type": "array", "items": { "$ref": "#/definitions/trigger" } }, - { "type": "object", "$ref": "#/definitions/trigger" } - ] - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.environment_sensor.json b/source/behavior/entities/1.13.0/components/minecraft.environment_sensor.json deleted file mode 100644 index bf8a917f..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.environment_sensor.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.environment_sensor", - "title": "Environment Sensor 1.13.0", - "description": "Creates a trigger based on environment conditions.", - "type": "object", - "additionalProperties": false, - "properties": { - "triggers": { - "description": "The list of triggers that fire when the environment conditions match the given filter criteria.", - "title": "Triggers", - "anyOf": [ - { "type": "array", "items": { "$ref": "../types/trigger.json" } }, - { "type": "object", "$ref": "../types/trigger.json" } - ] - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.experience_reward.json b/source/behavior/entities/1.13.0/components/minecraft.experience_reward.json deleted file mode 100644 index 97ebdff2..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.experience_reward.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.experience_reward", - "type": "object", - "title": "Experience Reward 1.13.0", - "description": "Defines the amount of experience rewarded when the entity dies or is successfully bred.", - "additionalProperties": false, - "properties": { - "on_bred": { - "$ref": "../../../../molang/number.json", - "description": "A molang expression defining the amount of experience rewarded when this entity is successfully bred. An array of expressions adds each expression's result together for a final total.", - "title": "On Bred" - }, - "on_death": { - "$ref": "../../../../molang/number.json", - "description": "A molang expression defining the amount of experience rewarded when this entity dies. An array of expressions adds each expression's result together for a final total.", - "title": "On Death" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.interact.json b/source/behavior/entities/1.13.0/components/minecraft.interact.json deleted file mode 100644 index a846d4ae..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.interact.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.interact", - "type": "object", - "title": "Interact 1.13.0", - "description": "Defines interactions with this entity.", - "additionalProperties": false, - "definitions": { - "interaction_spec": { - "type": "object", - "properties": { - "add_items": { - "type": "object", - "description": "Loot table with items to add to the player's inventory upon successful interaction.", - "title": "Add Items" - }, - "cooldown": { - "type": "number", - "default": 0, - "description": "Time in seconds before this entity can be interacted with again.", - "title": "Cooldown" - }, - "hurt_item": { - "type": "integer", - "default": 0, - "description": "The amount of damage the item will take when used to interact with this entity. A value of 0 means the item won't lose durability.", - "title": "Hurt Item" - }, - "interact_text": { - "type": "string", - "default": "", - "description": "Text to show when the player is able to interact in this way with this entity when playing with Touch-screen controls.", - "title": "Interact Text" - }, - "on_interact": { "$ref": "../types/trigger.json", "description": "Event to fire when the interaction occurs.", "title": "On Interact" }, - "particle_on_start": { - "type": "object", - "description": "Particle effect that will be triggered at the start of the interaction.", - "title": "Particle On Start", - "properties": { - "particle_offset_towards_interactor": { - "type": "boolean", - "description": "Whether or not the particle will appear closer to who performed the interaction.", - "title": "Particle Offset Towards Interactor" - }, - "particle_type": { "type": "string", "description": "The type of particle that will be spawned.", "title": "Particle Type" }, - "particle_y_offset": { - "type": "number", - "description": "Will offset the particle this amount in the y direction.", - "title": "Particle Y Offset" - } - } - }, - "play_sounds": { - "type": "string", - "default": "", - "description": "List of sounds to play when the interaction occurs.", - "title": "Play Sounds" - }, - "spawn_entities": { - "type": "string", - "default": "", - "description": "List of entities to spawn when the interaction occurs.", - "title": "Spawn Entities" - }, - "spawn_items": { - "type": "object", - "description": "Loot table with items to drop on the ground upon successful interaction.", - "title": "Spawn Items", - "properties": { - "table": { - "type": "string", - "default": "", - "description": "File path, relative to the Behavior Pack's path, to the loot table file.", - "title": "Table" - } - } - }, - "swing": { - "type": "boolean", - "default": false, - "description": "If true, the player will do the `swing` animation when interacting with this entity.", - "title": "Swing" - }, - "transform_to_item": { - "type": "string", - "default": "", - "description": "The item used will transform to this item upon successful interaction. Format: itemName:auxValue", - "title": "Transform To Item" - }, - "use_item": { "type": "boolean", "default": false, "description": "If true, the interaction will use an item.", "title": "Use Item" } - } - } - }, - "properties": { - "interactions": { - "title": "Interactions", - "description": "The interactions that are defined", - "oneOf": [ - { "type": "object", "$ref": "#/definitions/interaction_spec" }, - { "type": "array", "items": { "$ref": "#/definitions/interaction_spec" } } - ] - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.climb.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.climb.json deleted file mode 100644 index 084055f8..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.climb.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.climb", - "title": "Navigation.climb", - "description": "Allows this entity to generate paths that include vertical walls like the vanilla Spiders do.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.float.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.float.json deleted file mode 100644 index 22c5cf54..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.float.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.float", - "title": "Navigation.float", - "description": "Allows this entity to generate paths by flying around the air like the regular Ghast.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.fly.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.fly.json deleted file mode 100644 index e1e57079..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.fly.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.fly", - "title": "Navigation.fly", - "description": "Allows this entity to generate paths in the air like the vanilla Parrots do.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.generic.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.generic.json deleted file mode 100644 index af4ad780..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.generic.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.generic", - "title": "Navigation.generic 1.13.0", - "description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.swim.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.swim.json deleted file mode 100644 index 547fa78e..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.swim.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.swim", - "title": "Navigation.swim", - "description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.navigation.walk.json b/source/behavior/entities/1.13.0/components/minecraft.navigation.walk.json deleted file mode 100644 index 1d4f64eb..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.navigation.walk.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.walk", - "title": "Navigation.walk 1.13.0", - "description": "Allows this entity to generate paths by walking around and jumping up and down a block like regular mobs.", - "type": "object", - "additionalProperties": false, - "properties": { - "avoid_damage_blocks": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path", - "title": "Avoid Damage Blocks" - }, - "avoid_portals": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", - "title": "Avoid Portals" - }, - "avoid_sun": { - "type": "boolean", - "default": false, - "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", - "title": "Avoid Sun" - }, - "avoid_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder to avoid water when creating a path", - "title": "Avoid Water" - }, - "blocks_to_avoid": { - "type": "array", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "title": "Blocks To Avoid", - "items": { - "title": "Block", - "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$comment": "UNDOCUMENTED", - "oneOf": [ - { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } - ] - } - }, - "can_breach": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)", - "title": "Can Breach" - }, - "can_break_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door and break it", - "title": "Can Break Doors" - }, - "can_jump": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can jump up blocks", - "title": "Can Jump" - }, - "can_open_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door", - "title": "Can Open Doors" - }, - "can_open_iron_doors": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door", - "title": "Can Open Iron Doors" - }, - "can_pass_doors": { - "type": "boolean", - "default": true, - "description": "Whether a path can be created through a door", - "title": "Can Pass Doors" - }, - "can_path_from_air": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder that it can start pathing when in the air", - "title": "Can Path From Air" - }, - "can_path_over_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", - "title": "Can Path Over Lava" - }, - "can_path_over_water": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel on the surface of the water", - "title": "Can Path Over Water" - }, - "can_sink": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", - "title": "Can Sink" - }, - "can_swim": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", - "title": "Can Swim" - }, - "can_walk": { - "type": "boolean", - "default": true, - "description": "Tells the pathfinder whether or not it can walk on the ground outside water", - "title": "Can Walk" - }, - "can_walk_in_lava": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", - "title": "Can Walk In Lava" - }, - "is_amphibious": { - "type": "boolean", - "default": false, - "description": "Tells the pathfinder whether or not it can walk on the ground underwater", - "title": "Is Amphibious" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.projectile.json b/source/behavior/entities/1.13.0/components/minecraft.projectile.json deleted file mode 100644 index 4feb638d..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.projectile.json +++ /dev/null @@ -1,220 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.projectile", - "description": "Allows the entity to be a thrown entity.", - "type": "object", - "title": "Projectile 1.13.0", - "additionalProperties": false, - - "properties": { - "anchor": { "type": "number", "title": "Anchor", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }, - "angle_offset": { - "type": "number", - "default": 0, - "description": "Determines the angle at which the projectile is thrown", - "title": "Angle Offset" - }, - "catch_fire": { "type": "boolean", "default": false, "description": "If true, the entity hit will be set on fire", "title": "Catch Fire" }, - "crit_particle_on_hurt": { - "type": "boolean", - "default": false, - "description": "If true, the projectile will produce additional particles when a critical hit happens", - "title": "Crit Particle On Hurt" - }, - "destroy_on_hurt": { - "type": "boolean", - "default": false, - "description": "If true, this entity will be destroyed when hit", - "title": "Destroy On Hurt" - }, - "filter": { - "type": "string", - "default": "", - "description": "Entity Definitions defined here can't be hurt by the projectile", - "title": "Filter" - }, - "fire_affected_by_griefing": { - "type": "boolean", - "default": false, - "description": "If true, whether the projectile causes fire is affected by the mob griefing game rule", - "title": "Fire Affected By Griefing" - }, - "gravity": { - "type": "number", - "default": 0.05, - "description": "The gravity applied to this entity when thrown. The higher the value, the faster the entity falls", - "title": "Gravity" - }, - "hit_sound": { "type": "string", "default": "", "description": "The sound that plays when the projectile hits something", "title": "Hit Sound" }, - "homing": { "type": "boolean", "default": false, "description": "If true, the projectile homes in to the nearest entity", "title": "Homing" }, - "inertia": { - "type": "number", - "default": 0.99, - "description": "The fraction of the projectile's speed maintained every frame while traveling in air", - "title": "Inertia" - }, - "is_dangerous": { - "type": "boolean", - "default": false, - "description": "If true, the projectile will be treated as dangerous to the players", - "title": "Is Dangerous" - }, - "knockback": { - "type": "boolean", - "default": true, - "description": "If true, the projectile will knock back the entity it hits", - "title": "Knockback" - }, - "lightning": { "type": "boolean", "default": false, "description": "If true, the entity hit will be struck by lightning", "title": "Lightning" }, - "liquid_inertia": { - "type": "number", - "default": 0.6, - "description": "The fraction of the projectile's speed maintained every frame while traveling in water", - "title": "Liquid Inertia" - }, - "multiple_targets": { - "type": "boolean", - "default": true, - "description": "If true, the projectile can hit multiple entities per flight", - "title": "Multiple Targets" - }, - "offset": { - "type": "array", - "default": [0.0, 0.5, 0.0], - "description": "The offset from the entity's anchor where the projectile will spawn", - "title": "Offset", - "items": [ - { "type": "number", "title": "X" }, - { "type": "number", "title": "Y" }, - { "type": "number", "title": "Z" } - ] - }, - "on_fire_time": { - "type": "number", - "default": 5, - "description": "Time in seconds that the entity hit will be on fire for", - "title": "On Fire Time" - }, - "on_hit": { - "additionalProperties": false, - "type": "object", - "title": "On Hit", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "properties": { - "arrow_effect": { - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Arrow Effect", - "type": "object", - "additionalProperties": false - }, - "impact_damage": { - "additionalProperties": false, - "type": "object", - "title": "Impact Damage", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "properties": { - "damage": { - "oneOf": [{ "type": "number" }, { "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] }], - "title": "Damage", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "destroy_on_hit": { - "type": "boolean", - "title": "Destroy On Hit", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "knockback": { - "type": "boolean", - "title": "Knockback", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "max_critical_damage": { - "type": "integer", - "title": "Maximum Critical Damage", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "min_critical_damage": { - "type": "integer", - "title": "Minimum Critical Damage", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "power_multiplier": { - "type": "number", - "title": "Power Multiplier", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - }, - "semi_random_diff_damage": { - "type": "boolean", - "title": "Semi Random Diff Damage", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED" - } - } - }, - "stick_in_ground": { - "additionalProperties": false, - "title": "Stick In Ground", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "type": "object", - "properties": { "shake_time": { "title": "Shake Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" } } - } - } - }, - "particle": { "type": "string", "default": "iconcrack", "description": "Particle to use upon collision", "title": "Particle" }, - "potion_effect": { - "type": "integer", - "default": -1, - "description": "Defines the effect the arrow will apply to the entity it hits", - "title": "Potion Effect" - }, - "power": { "type": "number", "default": 1.3, "description": "Determines the velocity of the projectile", "title": "Power" }, - "reflect_on_hurt": { - "type": "boolean", - "default": false, - "description": "If true, this entity will be reflected back when hit", - "title": "Reflect On Hurt" - }, - "semi_random_diff_damage": { - "type": "boolean", - "default": false, - "description": "If true, damage will be randomized based on damage and speed", - "title": "Semi Random Diff Damage" - }, - "shoot_sound": { "type": "string", "default": "", "description": "The sound that plays when the projectile is shot", "title": "Shoot Sound" }, - "shoot_target": { - "type": "boolean", - "default": true, - "description": "If true, the projectile will be shot towards the target of the entity firing it", - "title": "Shoot Target" - }, - "should_bounce": { "type": "boolean", "default": false, "description": "If true, the projectile will bounce upon hit", "title": "Should Bounce" }, - "splash_potion": { - "type": "boolean", - "default": false, - "description": "If true, the projectile will be treated like a splash potion", - "title": "Splash Potion" - }, - "splash_range": { "type": "number", "default": 4, "description": "Radius in blocks of the `splash` effect", "title": "Splash Range" }, - "uncertainty_base": { - "type": "number", - "default": 0, - "description": "The base accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier", - "title": "Uncertainty Base" - }, - "uncertainty_multiplier": { - "type": "number", - "default": 0, - "description": "Determines how much difficulty affects accuracy. Accuracy is determined by the formula uncertaintyBase - difficultyLevel * uncertaintyMultiplier", - "title": "Uncertainty Multiplier" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.rideable.json b/source/behavior/entities/1.13.0/components/minecraft.rideable.json deleted file mode 100644 index b7c9842c..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.rideable.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.rideable", - "description": "Determines whether this entity can be ridden. Allows specifying the different seat positions and quantity.", - "type": "object", - "title": "Rideable 1.13.0", - "additionalProperties": false, - "definitions": { - "seats_spec": { - "additionalProperties": false, - "type": "object", - "properties": { - "lock_rider_rotation": { - "type": "number", - "default": 181, - "description": "Angle in degrees that a rider is allowed to rotate while riding this entity. Omit this property for no limit" - }, - "max_rider_count": { - "type": "integer", - "default": 0, - "description": "Defines the maximum number of riders that can be riding this entity for this seat to be valid" - }, - "min_rider_count": { - "type": "integer", - "default": 0, - "description": "Defines the minimum number of riders that need to be riding this entity before this seat can be used" - }, - "position": { - "$ref": "../../../../general/array_3_number.json", - "default": [0.0, 0.0, 0.0], - "description": "Position of this seat relative to this entity's position" - }, - "rotate_rider_by": { "$ref": "../../../../molang/number.json", "description": "Offset to rotate riders by" } - } - } - }, - - "properties": { - "priority": { "$ref": "types/priority.json" }, - "controlling_seat": { - "type": "integer", - "default": 0, - "description": "The seat that designates the driver of the entity", - "title": "Controlling Seat" - }, - "crouching_skip_interact": { - "type": "boolean", - "default": true, - "description": "If true, this entity can't be interacted with if the entity interacting with it is crouching", - "title": "Crouching Skip Interact" - }, - "family_types": { - "type": "array", - "items": { "type": "string", "title": "Family Type", "description": "The entity that can ride this entity" }, - "description": "List of entities that can ride this entity", - "title": "Family Types" - }, - "interact_text": { - "type": "string", - "default": "", - "description": "The text to display when the player can interact with the entity when playing with Touch-screen controls", - "title": "Interact Text" - }, - "pull_in_entities": { - "type": "boolean", - "default": false, - "description": "If true, this entity will pull in entities that are in the correct family_types into any available seats", - "title": "Pull In Entities" - }, - "rider_can_interact": { - "type": "boolean", - "default": false, - "description": "If true, this entity will be picked when looked at by the rider", - "title": "Rider Can Interact" - }, - "seat_count": { - "type": "integer", - "default": 1, - "description": "The number of entities that can ride this entity at the same time", - "title": "Seat Count" - }, - "seats": { - "description": "The list of positions and number of riders for each position for entities riding this entity", - "oneOf": [ - { "type": "object", "$ref": "#/definitions/seats_spec" }, - { "type": "array", "items": { "$ref": "#/definitions/seats_spec" } } - ], - "title": "Seats" - } - } -} diff --git a/source/behavior/entities/1.13.0/components/minecraft.transformation.json b/source/behavior/entities/1.13.0/components/minecraft.transformation.json deleted file mode 100644 index 91195bf1..00000000 --- a/source/behavior/entities/1.13.0/components/minecraft.transformation.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.transformation", - "description": "Defines this entity's ability to trade with players.", - "type": "object", - "title": "Transformation 1.13.0", - "additionalProperties": false, - - "properties": { - "add": { - "type": "object", - "description": "List of components to add to the entity after the transformation", - "properties": { "component_groups": { "type": "array", "description": "Names of component groups to add", "items": { "type": "string" } } }, - "title": "Add", - "additionalProperties": false - }, - "begin_transform_sound": { "type": "string", "description": "Sound to play when the transformation starts", "title": "Begin transform sound" }, - "delay": { - "type": "object", - "description": "Defines the properties of the delay for the transformation", - "title": "Delay", - "additionalProperties": false, - "properties": { - "block_assist_chance": { - "type": "number", - "default": 0, - "description": "Chance that the entity will look for nearby blocks that can speed up the transformation. Value must be between 0.0 and 1.0" - }, - "block_chance": { - "type": "number", - "default": 0, - "description": "Chance that, once a block is found, will help speed up the transformation" - }, - "block_max": { - "type": "integer", - "default": 0, - "description": "Maximum number of blocks the entity will look for to aid in the transformation. If not defined or set to 0, it will be set to the block radius" - }, - "block_radius": { - "type": "integer", - "default": 0, - "description": "Distance in Blocks that the entity will search for blocks that can help the transformation" - }, - "block_types": { - "type": "array", - "description": "List of blocks that can help the transformation of this entity", - "items": { "$ref": "../../../../general/block/identifier.json" } - }, - "value": { "type": "number", "default": 0, "description": "Time in seconds before the entity transforms" } - } - }, - "drop_equipment": { - "type": "boolean", - "default": false, - "description": "Cause the entity to drop all equipment upon transformation", - "title": "Drop equipment" - }, - "into": { "type": "string", "description": "Entity Definition that this entity will transform into", "title": "Into" }, - "keep_level": { - "type": "boolean", - "default": false, - "description": "If this entity has trades and has leveled up, it should maintain that level after transformation.", - "title": "Keep Level" - }, - "keep_owner": { - "type": "boolean", - "default": false, - "description": "If this entity is owned by another entity, it should remain owned after transformation.", - "title": "Keep Owner" - }, - "transformation_sound": { "type": "string", "description": "Sound to play when the entity is done transforming", "title": "Transformation Sound" } - } -} diff --git a/source/behavior/entities/1.13.0/components/types/priority.json b/source/behavior/entities/1.13.0/components/types/priority.json deleted file mode 100644 index 3bb27be2..00000000 --- a/source/behavior/entities/1.13.0/components/types/priority.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.1.13.0.priority", - "additionalProperties": false, - "type": "integer", - "title": "Priority", - "minimum": 0, - "description": "Allows the mob to drink potions based on specified environment conditions." -} diff --git a/source/behavior/entities/1.13.0/components/types/speed_multiplier.json b/source/behavior/entities/1.13.0/components/types/speed_multiplier.json deleted file mode 100644 index abb337cc..00000000 --- a/source/behavior/entities/1.13.0/components/types/speed_multiplier.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.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" -} diff --git a/source/behavior/entities/1.13.0/entities.json b/source/behavior/entities/1.13.0/entities.json deleted file mode 100644 index ad855205..00000000 --- a/source/behavior/entities/1.13.0/entities.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entity.1.13.0", - "type": "object", - "title": "Entity Behavior 1.13.0", - "description": "The minecraft entity behavior specification", - "required": ["format_version", "minecraft:entity"], - "properties": { - "format_version": { - "title": "1.13.0 Format Version", - "type": "string", - "const": "1.13.0", - "description": "A version that tells minecraft what type of data format can be expected when reading this file." - }, - "minecraft:entity": { "$ref": "./minecraft.entity.json", "description": "The entity minecraft behavior description", "title": "Entity" } - }, - "additionalProperties": false -} diff --git a/source/behavior/entities/1.13.0/events.json b/source/behavior/entities/1.13.0/events.json deleted file mode 100644 index c94fd7a0..00000000 --- a/source/behavior/entities/1.13.0/events.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.events1.13.0", - "type": "object", - "title": "Events 1.13.0", - "description": "Events for entities 1.13.0", - "definitions": { - "addremove": { - "additionalProperties": false, - "title": "Add Or Remove", - "description": "The components groups to add or remove", - "type": "object", - "properties": { - "component_groups": { - "title": "Component Groups", - "description": "The components groups to add or remove", - "type": "array", - "items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" } - } - } - }, - "event_base": { - "additionalProperties": false, - "type": "object", - "properties": { - "filters": { "$ref": "./../filters/filters.json" }, - "trigger": { "type": "string", "description": "Triggers additional events", "$comment": "UNDOCUMENTED", "title": "Trigger" }, - "add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" }, - "remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" }, - "randomize": { - "type": "array", - "description": "Randomly selects one of the following items based upon their weight and the total weights", - "title": "Randomize", - "items": { - "required": ["weight"], - "description": "Randomly selects one of the following items based upon their weight and the total weights", - "title": "Randomize", - "properties": { - "add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" }, - "remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" }, - "trigger": { "type": "string", "description": "Triggers additional events", "$comment": "UNDOCUMENTED", "title": "Trigger" }, - "weight": { - "type": "number", - "description": "The weight on how likely this section is to trigger", - "$comment": "UNDOCUMENTED", - "title": "Weight" - } - } - } - }, - "sequence": { - "type": "array", - "description": "A series of filters and components to be added", - "title": "Sequences", - "items": { - "description": "Filters and components to be added", - "title": "Sequence", - "type": "object", - "properties": { - "add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" }, - "remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" }, - "trigger": { "type": "string", "description": "Triggers additional events", "$comment": "UNDOCUMENTED", "title": "Trigger" }, - "filters": { "$ref": "./../filters/filters.json" } - } - } - } - } - } - }, - "properties": { - "minecraft:entity_transformed": { - "description": "Event called on an entity that transforms into another entity.", - "$ref": "#/definitions/event_base", - "title": "Entity Transformed" - }, - "minecraft:entity_born": { - "description": "Event called on an entity that is spawned through two entities breeding.", - "$ref": "#/definitions/event_base", - "title": "Entity Born" - }, - "minecraft:entity_spawned": { - "description": "Event called on an entity that is placed in the level.", - "$ref": "#/definitions/event_base", - "title": "Entity Spawned" - }, - "minecraft:on_prime": { - "description": "Event called on an entity whose fuse is lit and is ready to explode.", - "$ref": "#/definitions/event_base", - "title": "On Prime" - } - }, - "additionalProperties": { "$ref": "#/definitions/event_base" } -} diff --git a/source/behavior/entities/1.13.0/minecraft.entity.json b/source/behavior/entities/1.13.0/minecraft.entity.json deleted file mode 100644 index 9da01aef..00000000 --- a/source/behavior/entities/1.13.0/minecraft.entity.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "$id": "blockception.minecraft.behavior.entities.minecraft:entity.1.13.0", - "title": "Entity 1.13.0", - "required": ["description"], - "dependencies": { "component_groups": ["events"] }, - "additionalProperties": false, - "type": "object", - "properties": { - "description": { - "required": ["identifier"], - "title": "Description", - "description": "The description of the this entity", - "properties": { - "animations": { - "title": "Animations", - "description": "Sets the mapping of internal animation / animation controllers references to actual animations. This is a JSON Object of name/animation pairs", - "type": "object", - "additionalProperties": { - "title": "Animation (controller)", - "description": "The name of the animation controller / animation", - "type": "string" - } - }, - "identifier": { - "$ref": "../../../general/entity/identifier.json", - "description": "Sets the identifier for this entity's description.", - "title": "Identifier" - }, - "is_spawnable": { - "type": "boolean", - "title": "Is Spawnable", - "description": "Sets whether or not this entity has a spawn egg in the creative ui." - }, - "is_summonable": { - "type": "boolean", - "title": "Is Summonable Property", - "description": "Sets whether or not we can summon this entity using commands such as /summon." - }, - "is_experimental": { - "type": "boolean", - "title": "Is Experimental", - "description": "Sets whether or not this entity is experimental. Experimental entities are only enabled when the experimental toggle is enabled." - }, - "runtime_identifier": { - "type": "string", - "title": "Runtime Identifier", - "description": "Sets the name for the Vanilla Minecraft identifier this entity will use to build itself from." - }, - "scripts": { - "type": "object", - "title": "Scripts", - "description": "Sets the mapping of internal animation controller references to actual animation controller. This is a JSON Array of name/animation-controller pairs", - "properties": { - "animate": { - "type": "array", - "title": "Animate", - "description": "Tells minecraft to run which animation / animation controllers and under what conditions", - "items": { - "oneOf": [ - { "type": "string", "title": "Animation", "description": "The name of an animation controller referenced in animations" }, - { - "type": "object", - "title": "Conditional Animation", - "description": "A conditional statement to run the animation under a specified condition", - "$comment": "UNDOCUMENTED", - "additionalProperties": { "type": "string", "title": "Animation" } - } - ] - } - } - } - } - } - }, - "component_groups": { - "title": "Component Groups", - "description": "Each group when add / remove the default components", - "uniqueItems": true, - "type": "object", - "additionalProperties": { - "$ref": "./components.json", - "uniqueItems": true, - "description": "The components that are added as the foundation of the entity", - "title": "Component" - } - }, - "components": { - "$ref": "./components.json", - "uniqueItems": true, - "description": "The components that are added as the foundation of the entity", - "title": "Component" - }, - "events": { - "$ref": "./events.json", - "uniqueItems": true, - "description": "The events that the entity can run, these add or remove components_groups", - "title": "Events" - } - } -} diff --git a/source/behavior/entities/1.13.0/types/entity_types.json b/source/behavior/entities/1.13.0/types/entity_types.json deleted file mode 100644 index 63090731..00000000 --- a/source/behavior/entities/1.13.0/types/entity_types.json +++ /dev/null @@ -1 +0,0 @@ -{ "$ref": "../../1.8.0/types/entity_types.json" } diff --git a/source/behavior/entities/1.13.0/types/event.json b/source/behavior/entities/1.13.0/types/event.json deleted file mode 100644 index fe0b6dc5..00000000 --- a/source/behavior/entities/1.13.0/types/event.json +++ /dev/null @@ -1 +0,0 @@ -{ "$ref": "../../1.8.0/types/event.json" } diff --git a/source/behavior/entities/1.13.0/types/range_number_type.json b/source/behavior/entities/1.13.0/types/range_number_type.json deleted file mode 100644 index 014b8c02..00000000 --- a/source/behavior/entities/1.13.0/types/range_number_type.json +++ /dev/null @@ -1 +0,0 @@ -{ "$ref": "../../1.8.0/types/range_number_type.json" } diff --git a/source/behavior/entities/1.13.0/types/trigger.json b/source/behavior/entities/1.13.0/types/trigger.json deleted file mode 100644 index c72250ed..00000000 --- a/source/behavior/entities/1.13.0/types/trigger.json +++ /dev/null @@ -1 +0,0 @@ -{ "$ref": "../../1.8.0/types/trigger.json" } diff --git a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.find_mount.json b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.find_mount.json index 8cda4b7c..0bc057ec 100644 --- a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.find_mount.json +++ b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.find_mount.json @@ -4,9 +4,9 @@ "title": "Find Mount 1.8.0", "description": "Allows the mob to look around for another mob to ride atop it.", "additionalProperties": false, - "required": [], + "properties": { - "priority": { "$ref": "types/priority.json" }, + "priority": { "$ref": "./types/priority.json" }, "avoid_water": { "type": "boolean", "default": false, diff --git a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.go_home.json b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.go_home.json index 72dcec96..c4205762 100644 --- a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.go_home.json +++ b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.go_home.json @@ -1,10 +1,10 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.go_home", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.behavior.go_home", "type": "object", - "title": "Go Home 1.8.0", + "title": "Go Home 1.13.0", "description": "Allows the mob to move back to the position they were spawned.", "additionalProperties": false, - "required": [], + "properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" }, @@ -21,9 +21,22 @@ "title": "Interval" }, "on_home": { - "description": "Event to run when this mob gets home.", "title": "On Home", - "oneOf": [{ "$ref": "../types/trigger.json" }, { "type": "array", "items": { "$ref": "../types/trigger.json" } }] + "description": "Event to run when this mob gets home.", + "oneOf": [ + { "type": "string" }, + { "type": "object", "$ref": "../types/trigger.json" }, + { "type": "array", "items": { "$ref": "../types/trigger.json" } } + ] + }, + "on_failed": { + "title": "On Failed", + "description": "Event to run when this mob gets home.", + "oneOf": [ + { "type": "string" }, + { "type": "object", "$ref": "../types/trigger.json" }, + { "type": "array", "items": { "$ref": "../types/trigger.json" } } + ] } } } diff --git a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json index a9d63862..f84875a4 100644 --- a/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json +++ b/source/behavior/entities/1.8.0/behaviors/minecraft.behavior.stomp_turtle_egg.json @@ -1,10 +1,10 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.stomp_turtle_egg", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.behavior.stomp_turtle_egg", "description": "Allows this mob to stomp turtle eggs", "type": "object", - "title": "Stomp Turtle Egg 1.8.0", + "title": "Stomp Turtle Egg 1.13.0", "additionalProperties": false, - "required": [], + "properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" }, @@ -20,6 +20,12 @@ "description": "A random value to determine when to randomly move somewhere. This has a 1/interval chance to choose this goal", "title": "Interval" }, + "search_count": { + "type": "integer", + "default": 10, + "description": "The number of blocks each tick that the mob will check within it's search range and height for a valid block to move to. A value of 0 will have the mob check every block within range in one tick", + "title": "Search Count" + }, "search_height": { "type": "integer", "default": 1, diff --git a/source/behavior/entities/1.8.0/behaviors/types/priority.json b/source/behavior/entities/1.8.0/behaviors/types/priority.json index 0d27764a..0cb54ed4 100644 --- a/source/behavior/entities/1.8.0/behaviors/types/priority.json +++ b/source/behavior/entities/1.8.0/behaviors/types/priority.json @@ -1,8 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.priority", + "$id": "blockception.minecraft.behavior.entities.1.13.0.priority", "additionalProperties": false, "type": "integer", "title": "Priority", "minimum": 0, + "default": 8, "description": "Allows the mob to drink potions based on specified environment conditions." } diff --git a/source/behavior/entities/1.8.0/behaviors/types/speed_multiplier.json b/source/behavior/entities/1.8.0/behaviors/types/speed_multiplier.json index 92de4c80..abb337cc 100644 --- a/source/behavior/entities/1.8.0/behaviors/types/speed_multiplier.json +++ b/source/behavior/entities/1.8.0/behaviors/types/speed_multiplier.json @@ -1,5 +1,5 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.speed_multiplier", + "$id": "blockception.minecraft.behavior.entities.1.13.0.speed_multiplier", "additionalProperties": false, "default": 1.0, "description": "Movement speed multiplier of the mob when using this AI Goal.", diff --git a/source/behavior/entities/1.8.0/components/minecraft.ageable.json b/source/behavior/entities/1.8.0/components/minecraft.ageable.json index 9682ac0d..4599c315 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.ageable.json +++ b/source/behavior/entities/1.8.0/components/minecraft.ageable.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.ageable", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.ageable", "type": "object", - "title": "Ageable 1.8.0", + "title": "Ageable 1.13.0", "description": "Adds a timer for the entity to grow up. It can be accelerated by giving the entity the items it likes as defined by feedItems.", "additionalProperties": false, - "required": [], "properties": { "duration": { "type": "number", diff --git a/source/behavior/entities/1.8.0/components/minecraft.ambient_sound_interval.json b/source/behavior/entities/1.8.0/components/minecraft.ambient_sound_interval.json index 13c536ef..24bcaa09 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.ambient_sound_interval.json +++ b/source/behavior/entities/1.8.0/components/minecraft.ambient_sound_interval.json @@ -12,17 +12,17 @@ "description": "Level sound event to be played as the ambient sound.", "title": "Event Name" }, - "max": { + "range": { "type": "number", "default": 16, "description": "Maximum time in seconds to randomly add to the ambient sound delay time.", - "title": "Maximum" + "title": "Range" }, - "min": { + "value": { "type": "number", "default": 8, "description": "Minimum time in seconds before the entity plays its ambient sound again", - "title": "Minimum" + "title": "Value" } } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.breedable.json b/source/behavior/entities/1.8.0/components/minecraft.breedable.json index 2ef04f13..37a4ad27 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.breedable.json +++ b/source/behavior/entities/1.8.0/components/minecraft.breedable.json @@ -1,7 +1,7 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.breedable", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.breedable", "type": "object", - "title": "Breedable 1.8.0", + "title": "Breedable 1.13.0", "additionalProperties": false, "description": "Defines the way an entity can get into the `love` state.", "definitions": { @@ -9,7 +9,7 @@ "type": "object", "description": "An entity definitions that this entity can breed with.", "additionalItems": false, - "required": [], + "properties": { "baby_type": { "type": "string", "description": "The entity definition of this entity's babies.", "title": "Baby Type" }, "breed_event": { "$ref": "../types/event.json", "description": "Event to run when this entity breeds.", "title": "Breed Event" }, @@ -17,7 +17,7 @@ } } }, - "required": [], + "properties": { "allow_sitting": { "description": "If true, entities can breed while sitting.", "type": "boolean", "default": false, "title": "Allow Sitting" }, "blend_attributes": { @@ -35,32 +35,15 @@ "breed_items": { "description": "The list of items that can be used to get the entity into the `love` state", "title": "Breed Items", - "oneOf": [ - { - "type": "array", - "items": { - "type": "string", - "description": "An item that can be used to get the entity into the `love` state", - "$ref": "../../../../general/item/identifier.json", - "title": "Breed Item" - } - }, - { "type": "string", "$ref": "../../../../general/item/identifier.json" } - ] + "oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] }, "breeds_with": { "description": "The list of entity definitions that this entity can breed with.", - "title": "Breeds With", "oneOf": [ { "type": "object", "$ref": "#/definitions/breeds_with_spec" }, { "uniqueItems": true, "type": "array", "items": { "type": "object", "$ref": "#/definitions/breeds_with_spec" } } - ] - }, - "causes_pregnancy": { - "type": "boolean", - "default": false, - "description": "If true, the entity will become pregnant instead of spawning a baby.", - "title": "Causes Pregnancy" + ], + "title": "Breeds With" }, "deny_parents_variant": { "type": "object", @@ -111,12 +94,6 @@ "maximum": 1.0, "title": "Extra Baby Chance" }, - "inherit_tamed": { - "description": "If true, the babies will be automatically tamed if its parents are", - "type": "boolean", - "default": true, - "title": "Inherit Tamed" - }, "love_filters": { "$ref": "../../filters/filters.json", "description": "The filters to run when attempting to fall in love.", @@ -154,10 +131,28 @@ }, "title": "Mutation Factor" }, + "causes_pregnancy": { + "type": "boolean", + "default": false, + "description": "If true, the entity will become pregnant instead of spawning a baby.", + "title": "Causes Pregnancy" + }, + "inherit_tamed": { + "type": "boolean", + "default": true, + "description": "If true, the babies will be automatically tamed if its parents are", + "title": "Inherit Tamed" + }, + "require_full_health": { + "type": "boolean", + "default": false, + "description": "If true, the entity needs to be at full health before it can breed.", + "title": "Require Full Health" + }, "require_tame": { "type": "boolean", - "description": "If true, the entities need to be tamed first before they can breed.", "default": true, + "description": "If true, the entities need to be tamed first before they can breed.", "title": "Require Tame" } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.damage_sensor.json b/source/behavior/entities/1.8.0/components/minecraft.damage_sensor.json index 73d8dbd3..4365ccd7 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.damage_sensor.json +++ b/source/behavior/entities/1.8.0/components/minecraft.damage_sensor.json @@ -1,20 +1,24 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.damage_sensor", - "title": "Damage Sensor 1.8.0", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.damage_sensor", + "title": "Damage Sensor 1.13.0", "description": "Defines what events to call when this entity is damaged by specific entities or items.", + "type": "object", + "additionalProperties": false, "definitions": { - "damagespec": { - "type": "object", - "description": "A trigger with the events to call when taking specific kinds of damage.", - "additionalProperties": false, - "title": "Damage Trigger", + "trigger": { "properties": { "cause": { "type": "string", "default": "none", "description": "Type of damage that triggers the events.", - "$ref": "../../../../general/entity_damage.json", - "title": "Cause" + "title": "Cause", + "$ref": "../../../../general/entity/damage_source.json" + }, + "damage_multiplier": { + "type": "number", + "default": 1, + "description": "A multiplier that modifies the base damage from the damage cause. If deals_damage is true the multiplier can only reduce the damage the entity will take to a minimum of 1.", + "title": "Damage Multiplier" }, "deals_damage": { "type": "boolean", @@ -26,14 +30,32 @@ "type": "object", "description": "Specifies filters for entity definitions and events.", "title": "On Damage", - "$ref": "../types/trigger.json" + "properties": { + "filters": { "$ref": "../../filters/filters.json" }, + "event": { "type": "string", "pattern": "^.*$", "description": "Defines what event to run", "title": "Event" }, + "target": { + "$ref": "../../filters/filters/types/subject.json", + "description": "filters to use to define specific tests", + "title": "Target" + } + } + }, + "on_damage_sound_event": { + "$ref": "../../1.8.0/types/event.json", + "description": "Defines what sound to play, if any, when the on_damage filters are met.", + "title": "On Damage Sound Event" } } } }, - "required": [], - "oneOf": [ - { "type": "object", "$ref": "#/definitions/damagespec" }, - { "type": "array", "items": { "$ref": "#/definitions/damagespec" } } - ] + "properties": { + "triggers": { + "description": "The list of triggers with the events to call when taking specific kinds of damage.", + "title": "Triggers", + "oneOf": [ + { "type": "array", "items": { "$ref": "#/definitions/trigger" } }, + { "type": "object", "$ref": "#/definitions/trigger" } + ] + } + } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.environment_sensor.json b/source/behavior/entities/1.8.0/components/minecraft.environment_sensor.json index 5d80f0b8..bf8a917f 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.environment_sensor.json +++ b/source/behavior/entities/1.8.0/components/minecraft.environment_sensor.json @@ -1,31 +1,17 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.environment_sensor", - "title": "Environment Sensor 1.8.0", - "description": "Allows the entity to power jump like the horse does in vanilla.", - "definitions": { - "on_environement": { - "type": "object", - "additionalProperties": false, - "description": "Allows the entity to power jump like the horse does in vanilla.", - "title": "On Environement", - "properties": { - "filters": { "$ref": "../../filters/filters.json", "description": "The filters to evualate for this environment sensor", "title": "Filters" }, - "event": { "type": "string", "pattern": "^.+$", "description": "The event to trigger if the filters are true", "title": "Event" }, - "target": { "description": "The target of the event", "$ref": "../../filters/filters/types/subject.json" } - } + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.environment_sensor", + "title": "Environment Sensor 1.13.0", + "description": "Creates a trigger based on environment conditions.", + "type": "object", + "additionalProperties": false, + "properties": { + "triggers": { + "description": "The list of triggers that fire when the environment conditions match the given filter criteria.", + "title": "Triggers", + "anyOf": [ + { "type": "array", "items": { "$ref": "../types/trigger.json" } }, + { "type": "object", "$ref": "../types/trigger.json" } + ] } - }, - "required": [], - "anyOf": [ - { "type": "object", "$ref": "#/definitions/on_environement" }, - { - "type": "array", - "items": { - "oneOf": [ - { "$ref": "#/definitions/on_environement" }, - { "type": "object", "properties": { "on_environment": { "$ref": "#/definitions/on_environement" } } } - ] - } - } - ] + } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.experience_reward.json b/source/behavior/entities/1.8.0/components/minecraft.experience_reward.json index 85d5d4f2..97ebdff2 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.experience_reward.json +++ b/source/behavior/entities/1.8.0/components/minecraft.experience_reward.json @@ -1,22 +1,19 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.experience_reward", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.experience_reward", "type": "object", - "title": "Experience Reward 1.8.0", + "title": "Experience Reward 1.13.0", "description": "Defines the amount of experience rewarded when the entity dies or is successfully bred.", "additionalProperties": false, "properties": { "on_bred": { - "default": 0, - "description": "A Molang expression defining the amount of experience rewarded when this entity is successfully bred. An array of expressions adds each expression's result together for a final total.", - "title": "On Bred", - "$ref": "../../../../molang/number.json" + "$ref": "../../../../molang/number.json", + "description": "A molang expression defining the amount of experience rewarded when this entity is successfully bred. An array of expressions adds each expression's result together for a final total.", + "title": "On Bred" }, "on_death": { - "type": "string", - "default": 0, - "description": "A Molang expression defining the amount of experience rewarded when this entity dies. An array of expressions adds each expression's result together for a final total.", - "title": "On Death", - "$ref": "../../../../molang/number.json" + "$ref": "../../../../molang/number.json", + "description": "A molang expression defining the amount of experience rewarded when this entity dies. An array of expressions adds each expression's result together for a final total.", + "title": "On Death" } } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.interact.json b/source/behavior/entities/1.8.0/components/minecraft.interact.json index 72909cf5..a846d4ae 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.interact.json +++ b/source/behavior/entities/1.8.0/components/minecraft.interact.json @@ -1,64 +1,104 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.interact", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.interact", + "type": "object", + "title": "Interact 1.13.0", "description": "Defines interactions with this entity.", - "title": "Interact 1.8.0", + "additionalProperties": false, "definitions": { - "interact_object": { + "interaction_spec": { "type": "object", - "description": "An interact object", - "title": "Interact", "properties": { "add_items": { "type": "object", - "description": "Loot table with items to add to the player's inventory upon successful interaction", - "properties": { "table": { "type": "string", "description": "File path, relative to the Behavior Pack's path, to the loot table file" } } + "description": "Loot table with items to add to the player's inventory upon successful interaction.", + "title": "Add Items" + }, + "cooldown": { + "type": "number", + "default": 0, + "description": "Time in seconds before this entity can be interacted with again.", + "title": "Cooldown" }, - "cooldown": { "type": "number", "default": 0, "description": "Time in seconds before this entity can be interacted with again" }, "hurt_item": { "type": "integer", "default": 0, - "description": "The amount of damage the item will take when used to interact with this entity. A value of 0 means the item won't lose durability" + "description": "The amount of damage the item will take when used to interact with this entity. A value of 0 means the item won't lose durability.", + "title": "Hurt Item" }, "interact_text": { "type": "string", "default": "", - "description": "Text to show when the player is able to interact in this way with this entity when playing with Touch-screen controls" + "description": "Text to show when the player is able to interact in this way with this entity when playing with Touch-screen controls.", + "title": "Interact Text" }, - "on_interact": { "$ref": "../types/trigger.json" }, + "on_interact": { "$ref": "../types/trigger.json", "description": "Event to fire when the interaction occurs.", "title": "On Interact" }, "particle_on_start": { "type": "object", - "description": "Particle effect that will be triggered at the start of the interaction", + "description": "Particle effect that will be triggered at the start of the interaction.", + "title": "Particle On Start", "properties": { - "particle_type": { "type": "string", "description": "The type of particle that will be spawned" }, - "particle_y_offset": { "type": "string", "description": "Will offset the particle this amount in the y direction" }, "particle_offset_towards_interactor": { - "type": "string", - "description": "Whether or not the particle will appear closer to who performed the interaction" + "type": "boolean", + "description": "Whether or not the particle will appear closer to who performed the interaction.", + "title": "Particle Offset Towards Interactor" + }, + "particle_type": { "type": "string", "description": "The type of particle that will be spawned.", "title": "Particle Type" }, + "particle_y_offset": { + "type": "number", + "description": "Will offset the particle this amount in the y direction.", + "title": "Particle Y Offset" } } }, - "play_sounds": { "type": "string", "default": "", "description": "List of sounds to play when the interaction occurs" }, - "spawn_entities": { "type": "string", "default": "", "description": "List of entities to spawn when the interaction occurs" }, + "play_sounds": { + "type": "string", + "default": "", + "description": "List of sounds to play when the interaction occurs.", + "title": "Play Sounds" + }, + "spawn_entities": { + "type": "string", + "default": "", + "description": "List of entities to spawn when the interaction occurs.", + "title": "Spawn Entities" + }, "spawn_items": { "type": "object", - "description": "Loot table with items to drop on the ground upon successful interaction", - "properties": { "table": { "type": "string", "description": "File path, relative to the Behavior Pack's path, to the loot table file" } } + "description": "Loot table with items to drop on the ground upon successful interaction.", + "title": "Spawn Items", + "properties": { + "table": { + "type": "string", + "default": "", + "description": "File path, relative to the Behavior Pack's path, to the loot table file.", + "title": "Table" + } + } }, "swing": { "type": "boolean", "default": false, - "description": "If true, the player will do the `swing` animation when interacting with this entity" + "description": "If true, the player will do the `swing` animation when interacting with this entity.", + "title": "Swing" }, "transform_to_item": { "type": "string", - "description": "The item used will transform to this item upon successful interaction. Format: itemName:auxValue" + "default": "", + "description": "The item used will transform to this item upon successful interaction. Format: itemName:auxValue", + "title": "Transform To Item" }, - "use_item": { "type": "boolean", "default": false, "description": "If true, the interaction will use an item" } + "use_item": { "type": "boolean", "default": false, "description": "If true, the interaction will use an item.", "title": "Use Item" } } } }, - "anyOf": [ - { "type": "object", "$ref": "#/definitions/interact_object" }, - { "type": "array", "items": { "$ref": "#/definitions/interact_object" } } - ] + "properties": { + "interactions": { + "title": "Interactions", + "description": "The interactions that are defined", + "oneOf": [ + { "type": "object", "$ref": "#/definitions/interaction_spec" }, + { "type": "array", "items": { "$ref": "#/definitions/interaction_spec" } } + ] + } + } } diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.climb.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.climb.json index e1d2a887..084055f8 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.climb.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.climb.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.climb", - "type": "object", - "title": "Navigation.climb 1.8.0", - "additionalProperties": false, + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.climb", + "title": "Navigation.climb", "description": "Allows this entity to generate paths that include vertical walls like the vanilla Spiders do.", - "required": [], + "type": "object", + "additionalProperties": false, "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,9 +36,10 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", + "$comment": "UNDOCUMENTED", "oneOf": [ { "type": "string", "$ref": "../../../../general/block/identifier.json" }, - { "type": "object", "properties": { "name": { "$ref": "../../../../general/block/identifier.json", "title": "Name" } } } + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } ] } }, diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.float.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.float.json index 9fcc53a2..22c5cf54 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.float.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.float.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.float", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.float", + "title": "Navigation.float", + "description": "Allows this entity to generate paths by flying around the air like the regular Ghast.", "type": "object", - "title": "Navigation.float 1.8.0", "additionalProperties": false, - "description": "Allows this entity to generate paths that include vertical walls like the vanilla Spiders do.", - "required": [], "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,7 +36,11 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$ref": "../../../../general/block/identifier.json" + "$comment": "UNDOCUMENTED", + "oneOf": [ + { "type": "string", "$ref": "../../../../general/block/identifier.json" }, + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } + ] } }, "can_breach": { diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.fly.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.fly.json index 72f879bc..e1e57079 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.fly.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.fly.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.fly", - "type": "object", - "title": "Navigation.walk.fly 1.8.0", - "additionalProperties": false, + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.fly", + "title": "Navigation.fly", "description": "Allows this entity to generate paths in the air like the vanilla Parrots do.", - "required": [], + "type": "object", + "additionalProperties": false, "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,7 +36,11 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$ref": "../../../../general/block/identifier.json" + "$comment": "UNDOCUMENTED", + "oneOf": [ + { "type": "string", "$ref": "../../../../general/block/identifier.json" }, + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } + ] } }, "can_breach": { diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.generic.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.generic.json index 7f70ac40..af4ad780 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.generic.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.generic.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.generic", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.generic", + "title": "Navigation.generic 1.13.0", + "description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.", "type": "object", - "title": "Navigation.walk.generic 1.8.0", "additionalProperties": false, - "description": "Allows this entity to generate paths in the air like the vanilla Parrots do.", - "required": [], "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,7 +36,11 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$ref": "../../../../general/block/identifier.json" + "$comment": "UNDOCUMENTED", + "oneOf": [ + { "type": "string", "$ref": "../../../../general/block/identifier.json" }, + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } + ] } }, "can_breach": { diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.swim.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.swim.json index ed1d072f..547fa78e 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.swim.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.swim.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.swim", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.swim", + "title": "Navigation.swim", + "description": "Allows this entity to generate paths by walking, swimming, flying and/or climbing around and jumping up and down a block.", "type": "object", - "title": "Navigation.walk.swim 1.8.0", "additionalProperties": false, - "description": "Allows this entity to generate paths that include water.", - "required": [], "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,7 +36,11 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$ref": "../../../../general/block/identifier.json" + "$comment": "UNDOCUMENTED", + "oneOf": [ + { "type": "string", "$ref": "../../../../general/block/identifier.json" }, + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } + ] } }, "can_breach": { diff --git a/source/behavior/entities/1.8.0/components/minecraft.navigation.walk.json b/source/behavior/entities/1.8.0/components/minecraft.navigation.walk.json index 099ddf99..1d4f64eb 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.navigation.walk.json +++ b/source/behavior/entities/1.8.0/components/minecraft.navigation.walk.json @@ -1,10 +1,9 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.navigation.walk", - "type": "object", - "title": "Navigation.walk.skip 1.8.0", - "additionalProperties": false, + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.navigation.walk", + "title": "Navigation.walk 1.13.0", "description": "Allows this entity to generate paths by walking around and jumping up and down a block like regular mobs.", - "required": [], + "type": "object", + "additionalProperties": false, "properties": { "avoid_damage_blocks": { "type": "boolean", @@ -37,7 +36,11 @@ "items": { "title": "Block", "description": "Tells the pathfinder which blocks to avoid when creating a path", - "$ref": "../../../../general/block/identifier.json" + "$comment": "UNDOCUMENTED", + "oneOf": [ + { "type": "string", "$ref": "../../../../general/block/identifier.json" }, + { "type": "object", "title": "Block To Avoid", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } } + ] } }, "can_breach": { @@ -52,13 +55,6 @@ "description": "Tells the pathfinder that it can path through a closed door and break it", "title": "Can Break Doors" }, - "can_float": { - "type": "boolean", - "default": true, - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Can Float" - }, "can_jump": { "type": "boolean", "default": true, diff --git a/source/behavior/entities/1.8.0/components/minecraft.projectile.json b/source/behavior/entities/1.8.0/components/minecraft.projectile.json index 54f4b0fe..4feb638d 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.projectile.json +++ b/source/behavior/entities/1.8.0/components/minecraft.projectile.json @@ -1,12 +1,12 @@ { - "$id": "blockception.minecraft.behavior.entities.1.12.0.minecraft.projectile", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.projectile", "description": "Allows the entity to be a thrown entity.", "type": "object", - "title": "Projectile 1.12.0", + "title": "Projectile 1.13.0", "additionalProperties": false, "properties": { - "anchor": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Anchor" }, + "anchor": { "type": "number", "title": "Anchor", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }, "angle_offset": { "type": "number", "default": 0, @@ -45,7 +45,6 @@ "title": "Gravity" }, "hit_sound": { "type": "string", "default": "", "description": "The sound that plays when the projectile hits something", "title": "Hit Sound" }, - "hit_ground_sound": { "type": "string", "default": "", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Hit Ground Sound" }, "homing": { "type": "boolean", "default": false, "description": "If true, the projectile homes in to the nearest entity", "title": "Homing" }, "inertia": { "type": "number", @@ -80,13 +79,13 @@ }, "offset": { "type": "array", - "default": [0, 0.5, 0], + "default": [0.0, 0.5, 0.0], "description": "The offset from the entity's anchor where the projectile will spawn", "title": "Offset", "items": [ - { "type": "number", "description": "X", "title": "X" }, - { "type": "number", "description": "Y", "title": "Y" }, - { "type": "number", "description": "Z", "title": "Z" } + { "type": "number", "title": "X" }, + { "type": "number", "title": "Y" }, + { "type": "number", "title": "Z" } ] }, "on_fire_time": { @@ -98,179 +97,75 @@ "on_hit": { "additionalProperties": false, "type": "object", + "title": "On Hit", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", - "title": "On Hit", "properties": { - "catch_fire": { - "additionalProperties": false, + "arrow_effect": { "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", - "title": "Catch Fire", + "title": "Arrow Effect", "type": "object", - "properties": { - "fire_affected_by_griefing": { - "type": "boolean", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Fire Affected By Griefing" - } - } - }, - "definition_event": { - "additionalProperties": false, - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Definition Event", - "type": "object", - "properties": { - "affect_projectile": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Affect Projectile" }, - "event_trigger": { "$ref": "../types/event.json" } - } - }, - "douse_fire": { - "type": "object", - "additionalProperties": false, - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Douse Fire" - }, - "grant_xp": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Grant XP", - "effect": "levitation", - "properties": { - "minXP": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Minimum XP" }, - "maxXP": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Maximum XP" } - } + "additionalProperties": false }, "impact_damage": { "additionalProperties": false, "type": "object", + "title": "Impact Damage", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", - "title": "Impact Damage", "properties": { - "catch_fire": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Catch Fire" }, - "damage": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Damage" }, - "destroy_on_hit": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Destroy On Hit" }, - "knockback": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Knockback" }, + "damage": { + "oneOf": [{ "type": "number" }, { "type": "array", "items": [{ "type": "integer" }, { "type": "integer" }] }], + "title": "Damage", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, + "destroy_on_hit": { + "type": "boolean", + "title": "Destroy On Hit", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, + "knockback": { + "type": "boolean", + "title": "Knockback", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, + "max_critical_damage": { + "type": "integer", + "title": "Maximum Critical Damage", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, + "min_critical_damage": { + "type": "integer", + "title": "Minimum Critical Damage", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, + "power_multiplier": { + "type": "number", + "title": "Power Multiplier", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED" + }, "semi_random_diff_damage": { "type": "boolean", + "title": "Semi Random Diff Damage", "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Semi Random Diff Damage" + "$comment": "UNDOCUMENTED" } } }, - "mob_effect": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Mob Effect", - "effect": "levitation", - "properties": { - "effect": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Effect" }, - "durationeasy": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Duration Easy" }, - "durationnormal": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Duration Normal" }, - "durationhard": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Duration Hard" }, - "amplifier": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Amplifier" } - } - }, - "particle_on_hit": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Particle On Hit", - "properties": { - "particle_type": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Particle Type" }, - "num_particles": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Number Particles" }, - "on_entity_hit": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "On Entity Hit" }, - "on_other_hit": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "On Other Hit" } - } - }, - "remove_on_hit": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Remove On Hit" - }, - "spawn_chance": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Spawn Chance", - "properties": { - "first_spawn_percent_chance": { - "type": "number", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "First Spawn Percent Chance" - }, - "first_spawn_chance": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "First Spawn Chance" }, - "second_spawn_chance": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Second Spawn Chance" }, - "first_spawn_count": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "First Spawn Count" }, - "second_spawn_count": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Second Spawn Count" }, - "spawn_definition": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Spawn Definition" }, - "spawn_baby": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Spawn Baby" } - } - }, - "spawn_aoe_cloud": { - "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Spawn Aoe Cloud", - "properties": { - "radius": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Radius" }, - "radius_on_use": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Radius On Use" }, - "potion": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Potion" }, - "particle": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Particle" }, - "duration": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Duration" }, - "color": { - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Color", - "type": "array", - "format": "color-array", - "items": [ - { "type": "integer", "minimum": 0, "maximum": 255, "description": "Red", "title": "R" }, - { "type": "integer", "minimum": 0, "maximum": 255, "description": "Green", "title": "G" }, - { "type": "integer", "minimum": 0, "maximum": 255, "description": "Blue", "title": "B" } - ] - }, - "affect_owner": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Affect Owner" }, - "reapplication_delay": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Reapplication Delay" } - } - }, "stick_in_ground": { "additionalProperties": false, - "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", "title": "Stick In Ground", - "properties": { "shake_time": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Shake Time" } } - }, - "teleport_owner": { - "additionalProperties": false, - "type": "object", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", - "title": "Teleport Owner" - }, - "thrown_potion_effect": { - "additionalProperties": false, "type": "object", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", - "title": "Thrown Potion Effect" + "properties": { "shake_time": { "title": "Shake Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" } } } } }, @@ -309,7 +204,6 @@ "title": "Splash Potion" }, "splash_range": { "type": "number", "default": 4, "description": "Radius in blocks of the `splash` effect", "title": "Splash Range" }, - "stop_on_hurt": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Stop On Hurt" }, "uncertainty_base": { "type": "number", "default": 0, diff --git a/source/behavior/entities/1.8.0/components/minecraft.rideable.json b/source/behavior/entities/1.8.0/components/minecraft.rideable.json index a075decc..b7c9842c 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.rideable.json +++ b/source/behavior/entities/1.8.0/components/minecraft.rideable.json @@ -1,45 +1,41 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.rideable", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.rideable", "description": "Determines whether this entity can be ridden. Allows specifying the different seat positions and quantity.", "type": "object", - "title": "Rideable 1.8.0", + "title": "Rideable 1.13.0", "additionalProperties": false, "definitions": { "seats_spec": { "additionalProperties": false, "type": "object", - "title": "Seats", "properties": { "lock_rider_rotation": { "type": "number", "default": 181, - "description": "Angle in degrees that a rider is allowed to rotate while riding this entity. Omit this property for no limit", - "title": "Lock Rider Rotation" + "description": "Angle in degrees that a rider is allowed to rotate while riding this entity. Omit this property for no limit" }, "max_rider_count": { "type": "integer", "default": 0, - "description": "Defines the maximum number of riders that can be riding this entity for this seat to be valid", - "title": "Maximum Rider Count" + "description": "Defines the maximum number of riders that can be riding this entity for this seat to be valid" }, "min_rider_count": { "type": "integer", "default": 0, - "description": "Defines the minimum number of riders that need to be riding this entity before this seat can be used", - "title": "Minimum Rider Count" + "description": "Defines the minimum number of riders that need to be riding this entity before this seat can be used" }, "position": { "$ref": "../../../../general/array_3_number.json", "default": [0.0, 0.0, 0.0], - "description": "Position of this seat relative to this entity's position", - "title": "Position" + "description": "Position of this seat relative to this entity's position" }, - "rotate_rider_by": { "type": "number", "default": 0, "description": "Offset to rotate riders by", "title": "Rotate Rider By" } + "rotate_rider_by": { "$ref": "../../../../molang/number.json", "description": "Offset to rotate riders by" } } } }, - "required": [], + "properties": { + "priority": { "$ref": "types/priority.json" }, "controlling_seat": { "type": "integer", "default": 0, @@ -54,7 +50,7 @@ }, "family_types": { "type": "array", - "items": { "type": "string" }, + "items": { "type": "string", "title": "Family Type", "description": "The entity that can ride this entity" }, "description": "List of entities that can ride this entity", "title": "Family Types" }, diff --git a/source/behavior/entities/1.8.0/components/minecraft.transformation.json b/source/behavior/entities/1.8.0/components/minecraft.transformation.json index 9c140c64..91195bf1 100644 --- a/source/behavior/entities/1.8.0/components/minecraft.transformation.json +++ b/source/behavior/entities/1.8.0/components/minecraft.transformation.json @@ -1,10 +1,10 @@ { - "$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.transformation", + "$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.transformation", "description": "Defines this entity's ability to trade with players.", "type": "object", - "title": "Transformation 1.8.0", + "title": "Transformation 1.13.0", "additionalProperties": false, - "required": [], + "properties": { "add": { "type": "object", @@ -13,12 +13,12 @@ "title": "Add", "additionalProperties": false }, - "begin_transform_sound": { "type": "string", "description": "Sound to play when the transformation starts", "title": "Begin Transform Sound" }, + "begin_transform_sound": { "type": "string", "description": "Sound to play when the transformation starts", "title": "Begin transform sound" }, "delay": { - "title": "Delay", - "additionalProperties": false, "type": "object", "description": "Defines the properties of the delay for the transformation", + "title": "Delay", + "additionalProperties": false, "properties": { "block_assist_chance": { "type": "number", @@ -43,7 +43,7 @@ "block_types": { "type": "array", "description": "List of blocks that can help the transformation of this entity", - "items": { "$ref": "../../../../general/blocks_item.json" } + "items": { "$ref": "../../../../general/block/identifier.json" } }, "value": { "type": "number", "default": 0, "description": "Time in seconds before the entity transforms" } } @@ -52,7 +52,7 @@ "type": "boolean", "default": false, "description": "Cause the entity to drop all equipment upon transformation", - "title": "Drop Equipment" + "title": "Drop equipment" }, "into": { "type": "string", "description": "Entity Definition that this entity will transform into", "title": "Into" }, "keep_level": {