Git Product home page Git Product logo

tinkerssteelworks's Introduction

#Tinkers' Steelworks

A steel-based expansion for Tinkers' Construct.

##Builds ""Stable"" releases are found on github.

Dev builds can be found on TehNut's Jenkins.

##Issue reporting Please include the following:

  • Minecraft version
  • Forge version/build
  • Tinkers' Construct version (if available)
  • Tinkers' Steelworks version
  • Versions of any mods potentially related to the issue
  • Any relevant screenshots are greatly appreciated.
  • For crashes:
    • Steps to reproduce
    • ForgeModLoader-client-0.log (the FML log) from the root folder of the client

Project Style

Indentation is 1 tab character. Braces on same line. Braces may be omitted for single-statement conditions and loops, with the statement indented on the next line. Sun/Oracle guidelines for everything else.

Releases

Releases follow the major.minor.revision-buildnum scheme. For more information, please read http://semver.org/

##Licenses Most code is licensed under Creative Commons 3.0.

##Modpacks You're free to include this mod in any modpack

##Minetweaker support TSteelworks comes with built-in minetweaker3 support, here is a list of available methods:

###High oven fuel

// Adds a valid High Oven fuel (ItemStack fuel, int burnTime, int heatRate)
mods.tsteelworks.highoven.addFuel(<minecraft:stone>, 20, 1000);
mods.tsteelworks.highoven.removeFuel(<minecraft:coal:1>);

###High oven meltables

// Makes an itemstack meltable in the high oven (ItemStack input, boolean isOre, FluidStack output, int meltTemp)
mods.tsteelworks.highoven.addMeltable(<minecraft:dirt>, true, <liquid:iron.molten> * 72, 1500);
mods.tsteelworks.highoven.removeMeltable(<minecraft:dirt>);

###Mixing agents These are used in mixs (like redstone + gunpowder + sand [+ liquid iron] => liquid steel)

// agents are managed using oredict, you need to pass it as a string (we're weirdos)
// An agent can only be an oxidizer, a reducer or a purifier, not more than one at a time
mods.tsteelworks.mix.addOxidizer(String agent, int consumeChance)
mods.tsteelworks.mix.addReducer(String agent, int consumeChance)
mods.tsteelworks.mix.addPurifier(String agent, int consumeChance)

mods.tsteelworks.mix.removeAgent(String agent)

###Mix recipes

// agents used in here must be registered.
mods.tsteelworks.mix.addFluidMix(FluidStack input, String oxidizer, String reducer, String purifier, FluidStack output)
mods.tsteelworks.mix.addSolidMix(FluidStack input, String oxidizer, String reducer, String purifier, ItemStack output)
mods.tsteelworks.mix.addMix(FluidStack input, String oxidizer, String reducer, String purifier, FluidStack outputLiquid, ItemStack outputSolid)

mods.tsteelworks.mix.removeMix(FluidStack input, String oxidizer, String reducer, String purifier)

##Notice Much of the code and structure of this project is heavily based on projects by SlimeKnights. Even this readme file is partially lifted from said projects. ^_^ This project is meant to compliment their efforts.

tinkerssteelworks's People

Contributors

ephys avatar wisthy avatar toops avatar thevikingwarrior avatar riking avatar vexatos avatar aarondandy avatar jkauven avatar aegislesha avatar zerokyuuni avatar fewizz avatar guro2 avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar  avatar  avatar

tinkerssteelworks's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.