SuperTiC - Advanced Effects for TConstruct Tools
The SuperTiC mod was created to add potion effects to Tinkers' Construct tools with maximum customization to suit player needs.
Main Features
Each TConstruct tool material receives an additional characteristic, the behavior of which is fully configurable through an XML configuration file. Currently, three types of effect activation are available:
- Attacking creatures - effect is applied when dealing damage to enemies
- Blocking damage - effect activates when successfully blocking an attack
- Mining blocks - effect triggers when breaking blocks
Configuration Setup
The configuration system works on the following principle:
<effects>
<material name="cobalt"> // Specified material
// When attacking with 1 in 5 chance applies haste I effect for 200 ticks to the player
<attack id="minecraft:haste" amp="1" dur="200", chance="5" player="true">
// When blocking with 1 in 7 chance applies regeneration IV for 50 ticks to the attacking entity
<block id="minecraft:regeneration" amp="4" dur="50", chance="7" player="false">
// When mining with 1 in 10 chance applies speed II for 1000 ticks to the player
<mine id="minecraft:speed" amp="2" dur="1000", chance="10">
</material>
<material name="ardite">
...
</material>
</effects>
Command Management
For convenient mod management, two commands are available:
/supertic reload- reloads the configuration file/supertic materials- shows a list of all available material names