This skill provides accurate data about GT New Horizons based on official data dumps. Use when answering questions about GTNH (GregTech New Horizons).
To gain the proper context about GTNH, we can use the various resources at:
We can also use the "gtnh-skill.jar" CLI tool to query information. Quests often contain various tutorials and game information as the game progresses, which is largely structured through the quest system itself. By reading quest information and understanding the progression, we can have accurate context about the game.
java -jar gtnh-skill.jar info # Show tables and row counts
java -jar gtnh-skill.jar query "SQL_QUERY (SQLite syntax)"
quests_fts - Full-text search (use MATCH 'term')quest_lines - Quest categories (46 total)quests - All quests (3,684 total)quest_prerequisites - Quest dependenciestask_items - Items required by questsreward_items - Quest rewards# Search for quests mentioning "quantum"
java -jar gtnh-skill.jar query "SELECT name FROM quests_fts WHERE quests_fts MATCH 'quantum'"
# List all quest lines in order
java -jar gtnh-skill.jar query "SELECT name FROM quest_lines ORDER BY display_order"
# Find quests in Tier 5
java -jar gtnh-skill.jar query "SELECT q.name FROM quests q JOIN quest_line_entries e ON q.id = e.quest_id JOIN quest_lines l ON e.quest_line_id = l.id WHERE l.name LIKE '%Tier 5%' LIMIT 20"
# Get prerequisites for a quest
java -jar gtnh-skill.jar query "SELECT p.name FROM quest_prerequisites qp JOIN quests q ON qp.quest_id = q.id JOIN quests p ON qp.prerequisite_quest_id = p.id WHERE q.name LIKE '%Quantum Storage%'"
To help find relevant results, here is the general structure of quest progression:
Not all questions can be answered with just the CLI tool / database.
Other accurate sources:
If you cannot support your answer with the CLI tool or the wiki, it's still okay to present as a "possible" answer.
Once you have the proper context, you can form an answer. Try to rely on CLI/database data, then wiki content, and finally other sources. Make sure to mention where the information comes from so that the user can understand how to treat the information.