-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharmor_stand.json
More file actions
49 lines (48 loc) · 1.87 KB
/
armor_stand.json
File metadata and controls
49 lines (48 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"format_version": "1.13.0",
"minecraft:entity": {
"description": {
"identifier": "minecraft:armor_stand",
"is_spawnable": false,
"is_summonable": true,
"is_experimental": false
},
"components": {
"minecraft:type_family": { "family": ["armor_stand", "inanimate", "mob"] },
"minecraft:collision_box": { "width": 0.5, "height": 1.975 },
"minecraft:health": { "value": 6, "max": 6 },
"minecraft:hurt_on_condition": {
"damage_conditions": [
{
"filters": { "test": "in_lava", "subject": "self", "operator": "==", "value": true },
"cause": "lava",
"damage_per_tick": 4
}
]
},
"minecraft:loot": { "table": "loot_tables/entities/armor_stand.json" },
"minecraft:nameable": {},
"minecraft:persistent": {},
"minecraft:physics": {},
"minecraft:pushable": { "is_pushable": false, "is_pushable_by_piston": true }
},
"component_groups": {
"decoration": {
"minecraft:damage_sensor": { "triggers": { "cause": "all", "deals_damage": false } },
"minecraft:loot": { "table": "loot_tables/empty.json" },
"minecraft:fire_immune": true,
"minecraft:health": { "value": 1, "max": 1, "min": 1 },
"minecraft:nameable": { "allow_name_tag_renaming": true, "always_show": true },
"minecraft:knockback_resistance": { "value": 100, "max": 100 },
"minecraft:pushable": { "is_pushable": false, "is_pushable_by_piston": false },
"minecraft:navigation.walk": { "can_sink": false }
},
"kill": { "minecraft:instant_despawn": {} }
},
"events": {
"lw:decoratate": { "add": { "component_groups": ["decoration"] } },
"lw:undercorate": { "remove": { "component_groups": ["decoration"] } },
"lw:decoration_kill": { "add": { "component_groups": ["kill"] } }
}
}
}