Skip to content

Instantly share code, notes, and snippets.

@KAfable
Created December 6, 2017 19:08
Show Gist options
  • Save KAfable/579cb4d73aa192d59b521250c8fe9533 to your computer and use it in GitHub Desktop.
Save KAfable/579cb4d73aa192d59b521250c8fe9533 to your computer and use it in GitHub Desktop.
#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