Skip to content

Commit

Permalink
chore: tidying up
Browse files Browse the repository at this point in the history
  • Loading branch information
variousauthors committed Dec 11, 2024
1 parent cadb3b0 commit ad92027
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ general {
tile.nitor_green
tile.nitor_red
tile.nitor_black
tile.futuremc:campfire
tile.futuremc.campfire
tile.mcf.fire_pit_on
>

# The maximum power a Grimoire Magia can have.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ recipes.addShaped('tato6-windup-box', <mystgears:windup_box>, [
var ironNative = <thaumcraft:cluster>;
var ironDust = <thermalfoundation:material>;
var goldNative = <thaumcraft:cluster:1>;
var goldDust = <thermalfoundation:material:1>*3;
var goldDust = <thermalfoundation:material:1>;
var copperNative = <thaumcraft:cluster:2>;
var copperDust = <thermalfoundation:material:64>;
var tinNative = <thaumcraft:cluster:3>;
Expand All @@ -53,13 +53,13 @@ var quicksilver = <thaumcraft:quicksilver>;

// Quern Additions
// native cluster tripple
Quern.add('tato-6-quern-native-iron', [ironNative], [ironDust, ironDust, ironDust], 20, 1000, 1);
Quern.add('tato-6-quern-native-gold', [goldNative], [goldDust], 20, 1000, 1);
Quern.add('tato-6-quern-native-iron', [ironNative], [ironDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-gold', [goldNative], [goldDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-copper', [copperNative], [copperDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-tin', [tinNative], [tinDust], 20, 1000, 1);
Quern.add('tato-6-quern-native-silver', [silverNative], [silverDust], 20, 1000, 1);
Quern.add('tato-6-quern-native-lead', [leadNative], [leadDust], 20, 1000, 1);
Quern.add('tato-6-quern-native-cinnabar', [cinnabarNative], [quicksilver], 20, 1000, 1);
Quern.add('tato-6-quern-native-tin', [tinNative], [tinDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-silver', [silverNative], [silverDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-lead', [leadNative], [leadDust * 3], 20, 1000, 1);
Quern.add('tato-6-quern-native-cinnabar', [cinnabarNative], [quicksilver * 3], 20, 1000, 1);

// Gin Additions
// Gin.add(string id, IIngredient[] inputs, result[] internal, result[] external, double minPower, double maxPower, double time);

0 comments on commit ad92027

Please sign in to comment.