]> git.za3k.com Git - za3k.git/commitdiff
Add recipes to computercraft cheatsheet
authorZachary Vance <vanceza@gmail.com>
Mon, 22 Jun 2015 13:00:53 +0000 (06:00 -0700)
committerZachary Vance <vanceza@gmail.com>
Mon, 22 Jun 2015 13:00:53 +0000 (06:00 -0700)
39 files changed:
cheatsheet.css
computercraft_reference.html
minecraft_img/advancedcomputer.png [new file with mode: 0644]
minecraft_img/advancedmonitor.png [new file with mode: 0644]
minecraft_img/advancedpocketcomputer.png [new file with mode: 0644]
minecraft_img/advancedturtle.png [new file with mode: 0644]
minecraft_img/chest.png [new file with mode: 0644]
minecraft_img/computer.png [new file with mode: 0644]
minecraft_img/diamondaxe.png [new file with mode: 0644]
minecraft_img/diamondhoe.png [new file with mode: 0644]
minecraft_img/diamondpickaxe.png [new file with mode: 0644]
minecraft_img/diamondshovel.png [new file with mode: 0644]
minecraft_img/diamondsword.png [new file with mode: 0644]
minecraft_img/disk.png [new file with mode: 0644]
minecraft_img/diskdrive.png [new file with mode: 0644]
minecraft_img/enderpearl.png [new file with mode: 0644]
minecraft_img/floppydisk.png [new file with mode: 0644]
minecraft_img/glasspane.png [new file with mode: 0644]
minecraft_img/gold.png [new file with mode: 0644]
minecraft_img/goldenapple.png [new file with mode: 0644]
minecraft_img/inksac.png [new file with mode: 0644]
minecraft_img/iron.png [new file with mode: 0644]
minecraft_img/leather.png [new file with mode: 0644]
minecraft_img/monitor.png [new file with mode: 0644]
minecraft_img/networkingcable.png [new file with mode: 0644]
minecraft_img/paper.png [new file with mode: 0644]
minecraft_img/pocketcomputer.png [new file with mode: 0644]
minecraft_img/printedbook.png [new file with mode: 0644]
minecraft_img/printedpage.png [new file with mode: 0644]
minecraft_img/printedpages.png [new file with mode: 0644]
minecraft_img/printer.png [new file with mode: 0644]
minecraft_img/recipe.png [new file with mode: 0644]
minecraft_img/redstone.png [new file with mode: 0644]
minecraft_img/stone.png [new file with mode: 0644]
minecraft_img/string.png [new file with mode: 0644]
minecraft_img/turtle.png [new file with mode: 0644]
minecraft_img/wiredmodem.png [new file with mode: 0644]
minecraft_img/wirelessmodem.png [new file with mode: 0644]
minecraft_img/workbench.png [new file with mode: 0644]

index 41e2227ec129f0e1c8f0d34bcc89edb9fba6671c..5d77a3a8c9727ee1438680242ff03d97cbf70a36 100644 (file)
@@ -17,14 +17,76 @@ section {
     margin: 5px 0 5px 0;
 }
 
+.cheatsheet > .title {
+    font-variant: small-caps;
+    margin: 5px 5px 5px 5px;
+}   
+
 section > .title {
     font-variant: small-caps;
+    display: block;
 }
 
 section > div {
     margin-left: 20px;
 }
 
+.recipe-container {
+    margin-bottom: 10px;
+    position: relative;
+}
+.recipe-container .recipe {
+    display: inline-block;
+}
+.recipe-container .output-label {
+    position: absolute;
+    width: 110px;
+    top: 60px;
+    left: 266px;
+}
+.recipe-container .subrecipe {
+    padding-left: 30px;
+    padding-right: 30px;
+}
+.ingredient {
+    vertical-align: middle;
+}
+.ingredient {
+    vertical-align: middle;
+}
+.recipe {
+    position: relative;
+    background-image: url("minecraft_img/recipe.png");
+    height: 132px;
+    width: 256px;
+    margin: 0px;
+}
+.recipe .input {
+    position: absolute;
+    left: 14px;
+    top: 14px;
+}
+.recipe .output {
+    position: absolute;
+    left: 202px;
+    top: 50px;
+}
+.recipe .ingredient {
+    height: 32px;
+    width: 32px;
+    margin: 0px;
+    display: inline-block;
+    vertical-align: inherit;
+}
+.recipe .output .amount {
+    position: absolute;
+    left: 19px;
+    top: 13px;
+    color: white;
+    font-size: 14pt;
+    text-shadow: 2px 2px black;
+}
+
 .parameters {
     font-style: italic;
 }
@@ -41,6 +103,10 @@ section > div {
     display: none;
 }
 
+.program {
+    font-weight: bold;
+}
+
 .shortcut {
     background: lightgrey;
     display: inline-block;
@@ -95,3 +161,20 @@ section > div {
 .keyword {
     font-variant: small-caps;
 }
+
+@media screen
+{
+    .boring {
+        color: green;
+    }
+}
+
+@media print
+{    
+    .no-print, .no-print *
+    {
+        display: none !important;
+    }
+    .boring {
+}
+
index 2ce3c30b4e6ff366340e868a14c91bd24d645442..f220e24bb2799a858391a36c8f5b33836a1f18d8 100644 (file)
@@ -2,8 +2,318 @@
 <html>
 <head>
     <link rel="stylesheet" href="cheatsheet.css">
+    <script>
+        function ready() {
+            console.log("ready");
+            var toggleContainer = document.getElementsByClassName("toggleContainer")[0];
+            var toggle = document.createElement("a");
+            toggle.href="#";
+            toggle.innerHTML = "Show more";
+            toggleContainer.appendChild(toggle);
+            var toggleFull = (function() {
+                var fullNode;
+                return function() {
+                    if (fullNode) {
+                        fullNode.remove();
+                        fullNode = undefined;
+                        toggle.innerHTML = "Show more";
+                    } else {
+                        var style = document.createElement('style');
+                        style.innerHTML = ".cheatsheet .boring { display: block; };";
+                        fullNode = style;
+                        document.body.appendChild(style);
+                        toggle.innerHTML = "Show less";
+                    }
+                }
+            })();
+            toggle.onclick = toggleFull;
+        }
+        document.addEventListener("DOMContentLoaded", ready);
+    </script>
 </head>
 <body class="cheatsheet">
+    <h1 class="title">ComputerCraft 1.73</h1>
+    <div class="toggleContainer no-print"></div>
+    <section class="boring">
+        <span class="title">Recipes</span>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Glass Pane" src="minecraft_img/glasspane.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Computer" src="minecraft_img/computer.png">
+                </div>
+            </div>
+            <div class="output-label">Computer</div>
+            <div class="note"><img class="ingredient" alt="Gold Ingot" src="minecraft_img/gold.png"> in place of <img class="ingredient" alt="Stone" src="minecraft_img/stone.png"> to get <img class="ingredient" alt="Advanced Computer" src="minecraft_img/advancedcomputer.png"></div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Wired Modem" src="minecraft_img/wiredmodem.png">
+                </div>
+            </div>
+            <div class="output-label">Wired Modem</div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <div class="empty ingredient"></div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <div class="empty ingredient"></div>
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <div class="empty ingredient"></div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <div class="empty ingredient"></div>
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Networking Cable" src="minecraft_img/networkingcable.png">
+                    <span class="amount">6</span>
+                </div>
+            </div>
+            <div class="output-label">Networking Cable</div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Ender Pearl" src="minecraft_img/enderpearl.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Wireless Modem" src="minecraft_img/wirelessmodem.png">
+                </div>
+            </div>
+            <div class="output-label">Wireless Modem</div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Disk Drive" src="minecraft_img/diskdrive.png">
+                </div>
+            </div>
+            <div class="output-label">Disk Drive</div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Paper" src="minecraft_img/paper.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Floppy Disk" src="minecraft_img/disk.png">
+                </div>
+            </div>
+            <div class="output-label">Floppy Disk</div>
+            <div class="note">Can be dyed</div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                        <img class="ingredient" alt="Computer" src="minecraft_img/computer.png">
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                        <img class="ingredient" alt="Chest" src="minecraft_img/chest.png">
+                        <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Turtle" src="minecraft_img/turtle.png">
+                </div>
+            </div>
+            <div class="output-label">Turtle</div>
+            <div class="note"><img class="ingredient" alt="Gold Ingot" src="minecraft_img/gold.png"> and <img class="ingredient" alt="Advanced Computer" src="minecraft_img/advancedcomputer.png"> in place of <img class="ingredient" alt="Iron Ingot" src="minecraft_img/iron.png"> and <img class="ingredient" alt="Computer" src="minecraft_img/computer.png"> to get <img class="ingredient" alt="Advanced Turtle" src="minecraft_img/advancedturtle.png"></div>
+            <div class="subrecipe">
+                Combine <img class="ingredient" alt="Turtle" src="minecraft_img/turtle.png"> / <img class="ingredient" alt="Advanced Turtle" src="minecraft_img/advancedturtle.png"> and up to two of: 
+                        <div>
+                            <img class="ingredient" alt="Wireless Modem" src="minecraft_img/wirelessmodem.png">
+                            <img class="ingredient" alt="Workbench" src="minecraft_img/workbench.png">
+                            <img class="ingredient" alt="Diamond Pickaxe" src="minecraft_img/diamondpickaxe.png">
+                            <img class="ingredient" alt="Diamond Sword" src="minecraft_img/diamondsword.png">
+                            <img class="ingredient" alt="Diamond Hoe" src="minecraft_img/diamondhoe.png">
+                            <img class="ingredient" alt="Stone" src="minecraft_img/diamondshovel.png">
+                        </div>
+            </div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Glass Pane" src="minecraft_img/glasspane.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Monitor" src="minecraft_img/monitor.png">
+                </div>
+            </div>
+            <div class="output-label">Monitor</div>
+            <div class="note"><img class="ingredient" alt="Gold Ingot" src="minecraft_img/gold.png"> in place of <img class="ingredient" alt="Stone" src="minecraft_img/stone.png"> to get 4x<img class="ingredient" alt="Advanced Monitor" src="minecraft_img/advancedmonitor.png"></div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Redstone" src="minecraft_img/redstone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Ink Sac" src="minecraft_img/inksac.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Printer" src="minecraft_img/printer.png">
+                </div>
+            </div>
+            <div class="output-label">Printer</div>
+            <div class="note">Combine <img class="ingredient" alt="Printed Page" src="minecraft_img/printedpage.png"> / <img class="ingredient" alt="Printed Pages" src="minecraft_img/printedpages.png"> with <img class="ingredient" alt="String" src="minecraft_img/string.png"> to get <img class="ingredient" alt="Printed Pages" src="minecraft_img/printedpages.png"></div>
+            <div class="note">Combine <img class="ingredient" alt="Printed Page" src="minecraft_img/printedpage.png"> / <img class="ingredient" alt="Printed Pages" src="minecraft_img/printedpages.png"> with <img class="ingredient" alt="String" src="minecraft_img/string.png"> and <img class="ingredient" alt="Leather" src="minecraft_img/leather.png"> to get <img class="ingredient" alt="Printed Book" src="minecraft_img/printedbook.png"></div>
+        </div>
+        <div class="recipe-container">
+            <div class="recipe">
+                <div class="input">
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Golden Apple" src="minecraft_img/goldenapple.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                    <div>
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                        <img class="ingredient" alt="Glass Pane" src="minecraft_img/glasspane.png">
+                        <img class="ingredient" alt="Stone" src="minecraft_img/stone.png">
+                    </div>
+                </div>
+                <div class="output">
+                    <img class="ingredient" alt="Pocket Computer" src="minecraft_img/pocketcomputer.png">
+                </div>
+            </div>
+            <div class="output-label">Pocket Computer</div>
+            <div class="note"><img class="ingredient" alt="Gold Ingot" src="minecraft_img/gold.png"> in place of <img class="ingredient" alt="Stone" src="minecraft_img/stone.png"> to get <img class="ingredient" alt="Advanced Pocket Computer" src="minecraft_img/advancedpocketcomputer.png"></div>
+            <div class="note">Combine <img class="ingredient" alt="Pocket computer" src="minecraft_img/pocketcomputer.png"> / <img class="ingredient" alt="Advanced Pocket Computer" src="minecraft_img/advancedpocketcomputer.png"> and <img class="ingredient" alt="Wireless Modem" src="minecraft_img/wirelessmodem.png"></div>
+        </div>
+    </section>
+    <section>
+        <span class="title">Built-in Programs</span>
+        <div class="boring"><span class="program">id</span></div>
+        <div><span class="program">label</span><span class="note">breaking without a label loses all data and fuel</span></div>
+        <div class="boring"><span class="program">copy / cp / rename / move</span> <span class="parameters">source</span> <span class="parameters">destination</span></div>
+        <div class="boring"><span class="program">delete</span> <span class="parameters">file</span></div>
+        <div><span class="program">monitor</span> <span class="parameters">side</span> <span class="parameters">program arguments...</span></div>
+        <div><span class="program">bg / fg</span> <span class="parameters">program arguments...</span><span class="note">advanced / multishell</span></div>
+        <div><span class="program">repeat</span><span class="note">wireless repeater</span></div>
+        <div><span class="program">gps host</span> <span class="parameters">[x y z]</span></div>
+        <div><span class="program">gps locate</span></div>
+        <div><span class="program">refuel</span> <span class="parameters">[amount]</span></div>
+        <div><span class="program">craft</span></div>
+        <div><span class="program">go</span> <span class="parameters">[direction]</span></div>
+        <div><span class="program">equip / unequip</span> <span class="parameters">side</span></div>
+        <div><span class="program">dig</span> <span class="parameters">[distance]</span></div>
+        <div><span class="program">excavate</span> <span class="parameters">[square size]</span></div>
+    </section>
     <section>
         <span class="title">Shortcuts</span>
         <div><span class="shortcut">Ctrl-S</span> Shutdown computer</div>
         <div>eject(<span class="parameters">side</span>)</div>
     </section>
     <section>
-        <span class="title">Etherpad Bootstrap</span>
+        <span class="title">Etherpad.za3k.com Bootstrap</span>
         <div>pastebin get LLia5Cd7 etherpad</div>
         <div>etherpad get etherpad etherpad</div>
         <div>etherpad get pull pull</div>
     <section>
         <span class="title">Native Os Events</span>
         <div><span class="event-name">key</span>: keycode</div>
-        <div class="boring">char</span>: letter</div>
+        <div class="boring"><span class="event-name">char</span>: letter</div>
         <div><span class="event-name">timer</span> / <span class="event-name">alarm</span>: id</div>
         <div><span class="event-name">redstone</span> <span class="note">Any redstone input changed</span></div>
         <div><span class="event-name">disk</span> / <span class="event-name">disk_detach</span>: side</div>
         <div class="boring"><span class="event-name">mouse_scroll</span>: direction, x, y</div>
         <div><span class="event-name">mouse_drag</span>: button, x, y</div>
         <div><span class="event-name">monitor_touch</span>: side, x, y <span class="note">Right click on an advanced monitor</span></div>
-        <div class="boring"><span class="event-name">"term_resize"</span></div>
-        <div class="boring"><span class="event-name">"terminate"</span><span class="note">os.pullEventRaw only</span></div>
+        <div class="boring"><span class="event-name">term_resize</span></div>
+        <div class="boring"><span class="event-name">terminate</span><span class="note">os.pullEventRaw only</span></div>
         <div><span class="event-name">turtle_inventory</span> <span class="note">Inventory changes</span></div>
     </section>
     <section class="boring">
diff --git a/minecraft_img/advancedcomputer.png b/minecraft_img/advancedcomputer.png
new file mode 100644 (file)
index 0000000..9d54aad
Binary files /dev/null and b/minecraft_img/advancedcomputer.png differ
diff --git a/minecraft_img/advancedmonitor.png b/minecraft_img/advancedmonitor.png
new file mode 100644 (file)
index 0000000..f9e2215
Binary files /dev/null and b/minecraft_img/advancedmonitor.png differ
diff --git a/minecraft_img/advancedpocketcomputer.png b/minecraft_img/advancedpocketcomputer.png
new file mode 100644 (file)
index 0000000..74fa2ff
Binary files /dev/null and b/minecraft_img/advancedpocketcomputer.png differ
diff --git a/minecraft_img/advancedturtle.png b/minecraft_img/advancedturtle.png
new file mode 100644 (file)
index 0000000..3f3583d
Binary files /dev/null and b/minecraft_img/advancedturtle.png differ
diff --git a/minecraft_img/chest.png b/minecraft_img/chest.png
new file mode 100644 (file)
index 0000000..95c68ba
Binary files /dev/null and b/minecraft_img/chest.png differ
diff --git a/minecraft_img/computer.png b/minecraft_img/computer.png
new file mode 100644 (file)
index 0000000..9345f17
Binary files /dev/null and b/minecraft_img/computer.png differ
diff --git a/minecraft_img/diamondaxe.png b/minecraft_img/diamondaxe.png
new file mode 100644 (file)
index 0000000..6fb3238
Binary files /dev/null and b/minecraft_img/diamondaxe.png differ
diff --git a/minecraft_img/diamondhoe.png b/minecraft_img/diamondhoe.png
new file mode 100644 (file)
index 0000000..4dcb9e1
Binary files /dev/null and b/minecraft_img/diamondhoe.png differ
diff --git a/minecraft_img/diamondpickaxe.png b/minecraft_img/diamondpickaxe.png
new file mode 100644 (file)
index 0000000..7192de8
Binary files /dev/null and b/minecraft_img/diamondpickaxe.png differ
diff --git a/minecraft_img/diamondshovel.png b/minecraft_img/diamondshovel.png
new file mode 100644 (file)
index 0000000..62c24a8
Binary files /dev/null and b/minecraft_img/diamondshovel.png differ
diff --git a/minecraft_img/diamondsword.png b/minecraft_img/diamondsword.png
new file mode 100644 (file)
index 0000000..d040f48
Binary files /dev/null and b/minecraft_img/diamondsword.png differ
diff --git a/minecraft_img/disk.png b/minecraft_img/disk.png
new file mode 100644 (file)
index 0000000..5f545aa
Binary files /dev/null and b/minecraft_img/disk.png differ
diff --git a/minecraft_img/diskdrive.png b/minecraft_img/diskdrive.png
new file mode 100644 (file)
index 0000000..b74212e
Binary files /dev/null and b/minecraft_img/diskdrive.png differ
diff --git a/minecraft_img/enderpearl.png b/minecraft_img/enderpearl.png
new file mode 100644 (file)
index 0000000..ac642cf
Binary files /dev/null and b/minecraft_img/enderpearl.png differ
diff --git a/minecraft_img/floppydisk.png b/minecraft_img/floppydisk.png
new file mode 100644 (file)
index 0000000..5f545aa
Binary files /dev/null and b/minecraft_img/floppydisk.png differ
diff --git a/minecraft_img/glasspane.png b/minecraft_img/glasspane.png
new file mode 100644 (file)
index 0000000..8a116ba
Binary files /dev/null and b/minecraft_img/glasspane.png differ
diff --git a/minecraft_img/gold.png b/minecraft_img/gold.png
new file mode 100644 (file)
index 0000000..6c95204
Binary files /dev/null and b/minecraft_img/gold.png differ
diff --git a/minecraft_img/goldenapple.png b/minecraft_img/goldenapple.png
new file mode 100644 (file)
index 0000000..0ad3d3d
Binary files /dev/null and b/minecraft_img/goldenapple.png differ
diff --git a/minecraft_img/inksac.png b/minecraft_img/inksac.png
new file mode 100644 (file)
index 0000000..37998bb
Binary files /dev/null and b/minecraft_img/inksac.png differ
diff --git a/minecraft_img/iron.png b/minecraft_img/iron.png
new file mode 100644 (file)
index 0000000..01c3eec
Binary files /dev/null and b/minecraft_img/iron.png differ
diff --git a/minecraft_img/leather.png b/minecraft_img/leather.png
new file mode 100644 (file)
index 0000000..f56bd7a
Binary files /dev/null and b/minecraft_img/leather.png differ
diff --git a/minecraft_img/monitor.png b/minecraft_img/monitor.png
new file mode 100644 (file)
index 0000000..8d43d29
Binary files /dev/null and b/minecraft_img/monitor.png differ
diff --git a/minecraft_img/networkingcable.png b/minecraft_img/networkingcable.png
new file mode 100644 (file)
index 0000000..b6e3838
Binary files /dev/null and b/minecraft_img/networkingcable.png differ
diff --git a/minecraft_img/paper.png b/minecraft_img/paper.png
new file mode 100644 (file)
index 0000000..65c5c5b
Binary files /dev/null and b/minecraft_img/paper.png differ
diff --git a/minecraft_img/pocketcomputer.png b/minecraft_img/pocketcomputer.png
new file mode 100644 (file)
index 0000000..570195a
Binary files /dev/null and b/minecraft_img/pocketcomputer.png differ
diff --git a/minecraft_img/printedbook.png b/minecraft_img/printedbook.png
new file mode 100644 (file)
index 0000000..eb17612
Binary files /dev/null and b/minecraft_img/printedbook.png differ
diff --git a/minecraft_img/printedpage.png b/minecraft_img/printedpage.png
new file mode 100644 (file)
index 0000000..2fbc95d
Binary files /dev/null and b/minecraft_img/printedpage.png differ
diff --git a/minecraft_img/printedpages.png b/minecraft_img/printedpages.png
new file mode 100644 (file)
index 0000000..0805a50
Binary files /dev/null and b/minecraft_img/printedpages.png differ
diff --git a/minecraft_img/printer.png b/minecraft_img/printer.png
new file mode 100644 (file)
index 0000000..b81af99
Binary files /dev/null and b/minecraft_img/printer.png differ
diff --git a/minecraft_img/recipe.png b/minecraft_img/recipe.png
new file mode 100644 (file)
index 0000000..67f6244
Binary files /dev/null and b/minecraft_img/recipe.png differ
diff --git a/minecraft_img/redstone.png b/minecraft_img/redstone.png
new file mode 100644 (file)
index 0000000..def0bb5
Binary files /dev/null and b/minecraft_img/redstone.png differ
diff --git a/minecraft_img/stone.png b/minecraft_img/stone.png
new file mode 100644 (file)
index 0000000..526163d
Binary files /dev/null and b/minecraft_img/stone.png differ
diff --git a/minecraft_img/string.png b/minecraft_img/string.png
new file mode 100644 (file)
index 0000000..630a291
Binary files /dev/null and b/minecraft_img/string.png differ
diff --git a/minecraft_img/turtle.png b/minecraft_img/turtle.png
new file mode 100644 (file)
index 0000000..d10e0b3
Binary files /dev/null and b/minecraft_img/turtle.png differ
diff --git a/minecraft_img/wiredmodem.png b/minecraft_img/wiredmodem.png
new file mode 100644 (file)
index 0000000..d737f83
Binary files /dev/null and b/minecraft_img/wiredmodem.png differ
diff --git a/minecraft_img/wirelessmodem.png b/minecraft_img/wirelessmodem.png
new file mode 100644 (file)
index 0000000..97f8345
Binary files /dev/null and b/minecraft_img/wirelessmodem.png differ
diff --git a/minecraft_img/workbench.png b/minecraft_img/workbench.png
new file mode 100644 (file)
index 0000000..e833973
Binary files /dev/null and b/minecraft_img/workbench.png differ