This file contains hidden or 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
# Changelog v0.1.4 | |
Mods Removed: | |
x | |
Mods Added: | |
Nature's Compass | |
LootTweaker | |
Mods Updated: |
This file contains hidden or 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
mods.initialinventory.InvHandler.addStartingItem(<tconstruct:broadsword>.withTag({StatsOriginal: {AttackSpeedMultiplier: 1.0 as float, MiningSpeed: 2.0 as float, FreeModifiers: 3, Durability: 82, HarvestLevel: 0, Attack: 3.0 as float}, Stats: {AttackSpeedMultiplier: 1.0 as float, MiningSpeed: 2.0 as float, FreeModifiers: 3, Durability: 82, HarvestLevel: 0, Attack: 3.0 as float}, Special: {Categories: ["tool", "weapon"]}, TinkerData: {Materials: ["wood", "wood", "wood"], Modifiers: []}, Modifiers: [{identifier: "ecological", color: -7444965, level: 1}], Traits: ["ecological"]})); | |
mods.initialinventory.InvHandler.addStartingItem(<tconstruct:shovel>.withTag({StatsOriginal: {AttackSpeedMultiplier: 1.0 as float, MiningSpeed: 2.0 as float, FreeModifiers: 3, Durability: 75, HarvestLevel: 0, Attack: 2.0 as float}, Stats: {AttackSpeedMultiplier: 1.0 as float, MiningSpeed: 2.0 as float, FreeModifiers: 3, Durability: 75, HarvestLevel: 0, Attack: 2.0 as float}, Special: {Categories: ["aoe", "harvest", "tool"]}, TinkerDat |
This file contains hidden or 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
import crafttweaker.item.IItemStack as IItemStack; | |
import mods.jei.JEI.removeAndHide as rh; | |
import mods.jei.JEI.addDescription as ad; | |
recipes.addShapeless(<mystcraft:page>.withTag({linkpanel: {properties: ["Intra Linking"]}}), [<minecraft:paper>, <ore:materialEnderPearl>]); | |
recipes.remove(<mystcraft:blocklectern>); | |
recipes.remove(<mystcraft:blockbookstand>); | |
recipes.remove(<mystcraft:blockbookreceptacle>); |
This file contains hidden or 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
#Name: Advanced Generators.zs | |
#Author: dhtdesign | |
import mods.jei.JEI.removeAndHide as rh; | |
print("Initializing 'Advanced Generators.zs'..."); | |
#Iron Frame | |
recipes.remove(<advgenerators:iron_frame>); | |
recipes.addShaped(<advgenerators:iron_frame>, [ |
This file contains hidden or 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
import mods.jei.JEI.addDescription as ad; | |
print("Initializing 'Lore.zs'..."); | |
ad(<rangedpumps:pump>, "If you give the pump a redstone signal, it will stop working until you disable the redstone signal.", | |
"The pump will stop running if the internal tank is full.", | |
"It'll start pumping liquids in rectangular spiral shape 1 block under the pump.", | |
"The default range is 64 blocks, that'll mean it scan 64 blocks in any direction, nearest-first.", | |
"The pump will also replace any liquids to stone by default.", | |
"On a vertical (Y) level, it will scan liquids from the pump to bedrock."); |
This file contains hidden or 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
import mods.jei.JEI.removeAndHide as rh; | |
#Name: IronBackpacks.zs | |
#Author: dhtdesign | |
print("Initializing 'IronBackpacks.zs'..."); | |
#IronBackpacks | |
recipes.remove(<ironbackpacks:backpack>); |
This file contains hidden or 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
import mods.jei.JEI.removeAndHide as rh; | |
#Name: IronChest.zs | |
#Author: dhtdesign | |
print("Initializing 'IronChest.zs'..."); | |
# Remove unused upgrades & Silver Chest | |
recipes.remove( <ironchest:iron_chest:4> ); | |
rh( <ironchest:iron_chest:4> ); |