forked from DaFuqs/Spectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rest of the malum compat for now except for
the stuff that would need art ... or everything to do with auric embers
- Loading branch information
Showing
41 changed files
with
1,128 additions
and
13 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
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
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
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/spectrum/advancements/mod_integration/malum/haunted.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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"criteria": { | ||
"built_enchanting_structure": { | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { "advancement_identifier": "spectrum:midgame/build_enchanting_structure" } | ||
}, | ||
"obtain_umbral": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"malum:umbral_spirit" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"collected_storm_stone": { | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { "advancement_identifier": "spectrum:midgame/collect_storm_stone" } | ||
} | ||
}, | ||
"fabric:load_conditions": [ | ||
{ | ||
"condition": "fabric:all_mods_loaded", | ||
"values": [ | ||
"malum" | ||
] | ||
} | ||
] | ||
} |
32 changes: 32 additions & 0 deletions
32
src/main/resources/data/spectrum/advancements/mod_integration/malum/replenishing.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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"criteria": { | ||
"built_enchanting_structure": { | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { "advancement_identifier": "spectrum:midgame/build_enchanting_structure" } | ||
}, | ||
"obtain_umbral": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"malum:umbral_spirit" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"collected_neolith": { | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { "advancement_identifier": "spectrum:midgame/collect_neolith" } | ||
} | ||
}, | ||
"fabric:load_conditions": [ | ||
{ | ||
"condition": "fabric:all_mods_loaded", | ||
"values": [ | ||
"malum" | ||
] | ||
} | ||
] | ||
} |
30 changes: 30 additions & 0 deletions
30
...sources/data/spectrum/advancements/mod_integration/malum/understand_color_and_spirit.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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"criteria": { | ||
"understand_color": { | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { | ||
"advancement_identifier": "spectrum:lategame/collect_grayscale_pigments" | ||
} | ||
}, | ||
"understand_spirit": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"malum:umbral_spirit" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"fabric:load_conditions": [ | ||
{ | ||
"condition": "fabric:all_mods_loaded", | ||
"values": [ | ||
"malum" | ||
] | ||
} | ||
] | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/resources/data/spectrum/advancements/mod_integration/malum/visited_well.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"criteria": { | ||
"found_well": { | ||
"trigger": "minecraft:location", | ||
"conditions": { | ||
"player": [ | ||
{ | ||
"condition": "minecraft:entity_properties", | ||
"entity": "this", | ||
"predicate": { | ||
"location": { | ||
"structure": "malum:weeping_well" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"fabric:load_conditions": [ | ||
{ | ||
"condition": "fabric:all_mods_loaded", | ||
"values": [ | ||
"malum" | ||
] | ||
} | ||
] | ||
} |
25 changes: 21 additions & 4 deletions
25
src/main/resources/data/spectrum/advancements/unlocks/items/bag_of_holding.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,20 +1,37 @@ | ||
{ | ||
"criteria": { | ||
"placed_pedestal": { | ||
"trigger":"revelationary:advancement_gotten", | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { | ||
"advancement_identifier": "spectrum:place_pedestal" | ||
} | ||
}, | ||
"collected_ender_eye": { | ||
"trigger":"revelationary:advancement_gotten", | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { | ||
"advancement_identifier": "spectrum:hidden/collect_vanilla/ender_eye" | ||
} | ||
}, | ||
"collected_warp_flux": { | ||
"trigger": "minecraft:inventory_changed", | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": [ | ||
"malum:warp_flux" | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"gotten_radiating_ender": { | ||
"trigger":"revelationary:advancement_gotten", | ||
"trigger": "revelationary:advancement_gotten", | ||
"conditions": { "advancement_identifier": "spectrum:get_radiating_ender" } | ||
} | ||
} | ||
}, | ||
"requirements": [ | ||
[ "placed_pedestal" ], | ||
[ "collected_ender_eye", "collected_warp_flux" ], | ||
[ "gotten_radiating_ender" ] | ||
] | ||
} |
Oops, something went wrong.