-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
57 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# from: entity/mob/init | ||
# @s: magma cube | ||
|
||
summon vex ~ ~ ~ {Tags:["in.spirit"]} | ||
summon vex ~ ~ ~ {Tags:["in.spirit"],LifeTicks:3200} | ||
summon marker ~ ~ ~ {Tags:["in.spirit_death", "in.ticking_entity"]} | ||
|
||
execute as @e[type=vex,tag=in.spirit,tag=!in.checked,distance=..1,limit=1,sort=nearest] run function incendium:entity/spirit/vex_init | ||
tp @s ~ -10 ~ | ||
kill @s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# from: entity/mobs/init | ||
# @s: toxic slime | ||
|
||
summon slime ~ ~ ~ {Tags:["in.toxic_slime"]} | ||
summon slime ~ ~ ~ {Tags:["in.toxic_slime"],ArmorDropChances:[0.0f,0.0f,0.0f,0.0f],ArmorItems:[{Count:1b,id:"minecraft:golden_boots",tag:{Enchantments:[{id:"minecraft:feather_falling",lvl:255},{id:"minecraft:unbreaking",lvl:255}]}},{},{},{}]} | ||
execute as @e[type=slime,tag=in.toxic_slime,tag=!in.checked,distance=..1,limit=1,sort=nearest] run function incendium:entity/toxic_slime/slime_init | ||
tp @s ~ -10 ~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
data/incendium/functions/item/greatsword_of_sacrifice/on_hit.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# from: player/event/on_hit_or_kill | ||
# @s: player hitting | ||
|
||
effect give @s instant_damage 1 1 | ||
damage @s 3.0 thorns by @s from @s | ||
|
||
particle soul ~ ~1 ~ 0 0 0 0.1 100 force | ||
playsound minecraft:entity.husk.converted_to_zombie player @a[distance=..16] ~ ~ ~ 2 1.5 0 |
5 changes: 2 additions & 3 deletions
5
data/incendium/functions/item/necrotic_shield/on_block.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
data/incendium/functions/item/prismatic_shield/ray/start.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
data/incendium/functions/item/radiation_shield/on_block.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
{ | ||
"condition": "minecraft:entity_properties", | ||
"entity": "this", | ||
"predicate": { | ||
"location": { | ||
"structure": "minecraft:fortress" | ||
} | ||
} | ||
} | ||
"condition": "minecraft:any_of", | ||
"terms": [ | ||
{ | ||
"condition": "minecraft:entity_properties", | ||
"entity": "this", | ||
"predicate": { | ||
"location": { | ||
"structure": "minecraft:fortress" | ||
} | ||
} | ||
}, | ||
{ | ||
"condition": "minecraft:entity_properties", | ||
"entity": "this", | ||
"predicate": { | ||
"location": { | ||
"structure": "betterfortresses:fortress" | ||
} | ||
} | ||
} | ||
] | ||
} |
Binary file not shown.
15 changes: 9 additions & 6 deletions
15
data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"incendium:inverted_forest", | ||
"incendium:weeping_valley" | ||
] | ||
} | ||
"replace": false, | ||
"values": [ | ||
"incendium:inverted_forest", | ||
"incendium:weeping_valley", | ||
"incendium:ash_barrens", | ||
"incendium:volcanic_deltas", | ||
"incendium:withered_forest" | ||
] | ||
} |
17 changes: 9 additions & 8 deletions
17
data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"incendium:inverted_forest", | ||
"incendium:weeping_valley", | ||
"incendium:infernal_dunes", | ||
"incendium:toxic_heap" | ||
] | ||
} | ||
"replace": false, | ||
"values": [ | ||
"incendium:inverted_forest", | ||
"incendium:weeping_valley", | ||
"incendium:infernal_dunes", | ||
"incendium:volcanic_deltas", | ||
"incendium:toxic_heap" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters