├── 01-packdev-env.md ├── 02-crafttweaker-introduction.zs ├── 03-recipe-removal-and-hiding.zs ├── 04-adding-recipes.zs ├── 05-itemdamage-and-itemtransformers.zs ├── 06-renaming-stuff.zs ├── 07-useful-packdev-mods.md ├── 08-datatype-maps.zs ├── 09-modular-machinery-basics ├── crafttweaker-mm-recipe.zs └── radiation_chamber.json ├── 10-pillar-structure-generation ├── ie_blacksmith.json └── notes.md ├── 11-pillar-loot-table ├── dungeon.json └── notes.md ├── 12-loottweaker-and-crt-dropfunctions └── script.zs ├── 13-extendedcrafting └── extendedcrafting.zs ├── 14-real-examples ├── functioncaller.zs ├── functions.zs ├── oredict-cleaner.zs ├── priority.zs └── replace-occurences.zs ├── 15-dropt ├── example1.json ├── example2.json ├── example3.json └── example4.json ├── 16-contenttweaker-material-system ├── materials.zs └── te.zs ├── 17-contenttweaker-custom-fluids-blocks-items ├── content.zs └── resources │ ├── contenttweaker │ ├── blockstates │ │ ├── light_ash.json │ │ └── liquid_slime.json │ ├── lang │ │ └── en_us.lang │ ├── models │ │ └── item │ │ │ └── windup_clock.json │ └── textures │ │ ├── blocks │ │ └── light_ash.png │ │ └── items │ │ └── windup_clock.png │ └── pack.mcmeta ├── 18-contenttweaker-item-click-functions └── ct.zs ├── 19-scavenge ├── config.cfg ├── pillar │ ├── spawnable.json │ └── structures │ │ └── spawnable.nbt ├── regen_block.json ├── siftable_gravel.json ├── summon_entity.json └── thaumcraft_meteor.json ├── 20-gamestages ├── gated-recipes.zs └── loaders │ └── gamestage_books.zs ├── 21-triumph-introduction └── triumph │ ├── Triumph.txt │ ├── functions │ └── triumph │ │ └── gamestage_functions │ │ └── thermal.txt │ └── script │ └── triumph │ └── test │ ├── adv2.txt │ └── root.txt ├── 22-contenttweaker-chickens ├── readme.md ├── resources │ ├── contenttweaker │ │ ├── lang │ │ │ └── en_us.lang │ │ └── textures │ │ │ └── entities │ │ │ └── voidmetal_chicken.png │ ├── pack.mcmeta │ └── roost │ │ └── textures │ │ ├── blocks │ │ └── chicken │ │ │ └── voidmetal_chicken.png │ │ └── items │ │ └── chicken │ │ └── voidmetal_chicken.png └── scripts │ └── loaders │ └── chickens.zs └── 23-twitch-exporter ├── README.txt ├── build.bat └── build └── general.json /01-packdev-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/01-packdev-env.md -------------------------------------------------------------------------------- /02-crafttweaker-introduction.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/02-crafttweaker-introduction.zs -------------------------------------------------------------------------------- /03-recipe-removal-and-hiding.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/03-recipe-removal-and-hiding.zs -------------------------------------------------------------------------------- /04-adding-recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/04-adding-recipes.zs -------------------------------------------------------------------------------- /05-itemdamage-and-itemtransformers.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/05-itemdamage-and-itemtransformers.zs -------------------------------------------------------------------------------- /06-renaming-stuff.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/06-renaming-stuff.zs -------------------------------------------------------------------------------- /07-useful-packdev-mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/07-useful-packdev-mods.md -------------------------------------------------------------------------------- /08-datatype-maps.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/08-datatype-maps.zs -------------------------------------------------------------------------------- /09-modular-machinery-basics/crafttweaker-mm-recipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/09-modular-machinery-basics/crafttweaker-mm-recipe.zs -------------------------------------------------------------------------------- /09-modular-machinery-basics/radiation_chamber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/09-modular-machinery-basics/radiation_chamber.json -------------------------------------------------------------------------------- /10-pillar-structure-generation/ie_blacksmith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/10-pillar-structure-generation/ie_blacksmith.json -------------------------------------------------------------------------------- /10-pillar-structure-generation/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/10-pillar-structure-generation/notes.md -------------------------------------------------------------------------------- /11-pillar-loot-table/dungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/11-pillar-loot-table/dungeon.json -------------------------------------------------------------------------------- /11-pillar-loot-table/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/11-pillar-loot-table/notes.md -------------------------------------------------------------------------------- /12-loottweaker-and-crt-dropfunctions/script.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/12-loottweaker-and-crt-dropfunctions/script.zs -------------------------------------------------------------------------------- /13-extendedcrafting/extendedcrafting.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/13-extendedcrafting/extendedcrafting.zs -------------------------------------------------------------------------------- /14-real-examples/functioncaller.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/14-real-examples/functioncaller.zs -------------------------------------------------------------------------------- /14-real-examples/functions.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/14-real-examples/functions.zs -------------------------------------------------------------------------------- /14-real-examples/oredict-cleaner.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/14-real-examples/oredict-cleaner.zs -------------------------------------------------------------------------------- /14-real-examples/priority.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/14-real-examples/priority.zs -------------------------------------------------------------------------------- /14-real-examples/replace-occurences.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/14-real-examples/replace-occurences.zs -------------------------------------------------------------------------------- /15-dropt/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/15-dropt/example1.json -------------------------------------------------------------------------------- /15-dropt/example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/15-dropt/example2.json -------------------------------------------------------------------------------- /15-dropt/example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/15-dropt/example3.json -------------------------------------------------------------------------------- /15-dropt/example4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/15-dropt/example4.json -------------------------------------------------------------------------------- /16-contenttweaker-material-system/materials.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/16-contenttweaker-material-system/materials.zs -------------------------------------------------------------------------------- /16-contenttweaker-material-system/te.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/16-contenttweaker-material-system/te.zs -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/content.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/content.zs -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/blockstates/light_ash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/blockstates/light_ash.json -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/blockstates/liquid_slime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/blockstates/liquid_slime.json -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/lang/en_us.lang -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/models/item/windup_clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/models/item/windup_clock.json -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/textures/blocks/light_ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/textures/blocks/light_ash.png -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/textures/items/windup_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/contenttweaker/textures/items/windup_clock.png -------------------------------------------------------------------------------- /17-contenttweaker-custom-fluids-blocks-items/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/17-contenttweaker-custom-fluids-blocks-items/resources/pack.mcmeta -------------------------------------------------------------------------------- /18-contenttweaker-item-click-functions/ct.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/18-contenttweaker-item-click-functions/ct.zs -------------------------------------------------------------------------------- /19-scavenge/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/config.cfg -------------------------------------------------------------------------------- /19-scavenge/pillar/spawnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/pillar/spawnable.json -------------------------------------------------------------------------------- /19-scavenge/pillar/structures/spawnable.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/pillar/structures/spawnable.nbt -------------------------------------------------------------------------------- /19-scavenge/regen_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/regen_block.json -------------------------------------------------------------------------------- /19-scavenge/siftable_gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/siftable_gravel.json -------------------------------------------------------------------------------- /19-scavenge/summon_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/summon_entity.json -------------------------------------------------------------------------------- /19-scavenge/thaumcraft_meteor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/19-scavenge/thaumcraft_meteor.json -------------------------------------------------------------------------------- /20-gamestages/gated-recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/20-gamestages/gated-recipes.zs -------------------------------------------------------------------------------- /20-gamestages/loaders/gamestage_books.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/20-gamestages/loaders/gamestage_books.zs -------------------------------------------------------------------------------- /21-triumph-introduction/triumph/Triumph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/21-triumph-introduction/triumph/Triumph.txt -------------------------------------------------------------------------------- /21-triumph-introduction/triumph/functions/triumph/gamestage_functions/thermal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/21-triumph-introduction/triumph/functions/triumph/gamestage_functions/thermal.txt -------------------------------------------------------------------------------- /21-triumph-introduction/triumph/script/triumph/test/adv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/21-triumph-introduction/triumph/script/triumph/test/adv2.txt -------------------------------------------------------------------------------- /21-triumph-introduction/triumph/script/triumph/test/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/21-triumph-introduction/triumph/script/triumph/test/root.txt -------------------------------------------------------------------------------- /22-contenttweaker-chickens/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/readme.md -------------------------------------------------------------------------------- /22-contenttweaker-chickens/resources/contenttweaker/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/resources/contenttweaker/lang/en_us.lang -------------------------------------------------------------------------------- /22-contenttweaker-chickens/resources/contenttweaker/textures/entities/voidmetal_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/resources/contenttweaker/textures/entities/voidmetal_chicken.png -------------------------------------------------------------------------------- /22-contenttweaker-chickens/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/resources/pack.mcmeta -------------------------------------------------------------------------------- /22-contenttweaker-chickens/resources/roost/textures/blocks/chicken/voidmetal_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/resources/roost/textures/blocks/chicken/voidmetal_chicken.png -------------------------------------------------------------------------------- /22-contenttweaker-chickens/resources/roost/textures/items/chicken/voidmetal_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/resources/roost/textures/items/chicken/voidmetal_chicken.png -------------------------------------------------------------------------------- /22-contenttweaker-chickens/scripts/loaders/chickens.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/22-contenttweaker-chickens/scripts/loaders/chickens.zs -------------------------------------------------------------------------------- /23-twitch-exporter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/23-twitch-exporter/README.txt -------------------------------------------------------------------------------- /23-twitch-exporter/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/23-twitch-exporter/build.bat -------------------------------------------------------------------------------- /23-twitch-exporter/build/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xt9/Modpack-Series-Examples/HEAD/23-twitch-exporter/build/general.json --------------------------------------------------------------------------------