Add BigReactors 0.4.2A2
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
USAGE=<<-END
|
read -d '' USAGE <<END
|
||||||
USAGE: convert-nei-dump <source> <target>
|
USAGE: convert-nei-dump <source> <mod_slug> <mod_version>
|
||||||
|
|
||||||
Converts output from NEI dump files into a format which can be used by
|
Converts output from NEI dump files into a format which can be used by
|
||||||
Crafting Guide. In particlar, this script looks for the "Item Panel" dump
|
Crafting Guide. In particlar, this script looks for the "Item Panel" dump
|
||||||
@@ -13,36 +13,36 @@ USAGE: convert-nei-dump <source> <target>
|
|||||||
data, you will need to manually enter the missing content.
|
data, you will need to manually enter the missing content.
|
||||||
|
|
||||||
<source> : the "dumps" directory where NEI dropped its content
|
<source> : the "dumps" directory where NEI dropped its content
|
||||||
<target> : the mod version directory where the finished files should
|
<mod_slug> : the slug of the mod being converted
|
||||||
be placed
|
<mod_version> : the version of the mod being converted
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
||||||
function die {
|
|
||||||
echo $1
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
SOURCE_DIR="$1"; shift
|
SOURCE_DIR="$1"; shift
|
||||||
TARGET_DIR="$1"; shift
|
MOD_SLUG="$1"; shift
|
||||||
DATA_FILE="$TARGET_DIR/mod-version.cg"
|
MOD_VERSION="$1"; shift
|
||||||
|
|
||||||
if [[ "$SOURCE_DIR" == "" || "$TARGET_DIR" == "" ]]; then
|
mkdir -p "./static/data/$MOD_SLUG/$MOD_VERSION"
|
||||||
echo $USAGE
|
DATA_FILE="./static/data/$MOD_SLUG/$MOD_VERSION/mod-version.cg"
|
||||||
die
|
touch "$DATA_FILE"
|
||||||
|
|
||||||
|
if [[ "$SOURCE_DIR" == "" || "$MOD_SLUG" == "" || "$MOD_VERSION" == "" ]]; then
|
||||||
|
echo "$USAGE"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p $TARGET_DIR/images
|
mkdir -p "./static/browse/$MOD_SLUG/images"
|
||||||
ls $SOURCE_DIR/itempanel_icons | while read FILE; do
|
ls $SOURCE_DIR/itempanel_icons | while read FILE; do
|
||||||
ITEM_NAME="$(echo $FILE | sed 's/.png//')"
|
ITEM_NAME="$(echo $FILE | sed 's/.png//')"
|
||||||
TARGET_FILE="$(echo $ITEM_NAME \
|
ITEM_SLUG="$(echo $ITEM_NAME \
|
||||||
| sed 's/[^a-zA-Z0-9]/_/g' \
|
| sed 's/[^a-zA-Z0-9]/_/g' \
|
||||||
| sed 's/__*/_/g' \
|
| sed 's/__*/_/g' \
|
||||||
| sed 's/^_//' \
|
| sed 's/^_//' \
|
||||||
| sed 's/_$//' \
|
| sed 's/_$//' \
|
||||||
| tr '[A-Z]' '[a-z]' \
|
| tr '[A-Z]' '[a-z]' \
|
||||||
).png"
|
)"
|
||||||
cp "$SOURCE_DIR/itempanel_icons/$FILE" "$TARGET_DIR/images/$TARGET_FILE"
|
mkdir -p "./static/browse/$MOD_SLUG/$ITEM_SLUG"
|
||||||
|
cp "$SOURCE_DIR/itempanel_icons/$FILE" "./static/browse/$MOD_SLUG/$ITEM_SLUG/icon.png"
|
||||||
if ! grep -q "item: $ITEM_NAME$" $DATA_FILE; then
|
if ! grep -q "item: $ITEM_NAME$" $DATA_FILE; then
|
||||||
echo "item: $ITEM_NAME" >> $DATA_FILE
|
echo "item: $ITEM_NAME" >> $DATA_FILE
|
||||||
echo "" >> $DATA_FILE
|
echo "" >> $DATA_FILE
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ All rights reserved.
|
|||||||
exports.DefaultMods =
|
exports.DefaultMods =
|
||||||
minecraft: { defaultVersion: '1.7.10' }
|
minecraft: { defaultVersion: '1.7.10' }
|
||||||
applied_energistics_2: { defaultVersion: 'rv1-stable-1' }
|
applied_energistics_2: { defaultVersion: 'rv1-stable-1' }
|
||||||
|
big_reactors: { defaultVersion: '0.4.2A2' }
|
||||||
buildcraft: { defaultVersion: '6.2.6' }
|
buildcraft: { defaultVersion: '6.2.6' }
|
||||||
enderio: { defaultVersion: '2.2.7.325' }
|
enderio: { defaultVersion: '2.2.7.325' }
|
||||||
forestry: { defaultVersion: '3.4.0.7' }
|
forestry: { defaultVersion: '3.4.0.7' }
|
||||||
|
|||||||
|
After Width: | Height: | Size: 353 B |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 462 B |
|
After Width: | Height: | Size: 268 B |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 501 B |
|
After Width: | Height: | Size: 269 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 574 B |
@@ -0,0 +1,93 @@
|
|||||||
|
<!DOCTYPE html><html><head>
|
||||||
|
<title>Fluid Cyanite | 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" 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"><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>
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
<div class="view__item_page page" style="display: block; "><div class="sidebar"><div class="titleImage"><a><img src="/browse/big_reactors/fluid_cyanite/icon.png"></a></div><a target="new" class="officialPage externalLink"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><div class="view__adsense placeholder sidebar_skyscraper"></div></div><div class="mainBody"><h1 class="name">Fluid Cyanite</h1><div class="byline" style="display: block; "><p>from <a href="/browse/big_reactors/">Big Reactors</a></p></div><div class="recipes section" style=""><h2>Recipes</h2><div class="panel"></div></div><div class="description section" style="display: none; "><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section" style=""><h2>Videos</h2><div class="panel"></div></div><div class="usedToMake" style="display: block; "><div class="view__item_group section"><h2>Used to Make</h2><div class="panel"><div class="view__item"><a href="/browse/big_reactors/fluid_cyanite_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_cyanite_bucket/icon.png"></td><td width="*" class="itemName">Fluid Cyanite Bucket</td></tr></tbody></table></a></div></div></div></div><div class="usedAsToolToMake" style="display: none; "><div class="view__item_group section"><h2>Used as Tool to Make</h2><div class="panel"></div></div></div><div class="similar" style="display: block; "><div class="view__item_group section"><h2>Other Liquids</h2><div class="panel"><div class="view__item"><a href="/browse/big_reactors/fluid_cyanite/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_cyanite/icon.png"></td><td width="*" class="itemName">Fluid Cyanite</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_cyanite_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_cyanite_bucket/icon.png"></td><td width="*" class="itemName">Fluid Cyanite Bucket</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_yellorium/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_yellorium/icon.png"></td><td width="*" class="itemName">Fluid Yellorium</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_yellorium_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_yellorium_bucket/icon.png"></td><td width="*" class="itemName">Fluid Yellorium Bucket</td></tr></tbody></table></a></div></div></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&repo=crafting-guide&type=fork&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
|
||||||
|
</div>
|
||||||
|
</div><a href="/test.html" rel="nofollow">
|
||||||
|
<div class="divider bottom"></div></a>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 378 B |
|
After Width: | Height: | Size: 559 B |
@@ -0,0 +1,93 @@
|
|||||||
|
<!DOCTYPE html><html><head>
|
||||||
|
<title>Fluid Yellorium | 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" 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"><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>
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
<div class="view__item_page page" style="display: block; "><div class="sidebar"><div class="titleImage"><a><img src="/browse/big_reactors/fluid_yellorium/icon.png"></a></div><a target="new" class="officialPage externalLink"><p>Offical Documentation</p></a><button class="large craftingPlan">See Crafting Plan</button><div class="view__adsense placeholder sidebar_skyscraper"></div></div><div class="mainBody"><h1 class="name">Fluid Yellorium</h1><div class="byline" style="display: block; "><p>from <a href="/browse/big_reactors/">Big Reactors</a></p></div><div class="recipes section" style=""><h2>Recipes</h2><div class="panel"></div></div><div class="description section" style="display: none; "><h2>Description</h2><div class="panel markdown"></div></div><div class="videos section" style=""><h2>Videos</h2><div class="panel"></div></div><div class="usedToMake" style="display: block; "><div class="view__item_group section"><h2>Used to Make</h2><div class="panel"><div class="view__item"><a href="/browse/big_reactors/fluid_yellorium_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_yellorium_bucket/icon.png"></td><td width="*" class="itemName">Fluid Yellorium Bucket</td></tr></tbody></table></a></div></div></div></div><div class="usedAsToolToMake" style="display: none; "><div class="view__item_group section"><h2>Used as Tool to Make</h2><div class="panel"></div></div></div><div class="similar" style="display: block; "><div class="view__item_group section"><h2>Other Liquids</h2><div class="panel"><div class="view__item"><a href="/browse/big_reactors/fluid_cyanite/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_cyanite/icon.png"></td><td width="*" class="itemName">Fluid Cyanite</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_cyanite_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_cyanite_bucket/icon.png"></td><td width="*" class="itemName">Fluid Cyanite Bucket</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_yellorium/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_yellorium/icon.png"></td><td width="*" class="itemName">Fluid Yellorium</td></tr></tbody></table></a></div><div class="view__item"><a href="/browse/big_reactors/fluid_yellorium_bucket/"><table><tbody><tr><td class="itemIcon"><img src="/browse/big_reactors/fluid_yellorium_bucket/icon.png"></td><td width="*" class="itemName">Fluid Yellorium Bucket</td></tr></tbody></table></a></div></div></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&repo=crafting-guide&type=fork&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="32"></iframe>
|
||||||
|
</div>
|
||||||
|
</div><a href="/test.html" rel="nofollow">
|
||||||
|
<div class="divider bottom"></div></a>
|
||||||
|
</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>
|
||||||
|
After Width: | Height: | Size: 379 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 971 B |
|
After Width: | Height: | Size: 478 B |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 909 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 804 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 494 B |
|
After Width: | Height: | Size: 814 B |
|
After Width: | Height: | Size: 272 B |
@@ -0,0 +1,360 @@
|
|||||||
|
schema: 1
|
||||||
|
|
||||||
|
group: Liquids
|
||||||
|
|
||||||
|
item: Fluid Cyanite
|
||||||
|
|
||||||
|
item: Fluid Cyanite Bucket
|
||||||
|
recipe:
|
||||||
|
input: Bucket, Fluid Cyanite
|
||||||
|
pattern: ... .1. .0.
|
||||||
|
|
||||||
|
item: Fluid Yellorium
|
||||||
|
|
||||||
|
item: Fluid Yellorium Bucket
|
||||||
|
recipe:
|
||||||
|
input: Bucket, Fluid Yellorium
|
||||||
|
pattern: ... .1. .0.
|
||||||
|
|
||||||
|
group: Machines
|
||||||
|
|
||||||
|
item: Cyanite Reprocesssor
|
||||||
|
recipe:
|
||||||
|
input: Iron Ingot, Piston, Reactor Casing, Redstone, Yellorium Fuel Rod
|
||||||
|
pattern: 202 141 232
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
group: Minerals
|
||||||
|
|
||||||
|
item: Blutonium Block
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Ingot
|
||||||
|
pattern: 000 000 000
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Blutonium Dust
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Pulverizer
|
||||||
|
|
||||||
|
item: Blutonium Ingot
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot, Water
|
||||||
|
pattern: .0. .0. .1.
|
||||||
|
tools: Cyanite Reprocesssor
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
|
||||||
|
item: Cyanite Block
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot
|
||||||
|
pattern: 000 000 000
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Cyanite Dust
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Pulverizer
|
||||||
|
|
||||||
|
item: Cyanite Ingot
|
||||||
|
recipe:
|
||||||
|
input: Sand, Yellorium Ingot
|
||||||
|
pattern: ... 10. ...
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
|
||||||
|
item: Graphite Bar
|
||||||
|
recipe:
|
||||||
|
input: Coal, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Charcoal, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Graphite Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Graphite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
|
||||||
|
item: Graphite Block
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar
|
||||||
|
pattern: 000 000 000
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Graphite Dust
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Graphite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Graphite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
|
||||||
|
item: Ludicrite Block
|
||||||
|
recipe:
|
||||||
|
input: Block of Emerald, Blutonium Ingot, Ender Pearl, Nether Star
|
||||||
|
pattern: 121 030 121
|
||||||
|
tools: Crafting Table
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Ingot
|
||||||
|
pattern: 000 000 000
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Ludicrite Dust
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
|
||||||
|
item: Ludicrite Ingot
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Ludicrite Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
|
||||||
|
item: Yellorite Ore
|
||||||
|
|
||||||
|
item: Yellorium Block
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Ingot
|
||||||
|
pattern: 000 000 000
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Yellorium Dust
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Yellorite Ore
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 2
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Ingot
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
tools: Pulverizer
|
||||||
|
recipe:
|
||||||
|
input: Yellorite Ore
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 2
|
||||||
|
tools: Pulverizer
|
||||||
|
|
||||||
|
item: Yellorium Ingot
|
||||||
|
recipe:
|
||||||
|
input: Yellorite Ore, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Yellorium Block
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 9
|
||||||
|
|
||||||
|
group: Reactor Parts
|
||||||
|
|
||||||
|
item: Reactor Access Port
|
||||||
|
recipe:
|
||||||
|
input: Chest, Piston, Reactor Casing
|
||||||
|
pattern: 2.2 .0. 212
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Casing
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar, Iron Ingot, Yellorium Ingot
|
||||||
|
pattern: 101 020 101
|
||||||
|
quantity: 4
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Computer Port
|
||||||
|
recipe:
|
||||||
|
input: Gold Ingot, Reactor Casing, Reactor Redstone Port, Redstone
|
||||||
|
pattern: 131 020 131
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Control Rod
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar, Reactor Casing, Redstone, Yellorium Ingot
|
||||||
|
pattern: 101 020 131
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Controller
|
||||||
|
recipe:
|
||||||
|
input: Diamond, Reactor Casing, Redstone, Yellorium Ingot
|
||||||
|
pattern: 1.1 303 121
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Coolant Port
|
||||||
|
recipe:
|
||||||
|
input: Bucket, Iron Ingot, Piston, Reactor Casing
|
||||||
|
pattern: 3.3 101 323
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Glass
|
||||||
|
recipe:
|
||||||
|
input: Glass, Reactor Casing
|
||||||
|
pattern: ... 010 ...
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Power Tap
|
||||||
|
recipe:
|
||||||
|
input: Reactor Casing, Redstone
|
||||||
|
pattern: 010 1.1 010
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor RedNet Port
|
||||||
|
recipe:
|
||||||
|
input: Gold Ingot, Reactor Casing, RedNet Cable
|
||||||
|
pattern: 121 202 121
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Reactor Redstone Port
|
||||||
|
recipe:
|
||||||
|
input: Gold Ingot, Reactor Casing, Redstone
|
||||||
|
pattern: 121 202 121
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Yellorium Fuel Rod
|
||||||
|
recipe:
|
||||||
|
input: Graphite Bar, Iron Ingot, Yellorium Ingot
|
||||||
|
pattern: 101 121 101
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
group: Turbine Parts
|
||||||
|
|
||||||
|
item: Turbine Computer Port
|
||||||
|
recipe:
|
||||||
|
input: Gold Ingot, Redstone, Redstone Repeater, Turbine Housing
|
||||||
|
pattern: 313 020 313
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Controller
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Ingot, Diamond, Turbine Housing
|
||||||
|
pattern: 2.2 010 2.2
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Fluid Port
|
||||||
|
recipe:
|
||||||
|
input: Bucket, Iron Ingot, Piston, Turbine Housing
|
||||||
|
pattern: 3.3 101 323
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Glass
|
||||||
|
recipe:
|
||||||
|
input: Glass, Turbine Housing
|
||||||
|
pattern: ... 010 ...
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Housing
|
||||||
|
recipe:
|
||||||
|
input: Blutonium Ingot, Graphite Bar, Iron Ingot, Nether Quartz
|
||||||
|
pattern: 212 303 212
|
||||||
|
quantity: 4
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Power Port
|
||||||
|
recipe:
|
||||||
|
input: Redstone, Turbine Housing
|
||||||
|
pattern: 101 0.0 101
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Rotor Bearing
|
||||||
|
recipe:
|
||||||
|
input: Diamond, Turbine Housing, Turbine Rotor Shaft
|
||||||
|
pattern: 121 000 121
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Rotor Blade
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot, Iron Ingot
|
||||||
|
pattern: ... 011 ...
|
||||||
|
tools: Crafting Table
|
||||||
|
|
||||||
|
item: Turbine Rotor Shaft
|
||||||
|
recipe:
|
||||||
|
input: Cyanite Ingot, Iron Ingot
|
||||||
|
pattern: ... 101 ...
|
||||||
|
tools: Crafting Table
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
schema: 1
|
||||||
|
|
||||||
|
name: Big Reactors
|
||||||
|
author: ErogenousBeef
|
||||||
|
description: Massive multi-block generators based on Redstone Flux.
|
||||||
|
homePageUrl: http://www.big-reactors.com/
|
||||||
|
documentationUrl: http://www.big-reactors.com/\#/download
|
||||||
|
downloadUrl: http://wiki.technicpack.net/Big_Reactors
|
||||||
|
|
||||||
|
version: 0.4.2A2
|
||||||
@@ -3,6 +3,7 @@ http://crafting-guide.com/configure/
|
|||||||
http://crafting-guide.com/browse/
|
http://crafting-guide.com/browse/
|
||||||
http://crafting-guide.com/craft/
|
http://crafting-guide.com/craft/
|
||||||
http://crafting-guide.com/browse/applied_energistics_2/
|
http://crafting-guide.com/browse/applied_energistics_2/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/
|
||||||
http://crafting-guide.com/browse/buildcraft/
|
http://crafting-guide.com/browse/buildcraft/
|
||||||
http://crafting-guide.com/browse/enderio/
|
http://crafting-guide.com/browse/enderio/
|
||||||
http://crafting-guide.com/browse/forestry/
|
http://crafting-guide.com/browse/forestry/
|
||||||
@@ -168,6 +169,47 @@ http://crafting-guide.com/browse/applied_energistics_2/wireless_booster/
|
|||||||
http://crafting-guide.com/browse/applied_energistics_2/wireless_receiver/
|
http://crafting-guide.com/browse/applied_energistics_2/wireless_receiver/
|
||||||
http://crafting-guide.com/browse/applied_energistics_2/wireless_terminal/
|
http://crafting-guide.com/browse/applied_energistics_2/wireless_terminal/
|
||||||
http://crafting-guide.com/browse/applied_energistics_2/wooden_crank/
|
http://crafting-guide.com/browse/applied_energistics_2/wooden_crank/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/blutonium_block/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/blutonium_dust/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/blutonium_ingot/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/cyanite_block/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/cyanite_dust/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/cyanite_ingot/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/cyanite_reprocesssor/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/fluid_cyanite/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/fluid_cyanite_bucket/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/fluid_yellorium/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/fluid_yellorium_bucket/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/graphite_bar/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/graphite_block/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/graphite_dust/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/ludicrite_block/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/ludicrite_dust/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/ludicrite_ingot/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_access_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_casing/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_computer_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_control_rod/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_controller/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_coolant_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_glass/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_power_tap/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_rednet_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/reactor_redstone_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_computer_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_controller/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_fluid_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_glass/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_housing/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_power_port/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_rotor_bearing/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_rotor_blade/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/turbine_rotor_shaft/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/yellorite_ore/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/yellorium_block/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/yellorium_dust/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/yellorium_fuel_rod/
|
||||||
|
http://crafting-guide.com/browse/big_reactors/yellorium_ingot/
|
||||||
http://crafting-guide.com/browse/buildcraft/advanced_crafting_table/
|
http://crafting-guide.com/browse/buildcraft/advanced_crafting_table/
|
||||||
http://crafting-guide.com/browse/buildcraft/architect_table/
|
http://crafting-guide.com/browse/buildcraft/architect_table/
|
||||||
http://crafting-guide.com/browse/buildcraft/assembly_table/
|
http://crafting-guide.com/browse/buildcraft/assembly_table/
|
||||||
|
|||||||