Created
December 6, 2017 19:08
-
-
Save KAfable/579cb4d73aa192d59b521250c8fe9533 to your computer and use it in GitHub Desktop.
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
#loader contenttweaker | |
import mods.contenttweaker.VanillaFactory; | |
import mods.contenttweaker.CreativeTab; | |
var tiers = ["basic","intermediate","advanced","elite","insane","ultimate","ludicrous","divine"] as string[]; | |
var tings = ["piston","conveyor","motor","sensor","emitter","robotarm","valve"] as string[]; | |
for tier in tiers { | |
for ting in tings { | |
val item = VanillaFactory.createItem(tier + ting); | |
item.register(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment