Add Simply Jetpacks

This commit is contained in:
Andrew Miner
2015-04-11 10:24:25 -07:00
parent 9230b09e25
commit 21ad85b125
98 changed files with 4710 additions and 99 deletions
+1
View File
@@ -24,6 +24,7 @@ exports.DefaultMods =
mekanism: { defaultVersion: '7.1.1.127' } mekanism: { defaultVersion: '7.1.1.127' }
modular_powersuits: { defaultVersion: '0.11.0.176' } modular_powersuits: { defaultVersion: '0.11.0.176' }
railcraft: { defaultVersion: '9.5.0' } railcraft: { defaultVersion: '9.5.0' }
simply_jetpacks: { defaultVersion: '1.4.1' }
thermal_dynamics: { defaultVersion: '1.0.0RC7-98' } thermal_dynamics: { defaultVersion: '1.0.0RC7-98' }
thermal_expansion: { defaultVersion: '4.0.0B8-23' } thermal_expansion: { defaultVersion: '4.0.0B8-23' }
ender_storage: { defaultVersion: '1.4.5.29' } ender_storage: { defaultVersion: '1.4.5.29' }
+3 -1
View File
@@ -15,7 +15,9 @@ module.exports = class ItemSlug
@_item = @_mod = null @_item = @_mod = null
if arguments.length is 1 if arguments.length is 1
@item = arguments[0] parts = _.decomposeSlug arguments[0]
@_mod = _.slugify parts[0]
@item = _.slugify parts[1]
else if arguments.length is 2 else if arguments.length is 2
@_mod = arguments[0] @_mod = arguments[0]
@item = arguments[1] @item = arguments[1]
+14 -6
View File
@@ -139,13 +139,21 @@ module.exports = class ModVersion extends BaseModel
findRecipes: (itemSlug, result=[], options={})-> findRecipes: (itemSlug, result=[], options={})->
options.onlyPrimary ?= false options.onlyPrimary ?= false
primaryRecipes = []
otherRecipes = []
for recipe in _.values @_recipes for recipe in _.values @_recipes
if options.onlyPrimary if recipe.itemSlug.matches itemSlug
if recipe.itemSlug.matches itemSlug primaryRecipes.push recipe
result.push recipe else if recipe.produces itemSlug
else otherRecipes.push recipe
if recipe.produces itemSlug
result.push recipe for recipe in primaryRecipes
result.push recipe
if not options.onlyPrimary
for recipe in otherRecipes
result.push recipe
return result return result
@@ -168,7 +168,7 @@ module.exports = class ModVersionParserV1 extends CommandParserVersionBase
if item? and item.type isnt 'update' if item? and item.type isnt 'update'
slug = new ItemSlug modVersion.modSlug, _.slugify name slug = new ItemSlug modVersion.modSlug, _.slugify name
else else
slug = new ItemSlug _.slugify name slug = new ItemSlug name
modVersion.registerName slug, name modVersion.registerName slug, name
return slug return slug
Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 597 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 446 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 570 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 501 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 249 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 559 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 595 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 504 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 527 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 491 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 482 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 288 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 569 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 472 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

@@ -0,0 +1,99 @@
<!DOCTYPE html><html><head>
<title>Mysterious Potato | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom">
<div class="login"><span class="name"></span><a href="/login">Login</a></div>
</div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a>
<div class="view__item_selector hideable">
<p class="placeholder">find an item...</p>
</div>
</div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/simply_jetpacks/mysterious_potato/icon.png"></a></div><a target="new" class="officialPage externalLink hideable hidden"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Mysterious Potato</h1><div class="byline hideable"><p>from <a href="/browse/simply_jetpacks/">Simply Jetpacks</a></p></div><div class="recipes section hideable hidden"><h2>Recipes</h2><div class="panel"></div></div><div class="description section hideable hidden view__markdown_section"><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section hideable hidden"><h2>Videos</h2><div class="panel"></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable hiding section hidden"><h2></h2><div class="panel"></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
</body></html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 240 B

@@ -0,0 +1,99 @@
<!DOCTYPE html><html><head>
<title>Particle Customizer (Default) | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom">
<div class="login"><span class="name"></span><a href="/login">Login</a></div>
</div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a>
<div class="view__item_selector hideable">
<p class="placeholder">find an item...</p>
</div>
</div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/simply_jetpacks/particle_customizer_default/icon.png"></a></div><a target="new" class="officialPage externalLink hideable hidden"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Particle Customizer (Default)</h1><div class="byline hideable"><p>from <a href="/browse/simply_jetpacks/">Simply Jetpacks</a></p></div><div class="recipes section hideable"><h2>Recipe</h2><div class="panel"><div class="hideable view__full_recipe"><div class="input"><h3>Ingredients</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"></td><td width="*" class="name"><a href="/browse/thermal_expansion/pulverized_coal/">Pulverized Coal</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/minecraft/torch/icon.png"></td><td width="*" class="name"><a href="/browse/minecraft/torch/">Torch</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div><div class="pattern"><table class="view__crafting_grid hideable"><tbody><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/torch/"><img src="/browse/minecraft/torch/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a href="/browse/minecraft/torch/"><img src="/browse/minecraft/torch/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/torch/"><img src="/browse/minecraft/torch/icon.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/torch/"><img src="/browse/minecraft/torch/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr></tbody></table><div class="tool"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></div></div><div class="output"><h3>Produces</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/simply_jetpacks/particle_customizer_default/icon.png"></td><td width="*" class="name"><a href="/browse/simply_jetpacks/particle_customizer_default/">Particle Customizer (Default)</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div></div></div></div><div class="description section hideable hidden view__markdown_section"><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section hideable hidden"><h2>Videos</h2><div class="panel"></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable hiding section hidden"><h2></h2><div class="panel"></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
<div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span></body></html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

@@ -0,0 +1,99 @@
<!DOCTYPE html><html><head>
<title>Particle Customizer (None) | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom">
<div class="login"><span class="name"></span><a href="/login">Login</a></div>
</div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a>
<div class="view__item_selector hideable">
<p class="placeholder">find an item...</p>
</div>
</div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/simply_jetpacks/particle_customizer_none/icon.png"></a></div><a target="new" class="officialPage externalLink hideable hidden"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Particle Customizer (None)</h1><div class="byline hideable"><p>from <a href="/browse/simply_jetpacks/">Simply Jetpacks</a></p></div><div class="recipes section hideable"><h2>Recipe</h2><div class="panel"><div class="hideable view__full_recipe"><div class="input"><h3>Ingredients</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/minecraft/glass/icon.png"></td><td width="*" class="name"><a href="/browse/minecraft/glass/">Glass</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"></td><td width="*" class="name"><a href="/browse/thermal_expansion/pulverized_coal/">Pulverized Coal</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div><div class="pattern"><table class="view__crafting_grid hideable"><tbody><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/glass/"><img src="/browse/minecraft/glass/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a href="/browse/minecraft/glass/"><img src="/browse/minecraft/glass/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/glass/"><img src="/browse/minecraft/glass/icon.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/minecraft/glass/"><img src="/browse/minecraft/glass/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr></tbody></table><div class="tool"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></div></div><div class="output"><h3>Produces</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/simply_jetpacks/particle_customizer_none/icon.png"></td><td width="*" class="name"><a href="/browse/simply_jetpacks/particle_customizer_none/">Particle Customizer (None)</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div></div></div></div><div class="description section hideable hidden view__markdown_section"><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section hideable hidden"><h2>Videos</h2><div class="panel"></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable hiding section hidden"><h2></h2><div class="panel"></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
<div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span></body></html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

@@ -0,0 +1,99 @@
<!DOCTYPE html><html><head>
<title>Particle Customizer (Smoke Only) | The Ultimate Minecraft Crafting Guide</title>
<meta charset="UTF-8">
<link href="/images/favicon.png" rel="icon" type="image/png">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css">
</head>
<body>
<div class="view__feedback hideable" style="left: -250px; "><input name="name" placeholder="name (optional)"><input name="email" placeholder="email (optional)"><label name="comment">Comment:</label><textarea name="comment"></textarea><button name="send" disabled="disabled">send</button><div class="error hideable hidden"><p>Sending failed. Please try again later.</p></div><div class="label"><img src="/images/paper.png"><p>Feedback</p></div></div>
<div class="view__screen"></div>
<div class="content">
<div class="view__header">
<h1><a href="/" class="logo"><img src="/images/workbench_front.png"></a>
<p>Crafting Guide for Minecraft</p>
</h1>
<div class="addthis_sharing_toolbox"></div>
<div class="divider bottom">
<div class="login"><span class="name"></span><a href="/login">Login</a></div>
</div>
<div class="navBar"><a data-page="home" href="/" style="z-index: 104; ">
<p>Home</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="configure" href="/configure/" style="z-index: 103; ">
<p>Configure</p>
<div class="dot" style="opacity: 0; "></div></a><a data-page="browse" href="/browse/" style="z-index: 102; ">
<p>Browse</p>
<div class="dot" style="opacity: 1; "></div></a><a data-page="craft" href="/craft/" style="z-index: 101; ">
<p>Craft</p>
<div class="dot" style="opacity: 0; "></div></a>
<div class="view__item_selector hideable">
<p class="placeholder">find an item...</p>
</div>
</div>
</div>
<div class="page hideable view__item_page"><div class="sidebar"><div class="titleImage"><a><img src="/browse/simply_jetpacks/particle_customizer_smoke_only/icon.png"></a></div><a target="new" class="officialPage externalLink hideable hidden"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><ins class="view__adsense placeholder sidebar_skyscraper"></ins></div><div class="mainBody"><h1 class="name">Particle Customizer (Smoke Only)</h1><div class="byline hideable"><p>from <a href="/browse/simply_jetpacks/">Simply Jetpacks</a></p></div><div class="recipes section hideable"><h2>Recipe</h2><div class="panel"><div class="hideable view__full_recipe"><div class="input"><h3>Ingredients</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"></td><td width="*" class="name"><a href="/browse/thermal_expansion/pulverized_coal/">Pulverized Coal</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div><div class="pattern"><table class="view__crafting_grid hideable"><tbody><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td></tr><tr><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a href="/browse/thermal_expansion/pulverized_coal/"><img src="/browse/thermal_expansion/pulverized_coal/icon.png"><div class="quantity"></div></a></div></td><td><div class="view__slot"><a><img src="/images/empty.png"><div class="quantity"></div></a></div></td></tr></tbody></table><div class="tool"><a href="/browse/minecraft/crafting_table/">Crafting Table</a></div></div><div class="output"><h3>Produces</h3><div class="view__inventory_table hideable"><table><tbody><tr class="hideable view__stack"><td class="quantity"><input readonly="readonly"></td><td class="icon"><img src="/browse/simply_jetpacks/particle_customizer_smoke_only/icon.png"></td><td width="*" class="name"><a href="/browse/simply_jetpacks/particle_customizer_smoke_only/">Particle Customizer (Smoke Only)</a></td><td class="action" style="display: none; "><button class="remove">&nbsp;</button></td></tr><tr class="edit hideable hidden"><td class="quantity"><input name="quantity"></td><td class="icon"><img src="/images/unknown.png"></td><td width="*" class="name"><input name="name" class="ui-autocomplete-input" autocomplete="off"></td><td class="action"><button name="add" disabled="disabled">add</button></td></tr></tbody></table><div class="toolbar hideable hidden"><button name="clear">clear</button></div></div></div></div></div></div><div class="description section hideable hidden view__markdown_section"><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section hideable hidden"><h2>Videos</h2><div class="panel"></div></div><div class="view__item_group usedToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group usedAsToolToMake hideable hiding section hidden"><h2></h2><div class="panel"></div></div><div class="view__item_group similar hideable hiding section hidden"><h2></h2><div class="panel"></div></div></div></div>
<div class="view__footer">
<div class="divider top"></div>
<div class="left">
<h2>
<p>About</p>
</h2>
<p>
Crafting Guide gives step-by-step tutorials for making anything in Minecraft or its many mods. Just say what
you'd like to make, what you already have, it will do the rest, giving you a list of raw materials you need
to collect and step-by-step instructions of how much to make of which items in the proper order. You can
even ask it to include the materials and instructions for all the tools you'll need along the way!
</p>
</div>
<div class="center">
<h2>
<p>Donate</p>
</h2>
<p>Crafting Guide is free for all, but if you find it helpful, donations in any amount are gratefully accepted.</p>
<div class="action">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top" class="centered">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GCB2TYZJYLAE6">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="right">
<h2>
<p>Get Involved</p>
</h2>
<p>
Crafting Guide is completely open-source, and you can help! Whether you want to write a recipe book (all
simple JSON), or implement new features, just head over to GitHub to get started.
</p>
<div class="action">
<iframe src="http://ghbtns.com/github-btn.html?user=andrewminer&amp;repo=crafting-guide&amp;type=fork&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
</div>
</div>
<div class="divider bottom"></div>
</div>
</div>
<script src="/js/underscore.js"></script>
<script src="/js/jquery.js"></script>
<script src="/js/backbone.js"></script>
<script src="/js/jade.js"></script>
<script src="/js/markdown.js"></script>
<script src="/js/when.js"></script>
<script src="/js/jquery-ui.js"></script>
<script src="/js/main.js"></script>
<script async="" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
if (window.location.hostname === 'crafting-guide.com') {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54970416-2', 'crafting-guide.com');
ga('require', 'displayfeatures');
ga('require', 'linkid', 'linkid.js');
}
</script>
<div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><div role="log" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></div><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span><ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-2" tabindex="0" style="display: none; "></ul><span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span></body></html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 569 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 989 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 595 B

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 390 B

File diff suppressed because one or more lines are too long
@@ -0,0 +1,290 @@
schema: 1
item: Leather Strap
recipe:
input: Iron Ingot, Leather
pattern: 101 101 ...
tools: Crafting Table
item: Mysterious Potato
item: Particle Customizer (Default)
recipe:
input: Pulverized Coal, Torch
pattern: .1. 101 .1.
tools: Crafting Table
item: Particle Customizer (None)
recipe:
input: Glass, Pulverized Coal
pattern: .0. 010 .0.
tools: Crafting Table
item: Particle Customizer (Rainbow Smoke)
recipe:
input: Lapis Lazuli, Lime Dye, Pulverized Coal, Rose Red
pattern: .3. .2. 1.0
tools: Crafting Table
item: Particle Customizer (Smoke Only)
recipe:
input: Pulverized Coal
pattern: .0. 000 .0.
tools: Crafting Table
group: Tier 0 Items
item: Tuberous Jetpack
recipe:
input: Gold Nugget, Potato, Redstone, String
pattern: 3.3 010 2.2
tools: Crafting Table
recipe:
input: Gold Nugget, Poisonous Potato, Redstone, String
pattern: 3.3 010 2.2
tools: Crafting Table
group: Tier 1 Items
item: Iron Armor Plating
recipe:
input: Iron Ingot, thermal_expansion__tin_ingot
pattern: 101 000 101
tools: Crafting Table
item: Leadstone Flux Pack
recipe:
input: thermal_expansion__lead_ingot, Leadstone Energy Cell, Leather Strap
pattern: 010 020 ...
tools: Crafting Table
item: Leadstone Jetpack
recipe:
input: thermal_expansion__lead_ingot, Leadstone Flux Capacitor, Leadstone Thruster, Leather Strap
pattern: 010 030 2.2
tools: Crafting Table
item: Leadstone Jetpack (Armored)
recipe:
input: Iron Armor Plating, Leadstone Jetpack
pattern: .0. .1. ...
item: Leadstone Thruster
recipe:
input: thermal_expansion__copper_gear, Glass, thermal_expansion__lead_ingot, Pneumatic Servo, Redstone Reception Coil, Steam Dynamo
pattern: 242 101 535
tools: Crafting Table
group: Tier 2 Items
item: Hardened Flux Pack
recipe:
input: Invar Ingot, Leadstone Flux Pack
pattern: .0. 010 .0.
tools: Crafting Table
recipe:
input: Hardened Flux Pack (Armored)
pattern: ... .0. ...
item: Hardened Flux Pack (Armored)
recipe:
input: Hardened Flux Pack, Iron Armor Plating
pattern: .1. .0. ...
item: Hardened Jetpack
recipe:
input: Hardened Flux Capacitor, Hardened Thruster, Invar Ingot, Leadstone Jetpack
pattern: 202 232 1.1
tools: Crafting Table
recipe:
input: Hardened Jetpack (Armored)
pattern: ... .0. ...
item: Hardened Jetpack (Armored)
recipe:
input: Hardened Jetpack, Tinker's Alloy Armor Plating
pattern: .1. .0. ...
tools: Crafting Table
item: Hardened Thruster
recipe:
input: Block of Redstone, Invar Ingot, Pneumatic Servo, Reactant Dynamo, Redstone Reception Coil, Tinker's Alloy Gear
pattern: 141 050 323
tools: Crafting Table
item: Tinker's Alloy Armor Plating
recipe:
input: 10 Tinker's Alloy Ingot, Iron Armor Plating
pattern: ... 0.1 ...
tools: Crafting Table
group: Tier 3 Items
item: Invar Armor Plating
recipe:
input: 10 Invar Ingot, Tinker's Alloy Armor Plating
pattern: ... 0.1 ...
tools: Induction Smelter
item: Redstone Flux Pack
recipe:
input: Electrum Ingot, Hardened Flux Pack, thermal_expansion__lead_ingot, Redstone Conductance Coil, Redstone Energy Cell Frame (Full)
pattern: .4. 010 232
tools: Crafting Table
recipe:
input: Redstone Flux Pack (Armored)
pattern: ... .0. ...
item: Redstone Flux Pack (Armored)
recipe:
input: Redstone Flux Pack, Tinker's Alloy Armor Plating
pattern: .1. .0. ...
tools: Crafting Table
item: Reinforced Jetpack
recipe:
input: Electrum Ingot, Hardened Jetpack, Redstone Flux Capacitor, Reinforced Thruster
pattern: 020 010 3.3
tools: Crafting Table
recipe:
input: Reinforced Jetpack (Armored)
pattern: ... .0. ...
item: Reinforced Jetpack (Armored)
recipe:
input: Invar Armor Plating, Reinforced Jetpack
pattern: .0. .1. ...
tools: Crafting Table
item: Reinforced Thruster
recipe:
input: Electrum Ingot, Invar Gear, Magmatic Dynamo, Pneumatic Servo, Redstone Reception Coil, Signalum Ingot
pattern: 040 515 232
tools: Crafting Table
group: Tier 4 Items
item: Enderium Armor Plating
recipe:
input: 10 Enderium Ingot, Invar Armor Plating
pattern: ... 0.1 ...
tools: Induction Smelter
item: Resonant Flux Pack
recipe:
input: Enderium Ingot, Redstone Flux Pack
pattern: .0. 010 .0.
tools: Crafting Table
recipe:
input: Resonant Flux Pack (Armored)
pattern: ... .0. ...
item: Resonant Flux Pack (Armored)
recipe:
input: Invar Armor Plating, Resonant Flux Pack
pattern: .0. .1. ...
tools: Crafting Table
item: Resonant Jetpack
recipe:
input: Enderium Ingot, Reinforced Jetpack, Resonant Flux Capacitor, Resonant Thruster
pattern: 020 010 3.3
tools: Crafting Table
recipe:
input: Resonant Jetpack (Armored)
pattern: ... .0. ...
item: Resonant Jetpack (Armored)
recipe:
input: Enderium Armor Plating, Resonant Jetpack
pattern: .0. .1. ...
tools: Crafting Table
item: Resonant Thruster
recipe:
input: Electrum Gear, Enderium Ingot, Enervation Dynamo, Lumium Ingot, Pneumatic Servo, Redstone Reception Coil
pattern: 151 303 242
tools: Crafting Table
group: Tier 5 Items
item: Cryotheum Coolant Unit
recipe:
input: 4000 Gelid Cryotheum, Cryotheum Coolant Unit (Empty)
pattern: ... 1.0 ...
tools: Fluid Transposer
item: Cryotheum Coolant Unit (Empty)
recipe:
input: Fluxed Electrum Ingot, Hardened Glass, thermal_expansion__tin_ingot
pattern: 020 212 020
tools: Crafting Table
item: Flux Crystal
recipe:
input: 200 Destabilized Redstone, Diamond
pattern: ... 1.0 ...
tools: Fluid Transposer
item: Flux-Infused Chestplate Assembly
recipe:
input: Fluxed Armor Plating
pattern: 0.0 000 000
tools: Crafting Table
item: Flux-Infused JetPlate
recipe:
input: Cryotheum Coolant Unit, Flux-Infused Chestplate Assembly, Fluxed Armor Plating, Fluxed Thruster, Resonant Flux Pack, Resonant Jetpack
pattern: 212 050 343
tools: Crafting Table
item: Fluxed Armor Plating
recipe:
input: Flux Crystal, Fluxed Electrum Ingot, Fluxed Electrum Nugget
pattern: 222 010 222
tools: Crafting Table
item: Fluxed Electrum Blend
recipe:
input: 200 Destabilized Redstone, Electrum Blend
pattern: ... 1.0 ...
tools: Fluid Transposer
recipe:
input: Fluxed Electrum Ingot
pattern: ... .0. ...
tools: Pulverizer
item: Fluxed Electrum Ingot
recipe:
input: 2 Fluxed Electrum Blend, Pyrotheum Dust
pattern: ... 1.0 ...
quantity: 2
tools: Induction Smelter
recipe:
input: Fluxed Electrum Nugget
pattern: 000 000 000
tools: Crafting Table
item: Fluxed Electrum Nugget
recipe:
input: Fluxed Electrum Ingot
pattern: ... .0. ...
quantity: 9
item: Fluxed Thruster
recipe:
input: Fluxed Armor Plating, Fluxed Electrum Ingot, Glowstone Elevation Unit, Resonant Thruster
pattern: 101 232 ...
tools: Crafting Table
item: Glowstone Elevation Unit
recipe:
input: Fluxed Electrum Ingot, Illuminator Frame, Lumium Ingot
pattern: 020 212 020
tools: Crafting Table
item: Glowstone Elevation Unit (Empty)
recipe:
input: 4000 Energized Glowstone, Glowstone Elevation Unit (Empty)
pattern: ... 1.0 ...
tools: Fluid Transposer
+10
View File
@@ -0,0 +1,10 @@
schema: 1
name: Simply Jetpacks
author: Tonius
description: Adds multiple tiers of RF-powered Jetpacks and accessories
homePageUrl: http://minecraft.curseforge.com/mc-mods/79325-simply-jetpacks
documentationUrl: https://github.com/Tonius/SimplyJetpacks/wiki
downloadUrl: http://minecraft.curseforge.com/mc-mods/79325-simply-jetpacks
version: 1.4.1
@@ -1099,11 +1099,7 @@ group: Minerals
item: Copper Ingot item: Copper Ingot
recipe: recipe:
input: Copper Ore, furnace fuel input: Pulverized Copper
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Copper Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
@@ -1111,9 +1107,13 @@ group: Minerals
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Pulverized Copper input: Copper Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Copper Ore, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
extras: Gold Ingot extras: Gold Ingot
input: Cinnabar, Copper Ore input: Cinnabar, Copper Ore
@@ -1179,14 +1179,14 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Electrum Ingot item: Electrum Ingot
recipe:
input: Electrum Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Electrum Blend input: Electrum Blend
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Electrum Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Gold Ingot, Silver Ingot input: Gold Ingot, Silver Ingot
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1262,22 +1262,22 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Ferrous Ingot item: Ferrous Ingot
recipe:
input: Pulverized Ferrous Metal, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Pulverized Ferrous Metal input: Pulverized Ferrous Metal
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
input: Ferrous Ore, furnace fuel input: Pulverized Ferrous Metal, furnace fuel
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Ferrous Ore input: Ferrous Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Ferrous Ore, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
extras: Shiny Ingot extras: Shiny Ingot
input: Cinnabar, Ferrous Ore input: Cinnabar, Ferrous Ore
@@ -1348,14 +1348,14 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Invar Ingot item: Invar Ingot
recipe:
input: Invar Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Invar Blend input: Invar Blend
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Invar Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Pulverized Ferrous Metal, 2 Pulverized Iron input: Pulverized Ferrous Metal, 2 Pulverized Iron
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1406,11 +1406,7 @@ group: Minerals
item: Lead Ingot item: Lead Ingot
recipe: recipe:
input: Lead Ore, furnace fuel input: Pulverized Lead
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Lead Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
@@ -1418,9 +1414,13 @@ group: Minerals
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Pulverized Lead input: Lead Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Lead Ore, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
extras: Silver Ingot extras: Silver Ingot
input: Cinnabar, Lead Ore input: Cinnabar, Lead Ore
@@ -1501,14 +1501,14 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Lumium Ingot item: Lumium Ingot
recipe:
input: Lumium Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Lumium Blend input: Lumium Blend
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Lumium Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: 2 Lumium Blend, Sand input: 2 Lumium Blend, Sand
pattern: ... 1.0 ... pattern: ... 1.0 ...
@@ -1538,22 +1538,22 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Mana Infused Ingot item: Mana Infused Ingot
recipe:
input: Pulverized Mana Infused Metal, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Mana Infused Ore, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Pulverized Mana Infused Metal input: Pulverized Mana Infused Metal
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Pulverized Mana Infused Metal, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Mana Infused Ore input: Mana Infused Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Mana Infused Ore, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Cinnabar, Mana Infused Ore input: Cinnabar, Mana Infused Ore
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1602,15 +1602,15 @@ group: Minerals
tools: Pulverizer tools: Pulverizer
item: Pulverized Coal item: Pulverized Coal
recipe:
input: Coal
pattern: ... .0. ...
tools: Pulverizer
recipe: recipe:
input: Coal Ore input: Coal Ore
pattern: ... .0. ... pattern: ... .0. ...
quantity: 3 quantity: 3
tools: Pulverizer tools: Pulverizer
recipe:
input: Coal
pattern: ... .0. ...
tools: Pulverizer
item: Pulverized Copper item: Pulverized Copper
recipe: recipe:
@@ -1741,11 +1741,15 @@ group: Minerals
item: Shiny Ingot item: Shiny Ingot
recipe: recipe:
input: Shiny Ore, furnace fuel input: Pulverized Shiny Metal
pattern: ... .0. ...
tools: Redstone Furnace
recipe:
input: Pulverized Shiny Metal, furnace fuel
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Pulverized Shiny Metal, furnace fuel input: Shiny Ore, furnace fuel
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
@@ -1753,9 +1757,10 @@ group: Minerals
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
input: Pulverized Shiny Metal input: Cinnabar, Shiny Ore
pattern: ... .0. ... pattern: ... 0.1 ...
tools: Redstone Furnace quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Pyrotheum Dust, Shiny Ore input: Pyrotheum Dust, Shiny Ore
pattern: .1. ... .0. pattern: .1. ... .0.
@@ -1764,11 +1769,6 @@ group: Minerals
pattern: ... 0.1 ... pattern: ... 0.1 ...
quantity: 3 quantity: 3
tools: Induction Smelter tools: Induction Smelter
recipe:
input: Cinnabar, Shiny Ore
pattern: ... 0.1 ...
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Sand, Shiny Ore input: Sand, Shiny Ore
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1821,14 +1821,14 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Signalum Ingot item: Signalum Ingot
recipe:
input: Signalum Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Signalum Blend input: Signalum Blend
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe:
input: Signalum Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe: recipe:
input: Sand, Signalum Blend input: Sand, Signalum Blend
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1857,11 +1857,7 @@ group: Minerals
item: Silver Ingot item: Silver Ingot
recipe: recipe:
input: Silver Ore, furnace fuel input: Pulverized Silver
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Silver Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
@@ -1869,15 +1865,13 @@ group: Minerals
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Pulverized Silver input: Silver Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
extras: Lead Ingot input: Silver Ore, furnace fuel
input: Cinnabar, Silver Ore pattern: .0. ... .1.
pattern: ... 0.1 ... tools: Furnace
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Rich Slag, Silver Ore input: Rich Slag, Silver Ore
pattern: ... 01. ... pattern: ... 01. ...
@@ -1900,6 +1894,12 @@ group: Minerals
recipe: recipe:
input: Pyrotheum Dust, Silver Ore input: Pyrotheum Dust, Silver Ore
pattern: ... 10. ... pattern: ... 10. ...
recipe:
extras: Lead Ingot
input: Cinnabar, Silver Ore
pattern: ... 0.1 ...
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Silver Nugget input: Silver Nugget
pattern: 000 000 000 pattern: 000 000 000
@@ -1931,11 +1931,7 @@ group: Minerals
item: Tin Ingot item: Tin Ingot
recipe: recipe:
input: Tin Ore, furnace fuel input: Pulverized Tin
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Tin Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
@@ -1943,15 +1939,13 @@ group: Minerals
pattern: .0. ... .1. pattern: .0. ... .1.
tools: Furnace tools: Furnace
recipe: recipe:
input: Pulverized Tin input: Tin Ore
pattern: ... .0. ... pattern: ... .0. ...
tools: Redstone Furnace tools: Redstone Furnace
recipe: recipe:
extras: Iron Ingot input: Tin Ore, furnace fuel
input: Cinnabar, Tin Ore pattern: .0. ... .1.
pattern: ... 0.1 ... tools: Furnace
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Rich Slag, Tin Ore input: Rich Slag, Tin Ore
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -1971,6 +1965,12 @@ group: Minerals
input: Pyrotheum Dust, Tin Ore input: Pyrotheum Dust, Tin Ore
pattern: ... 1.0 ... pattern: ... 1.0 ...
tools: Induction Smelter tools: Induction Smelter
recipe:
extras: Iron Ingot
input: Cinnabar, Tin Ore
pattern: ... 0.1 ...
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Tin Nugget input: Tin Nugget
pattern: 000 000 000 pattern: 000 000 000
@@ -2006,20 +2006,6 @@ group: Minerals
tools: Crafting Table tools: Crafting Table
item: Tinkers Alloy Ingot item: Tinkers Alloy Ingot
recipe:
input: Tinkers Alloy Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe:
input: Tinkers Alloy Blend
pattern: ... .0. ...
tools: Redstone Furnace
recipe:
extras: Slag
input: Sand, 1 Tinkers Alloy Blend
pattern: ... 0.1 ...
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: 3 Pulverized Copper, Pulverized Tin input: 3 Pulverized Copper, Pulverized Tin
pattern: ... 0.1 ... pattern: ... 0.1 ...
@@ -2030,6 +2016,20 @@ group: Minerals
pattern: ... 0.1 ... pattern: ... 0.1 ...
quantity: 4 quantity: 4
tools: Induction Smelter tools: Induction Smelter
recipe:
input: Tinkers Alloy Blend
pattern: ... .0. ...
tools: Redstone Furnace
recipe:
input: Tinkers Alloy Blend, furnace fuel
pattern: .0. ... .1.
tools: Furnace
recipe:
extras: Slag
input: Sand, 1 Tinkers Alloy Blend
pattern: ... 0.1 ...
quantity: 3
tools: Induction Smelter
recipe: recipe:
input: Tinkers Alloy Block input: Tinkers Alloy Block
pattern: ... .0. ... pattern: ... .0. ...
+43
View File
@@ -17,6 +17,7 @@ http://crafting-guide.com/browse/mekanism/
http://crafting-guide.com/browse/minecraft/ http://crafting-guide.com/browse/minecraft/
http://crafting-guide.com/browse/modular_powersuits/ http://crafting-guide.com/browse/modular_powersuits/
http://crafting-guide.com/browse/railcraft/ http://crafting-guide.com/browse/railcraft/
http://crafting-guide.com/browse/simply_jetpacks/
http://crafting-guide.com/browse/thermal_dynamics/ http://crafting-guide.com/browse/thermal_dynamics/
http://crafting-guide.com/browse/thermal_expansion/ http://crafting-guide.com/browse/thermal_expansion/
http://crafting-guide.com/browse/buildcraft/tutorials/gates_wires_and_chips/ http://crafting-guide.com/browse/buildcraft/tutorials/gates_wires_and_chips/
@@ -3687,6 +3688,48 @@ http://crafting-guide.com/browse/railcraft/world_anchor/
http://crafting-guide.com/browse/railcraft/wye_track/ http://crafting-guide.com/browse/railcraft/wye_track/
http://crafting-guide.com/browse/railcraft/yellow_metal_platform/ http://crafting-guide.com/browse/railcraft/yellow_metal_platform/
http://crafting-guide.com/browse/railcraft/yellow_metal_post/ http://crafting-guide.com/browse/railcraft/yellow_metal_post/
http://crafting-guide.com/browse/simply_jetpacks/cryotheum_coolant_unit/
http://crafting-guide.com/browse/simply_jetpacks/cryotheum_coolant_unit_empty/
http://crafting-guide.com/browse/simply_jetpacks/enderium_armor_plating/
http://crafting-guide.com/browse/simply_jetpacks/flux_crystal/
http://crafting-guide.com/browse/simply_jetpacks/flux_infused_chestplate_assembly/
http://crafting-guide.com/browse/simply_jetpacks/flux_infused_jetplate/
http://crafting-guide.com/browse/simply_jetpacks/fluxed_armor_plating/
http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_blend/
http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_ingot/
http://crafting-guide.com/browse/simply_jetpacks/fluxed_electrum_nugget/
http://crafting-guide.com/browse/simply_jetpacks/fluxed_thruster/
http://crafting-guide.com/browse/simply_jetpacks/glowstone_elevation_unit/
http://crafting-guide.com/browse/simply_jetpacks/glowstone_elevation_unit_empty/
http://crafting-guide.com/browse/simply_jetpacks/hardened_flux_pack/
http://crafting-guide.com/browse/simply_jetpacks/hardened_flux_pack_armored/
http://crafting-guide.com/browse/simply_jetpacks/hardened_jetpack/
http://crafting-guide.com/browse/simply_jetpacks/hardened_jetpack_armored/
http://crafting-guide.com/browse/simply_jetpacks/hardened_thruster/
http://crafting-guide.com/browse/simply_jetpacks/invar_armor_plating/
http://crafting-guide.com/browse/simply_jetpacks/iron_armor_plating/
http://crafting-guide.com/browse/simply_jetpacks/leadstone_flux_pack/
http://crafting-guide.com/browse/simply_jetpacks/leadstone_jetpack/
http://crafting-guide.com/browse/simply_jetpacks/leadstone_jetpack_armored/
http://crafting-guide.com/browse/simply_jetpacks/leadstone_thruster/
http://crafting-guide.com/browse/simply_jetpacks/leather_strap/
http://crafting-guide.com/browse/simply_jetpacks/mysterious_potato/
http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_default/
http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_none/
http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_rainbow_smoke/
http://crafting-guide.com/browse/simply_jetpacks/particle_customizer_smoke_only/
http://crafting-guide.com/browse/simply_jetpacks/redstone_flux_pack/
http://crafting-guide.com/browse/simply_jetpacks/redstone_flux_pack_armored/
http://crafting-guide.com/browse/simply_jetpacks/reinforced_jetpack/
http://crafting-guide.com/browse/simply_jetpacks/reinforced_jetpack_armored/
http://crafting-guide.com/browse/simply_jetpacks/reinforced_thruster/
http://crafting-guide.com/browse/simply_jetpacks/resonant_flux_pack/
http://crafting-guide.com/browse/simply_jetpacks/resonant_flux_pack_armored/
http://crafting-guide.com/browse/simply_jetpacks/resonant_jetpack/
http://crafting-guide.com/browse/simply_jetpacks/resonant_jetpack_armored/
http://crafting-guide.com/browse/simply_jetpacks/resonant_thruster/
http://crafting-guide.com/browse/simply_jetpacks/tinker_s_alloy_armor_plating/
http://crafting-guide.com/browse/simply_jetpacks/tuberous_jetpack/
http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct/ http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct/
http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct_empty/ http://crafting-guide.com/browse/thermal_dynamics/cryo_stabilized_fluxduct_empty/
http://crafting-guide.com/browse/thermal_dynamics/dense_impulse_itemduct/ http://crafting-guide.com/browse/thermal_dynamics/dense_impulse_itemduct/