-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add theurgy integration class with guards against class loads chore set higher forge minimum version to exclude < 1.19.2 chore: update theurgy version feat: add theurgy visualizer to divination rod, and add non-charge usage chore: disable use of highlight all blocks if theurgy is present chore: update to latest modonomicon feat: add modonomicon entry for theurgy rod chore: update to latest modonomicon to fix mod loaded condition fix: use theurgy divination rod item for its entry
- Loading branch information
1 parent
540dc8e
commit 73c18c5
Showing
14 changed files
with
306 additions
and
43 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
67 changes: 67 additions & 0 deletions
67
...donomicon/books/dictionary_of_spirits/entries/getting_started/theurgy_divination_rod.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,67 @@ | ||
{ | ||
"background_u_index": 0, | ||
"background_v_index": 0, | ||
"category": "occultism:getting_started", | ||
"condition": { | ||
"type": "modonomicon:and", | ||
"children": [ | ||
{ | ||
"type": "modonomicon:entry_read", | ||
"entry_id": "occultism:getting_started/divination_rod" | ||
}, | ||
{ | ||
"type": "modonomicon:mod_loaded", | ||
"mod_id": "theurgy" | ||
} | ||
] | ||
}, | ||
"description": "book.occultism.dictionary_of_spirits.getting_started.theurgy_divination_rod.description", | ||
"hide_while_locked": true, | ||
"icon": "theurgy:divination_rod_t1", | ||
"name": "book.occultism.dictionary_of_spirits.getting_started.theurgy_divination_rod.name", | ||
"pages": [ | ||
{ | ||
"type": "modonomicon:spotlight", | ||
"anchor": "", | ||
"item": { | ||
"item": "theurgy:divination_rod_t1" | ||
}, | ||
"text": "book.occultism.dictionary_of_spirits.getting_started.theurgy_divination_rod.intro.text", | ||
"title": "" | ||
}, | ||
{ | ||
"type": "modonomicon:crafting_recipe", | ||
"anchor": "", | ||
"recipe_id_1": "theurgy:crafting/shaped/divination_rod_t1", | ||
"text": "", | ||
"title1": "", | ||
"title2": "" | ||
}, | ||
{ | ||
"type": "modonomicon:text", | ||
"anchor": "", | ||
"show_title_separator": true, | ||
"text": "book.occultism.dictionary_of_spirits.getting_started.theurgy_divination_rod.more_info.text", | ||
"title": "book.occultism.dictionary_of_spirits.getting_started.theurgy_divination_rod.more_info.title", | ||
"use_markdown_in_title": false | ||
}, | ||
{ | ||
"type": "modonomicon:crafting_recipe", | ||
"anchor": "", | ||
"recipe_id_1": "theurgy:crafting/shapeless/the_hermetica", | ||
"text": "", | ||
"title1": "", | ||
"title2": "" | ||
} | ||
], | ||
"parents": [ | ||
{ | ||
"draw_arrow": true, | ||
"entry": "occultism:getting_started/divination_rod", | ||
"line_enabled": true, | ||
"line_reversed": false | ||
} | ||
], | ||
"x": -7, | ||
"y": -4 | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/com/github/klikli_dev/occultism/OccultismConstants.java
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,13 @@ | ||
package com.github.klikli_dev.occultism; | ||
|
||
public class OccultismConstants { | ||
public static class Nbt { | ||
protected static final String PREFIX = Occultism.MODID + ":"; | ||
|
||
public static class Divination { | ||
public static final String DISTANCE = PREFIX + "divination.distance"; | ||
public static final String POS = PREFIX + "divination.pos"; | ||
public static final String LINKED_BLOCK_ID = PREFIX + "divination.linked_block_id"; | ||
} | ||
} | ||
} |
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
Oops, something went wrong.