nmarshall23 / secrets-of-the-chromaticaster-modpack

Files related to my minecraft modpack Secrets of the Chromaticaster
MIT License
1 stars 0 forks source link

Add Slabs and Stairs to GeoChisel.zs #27

Open nmarshall23 opened 8 years ago

nmarshall23 commented 8 years ago

Stairs and Slabs for each rock type in Geostrata should have their slabs and Stairs added to Chisel.

nmarshall23 commented 8 years ago

Link to the GeoChisel.zs MineTweaker script.

What is needed is new Chisel group created for each Slab and Stairs types.

For example the Granite slabs use the following script to add a group: mods.chisel.Groups.addGroup("GS_Granite_slabs");

Then you will need to find block data values for the Granite Slabs. If you look at the Granite Slabs in NEI there is a number followed by a colon then another number. The first number is the block id, that is assigned by Minecraft. The second number is the block data value. It's often used for things like orientation east-west or north-south. Also it's used for sub type blocks.

In this case Granite Slabs ranges from 1 then 2 to 15. We are skipping the Cobble version as you still need to smelt it get any of the bricks.

Back to our example after the above bit, add this line. Replacing the question mark with the block data value. mods.chisel.Groups.addVariation("GS_Granite_slabs", <GeoStrata:geostrata_block_slab:?>);

Do this for each of the rock types in Geostrata.

Tip, type in NEI @Geostrata to view just the blocks from the Geostrata mod.