Initial Commit
This commit is contained in:
139
behaviour/entities/1.8.0/components/minecraft.breathable.json
Normal file
139
behaviour/entities/1.8.0/components/minecraft.breathable.json
Normal file
@@ -0,0 +1,139 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.breathable",
|
||||
"type": "object",
|
||||
"title": "Breathable 1.8.0",
|
||||
"additionalProperties": false,
|
||||
"description": "Defines what blocks this entity can breathe in and gives them the ability to suffocate.",
|
||||
"required": [],
|
||||
"properties": {
|
||||
"totalSupply": {
|
||||
"type": "integer",
|
||||
"default": 15,
|
||||
"description": "Time in seconds the entity can hold its breath",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"total_supply": {
|
||||
"type": "integer",
|
||||
"default": 15,
|
||||
"description": "Time in seconds the entity can hold its breath",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"suffocateTime": {
|
||||
"type": "integer",
|
||||
"default": -20,
|
||||
"description": "Time in seconds between suffocation damage",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"suffocate_time": {
|
||||
"type": "integer",
|
||||
"default": -20,
|
||||
"description": "Time in seconds between suffocation damage",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"inhaleTime": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Time in seconds to recover breath to maximum",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"inhale_time": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "Time in seconds to recover breath to maximum",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathesAir": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, this entity can breathe in air",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathes_air": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, this entity can breathe in air",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathesWater": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in water",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathes_water": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in water",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathesLava": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in lava",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathes_lava": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in lava",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathesSolids": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in solid blocks",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathes_solids": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true, this entity can breathe in solid blocks",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"generatesBubbles": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, this entity will have visible bubbles while in water",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"generates_bubbles": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "If true, this entity will have visible bubbles while in water",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breatheBlocks": {
|
||||
"type": "array",
|
||||
"description": "List of blocks this entity can breathe in, in addition to the above",
|
||||
"items": {
|
||||
"$ref": "../../../../general/blocks_identifiers.json"
|
||||
},
|
||||
"title": "TODO title"
|
||||
},
|
||||
"breathe_blocks": {
|
||||
"type": "array",
|
||||
"description": "List of blocks this entity can breathe in, in addition to the above",
|
||||
"items": {
|
||||
"$ref": "../../../../general/blocks_identifiers.json"
|
||||
},
|
||||
"title": "TODO title"
|
||||
},
|
||||
"nonBreatheBlocks": {
|
||||
"type": "array",
|
||||
"description": "List of blocks this entity can't breathe in, in addition to the above",
|
||||
"items": {
|
||||
"$ref": "../../../../general/blocks_identifiers.json"
|
||||
},
|
||||
"title": "TODO title"
|
||||
},
|
||||
"non_breathe_blocks": {
|
||||
"type": "array",
|
||||
"description": "List of blocks this entity can't breathe in, in addition to the above",
|
||||
"items": {
|
||||
"$ref": "../../../../general/blocks_identifiers.json"
|
||||
},
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user