diff --git a/README.md b/README.md index 800631f7..27e4e58f 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -Thaumcraft 4.1 Research Helper +Thaumcraft 5.2 Research Helper ========== -[Link](http://ythri.github.io/tcresearch/) +[Link](http://ralileo16.github.io/tcresearch/) -This script helps you with your Thaumcraft 4.1 research. If you have a research note with two aspects that you don't +This script helps you with your Thaumcraft 5.2 research. If you have a research note with two aspects that you don't know how to connect, simply choose them in the dropdown list above (From: and To:). Additionally, choose the minimum number of steps between those two aspects. If in your research note, the two aspects have two blank spaces between them, choose the value 2 for Min. Steps. Then click Find Connection and the script will search for the shortest path diff --git a/index.html b/index.html index 880d9238..539b8c1c 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - Thaumcraft 4.x-5.x Research Helper + Thaumcraft 5.2 Research Helper @@ -21,7 +21,7 @@ -

Thaumcraft 4.x-5.x Research Helper

+

Thaumcraft 5.2 Research Helper

+=
@@ -40,8 +40,8 @@

Thaumcraft 4.x-5.x Research Helper

Help

-

This script helps you with your Thaumcraft 4.x research. If you have a research note with two aspects that you don't know how to connect, simply choose them in the dropdown list above (From: and To:). Additionally, choose the minimum number of steps between those two aspects. If in your research note, the two aspects have two blank spaces between them, choose the value 2 for Min. Steps. Then click Find Connection and the script will search for the shortest path (well, with at least the minimum length) that connects the two aspects. Note that sometimes the length of any path is longer then the given minimum, but this should not be a problem for your research note.

+

This script helps you with your Thaumcraft 5.2 research. If you have a research note with two aspects that you don't know how to connect, simply choose them in the dropdown list above (From: and To:). Additionally, choose the minimum number of steps between those two aspects. If in your research note, the two aspects have two blank spaces between them, choose the value 2 for Min. Steps. Then click Find Connection and the script will search for the shortest path (well, with at least the minimum length) that connects the two aspects. Note that sometimes the length of any path is longer then the given minimum, but this should not be a problem for your research note.

If you are unhappy with the path you got, because you do not have access to those aspects yet or they are quite rare, simply disable those aspects from Available Aspects:. The script will then try to find paths without these. Note that this may cause the path to grow longer. If too many aspects are disabled and there are no paths left without any of those, the script will try to find the shortest path using the minimal number of disabled aspects.

-

This work is licensed under a Creative Commons Attribution 4.0 License. Sources can be found in the github repository.

+

This work is licensed under a Creative Commons Attribution 4.0 License. Sources can be found in the github repository.

diff --git a/tcresearch.js b/tcresearch.js index 4c1dea76..12bc0067 100644 --- a/tcresearch.js +++ b/tcresearch.js @@ -1,5 +1,5 @@ $(function(){ - var latest_version = "5.1.3"; + var latest_version = "5.2"; $.each(version_dictionary, function(key,version){ $("#version").append(""); }); diff --git a/version_dictionary.js b/version_dictionary.js index 6c725410..63b27ce7 100644 --- a/version_dictionary.js +++ b/version_dictionary.js @@ -311,5 +311,53 @@ var version_dictionary = { "crystal": ["earth", "air"], "flight": ["air", "motion"] } + }, + "5.2": { + "base_aspects":[ + "air", + "earth", + "fire", + "water", + "order", + "entropy" + ], + "combinations": { + "craft": ["man", "tool"], + "greed": ["man", "hunger"], + "eldritch": ["void", "darkness"], + "aura": ["magic", "air"], + "weapon": ["tool", "fire"], + "beast": ["motion", "life"], + "mind": ["fire", "soul"], + "undead": ["motion", "death"], + "cold": ["fire", "entropy"], + "plant": ["life", "earth"], + "man": ["mind", "beast"], + "tool": ["man", "order"], + "light": ["air", "fire"], + "mechanism": ["motion", "tool"], + "metal": ["earth", "crystal"], + "death": ["life", "entropy"], + "motion": ["air", "order"], + "exchange": ["entropy", "order"], + "energy": ["order", "fire"], + "armor": ["tool", "earth"], + "cloth": ["tool", "beast"], + "senses": ["air", "soul"], + "soul": ["life", "death"], + "darkness": ["void", "light"], + "void": ["air", "entropy"], + "life": ["water", "earth"], + "trap": ["motion", "entropy"], + "magic": ["energy", "void"], + "taint": ["energy", "entropy"], + "crystal": ["earth", "order"], + "tree": ["plant", "air"], + "travel": ["motion", "earth"], + "crop": ["plant", "man"], + "mine": ["man", "earth"], + "heal": ["life", "order"], + "flight": ["air", "motion"] + } } };