Fancy Select
This commit is contained in:
parent
0d38bea66d
commit
7c24a9f8ff
14
css/main.css
14
css/main.css
|
|
@ -2,3 +2,17 @@
|
|||
width: 80px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#menu {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
#menubox{
|
||||
height: 100%;
|
||||
top: 0px;
|
||||
left: 320px;
|
||||
position: fixed;
|
||||
border-left-width: 2px;
|
||||
border-color: black;
|
||||
border-left-style: solid;
|
||||
}
|
||||
46
index.html
46
index.html
|
|
@ -12,13 +12,51 @@
|
|||
<script src="js/main.js"></script>
|
||||
<select id="itemtoadd">
|
||||
</select>
|
||||
<div id="menubox">
|
||||
<ul id="menu">
|
||||
<li>
|
||||
<div>Blocks</div>
|
||||
<ul id="k_blocks">
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<div>Tools</div>
|
||||
<ul id="k_tools">
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<div>Armor</div>
|
||||
<ul id="k_armor">
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<div>Energy Cores</div>
|
||||
<ul id="k_cores">
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<div>Upgrades</div>
|
||||
<ul id="k_upgrades">
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<div>Other</div>
|
||||
<ul id="k_other">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$("#menu").menu();
|
||||
$("ul").css("width", "250px")
|
||||
</script>
|
||||
<div id="crafting">
|
||||
<button id="additem">Add</button>
|
||||
<div id="tocraft"></div>
|
||||
<span style="display: inline-block; width: 90%;"></span>
|
||||
<br>
|
||||
<span style="display: inline-block; width: 90%;"></span> <br>
|
||||
<button id="calc">Calculate</button>
|
||||
<span style="display: inline-block; width: 90%;"></span>
|
||||
<br>
|
||||
<span style="display: inline-block; width: 90%;"></span> <br>
|
||||
<div class="ui-widget" id="output"></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
js/main.js
42
js/main.js
|
|
@ -6,31 +6,56 @@ var allItems = {}
|
|||
var requieredCount = []
|
||||
var requieredItems = []
|
||||
var newid = 0
|
||||
|
||||
var items = ""
|
||||
|
||||
var itemsRequest = new XMLHttpRequest();
|
||||
itemsRequest.open('GET', 'resources/items.txt')
|
||||
itemsRequest.onload = function() {
|
||||
var res = itemsRequest.responseText;
|
||||
var items = res.split("\n")
|
||||
items = res.split("\n")
|
||||
var loaded = 0
|
||||
for (var i = 0; i < items.length && !(items[i] in window); i++) {
|
||||
loadJSON(items[i])
|
||||
}
|
||||
|
||||
}
|
||||
itemsRequest.send()
|
||||
|
||||
|
||||
|
||||
function loadHTML() {
|
||||
$("#itemtoadd").empty()
|
||||
$("#menu li ul").empty()
|
||||
$("#k_other").empty()
|
||||
for (var i = 0; i < allItemsArray.length; i++) {
|
||||
if (!('disabled' in allItemsArray[i])){
|
||||
$("#itemtoadd").append("<option value=\""+allItemsArray[i].id+"\">" + allItemsArray[i].name + "</option>")
|
||||
//$("#itemtoadd").append("<option value=\""+allItemsArray[i].id+"\">" + allItemsArray[i].name + "</option>")
|
||||
$("#k_"+allItemsArray[i].type).append("<li><div class=\"additem\" id=\"add"+ allItemsArray[i].id +"\">" + allItemsArray[i].name + "</div></li>")
|
||||
} else {
|
||||
//console.log(allItemsArray[i].name+" disabled. Not loading")
|
||||
}
|
||||
}
|
||||
|
||||
$(".additem").click(function() {
|
||||
var id = parseInt($(this).attr("id").substring(3,99))
|
||||
console.log(id)
|
||||
var tagid = 'item_'+id
|
||||
if($('#'+tagid).length){
|
||||
console.log(id+" allready exists!")
|
||||
return
|
||||
}
|
||||
$("#tocraft").append('<input id="'+tagid+'" name="value"><label id="lable_'+tagid+'" style="margin-top: 3px;" class="ui-widget" for="'+tagid+'"> '+getItemFromId(id).name+'<br></label>')
|
||||
$("#"+tagid).spinner({
|
||||
min: 0,
|
||||
numberFormat: "n",
|
||||
change: function( event, ui ) {
|
||||
if($("#"+tagid).spinner( "value" )==0){
|
||||
$("#"+tagid).spinner( "destroy" )
|
||||
$("#"+tagid).remove()
|
||||
$("#lable_"+tagid).remove()
|
||||
}
|
||||
}
|
||||
});
|
||||
$("#"+tagid).val(1)
|
||||
})
|
||||
}
|
||||
|
||||
function loadJSON(itemname) {
|
||||
|
|
@ -45,11 +70,13 @@ function loadJSON(itemname) {
|
|||
console.warn("missing key \"name\" in "+itemname)
|
||||
}
|
||||
item.id = newid
|
||||
newid++
|
||||
allItems[itemname] = item
|
||||
allItemsArray.push(item)
|
||||
console.log(item)
|
||||
loadHTML()
|
||||
newid++
|
||||
if(newid==items.length)
|
||||
$( "#menu" ).menu( "refresh" );
|
||||
}
|
||||
itemRequest.send()
|
||||
}
|
||||
|
|
@ -70,7 +97,7 @@ $( document ).ready(function() {
|
|||
$("#calc").button()
|
||||
|
||||
// BUTTONS
|
||||
$("#additem").click(function() {
|
||||
$(".additem").click(function() {
|
||||
var id = $("#itemtoadd").val()
|
||||
console.log("Adding "+id+"...")
|
||||
var tagid = 'item_'+id
|
||||
|
|
@ -144,7 +171,6 @@ function updateoutput() {
|
|||
console.log("-1")
|
||||
}else{
|
||||
requieredCount[requieredItems.indexOf(item.crafting[j])]++
|
||||
console.log("is Da")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Awakened Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Awakened Core",
|
||||
"crafting": ["wyvern_core", "wyvern_core", "wyvern_core", "wyvern_core", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "nether_star"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Awakened Draconium Block",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Awakened Draconium Block",
|
||||
"count": 4,
|
||||
"crafting": ["draconic_core", "draconic_core", "draconic_core", "draconic_core", "draconic_core", "draconic_core", "dragon_heart", "draconium_block", "draconium_block", "draconium_block", "draconium_block"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Awakend Draconium Ingot",
|
||||
|
||||
"type":"other",
|
||||
"name": "Awakend Draconium Ingot",
|
||||
"count": 9,
|
||||
"crafting": ["awakened_draconium_block"]
|
||||
}
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Axe of the Wyvern",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Axe of the Wyvern",
|
||||
"crafting": ["Diamond_axe", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Basic Fusion Crafting Injector",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Basic Fusion Crafting Injector",
|
||||
"crafting": ["Diamond", "Diamond", "Stone", "Stone", "Stone", "Stone", "Stone", "block_of_iron", "draconic_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Blaze Powder",
|
||||
|
||||
"type":"other",
|
||||
"name": "Blaze Powder",
|
||||
"disabled": true,
|
||||
"crafting": ["Blaze Rod"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Block of Diamond",
|
||||
|
||||
"type":"other",
|
||||
"name": "Block of Diamond",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Block of Emerald",
|
||||
|
||||
"type":"other",
|
||||
"name": "Block of Emerald",
|
||||
"disabled": true,
|
||||
"crafting": ["emerald", "emerald", "emerald", "emerald", "emerald", "emerald", "emerald", "emerald", "emerald"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Block of Iron",
|
||||
|
||||
"type":"other",
|
||||
"name": "Block of Iron",
|
||||
"disabled": true,
|
||||
"crafting": ["Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot", "Iron Ingot"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Block of Redstone",
|
||||
|
||||
"type":"other",
|
||||
"name": "Block of Redstone",
|
||||
"disabled": true,
|
||||
"crafting": ["Redstone", "Redstone", "Redstone", "Redstone", "Redstone", "Redstone", "Redstone", "Redstone", "Redstone"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Bow",
|
||||
|
||||
"type":"other",
|
||||
"name": "Bow",
|
||||
"disabled": true,
|
||||
"crafting": ["String", "String", "String", "Stick", "Stick", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Bow of the Wyvern",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Bow of the Wyvern",
|
||||
"crafting": ["bow", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Chaotic Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Chaotic Core",
|
||||
"crafting": ["awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "awakened_core", "awakened_core", "awakened_core", "Chaos Shard"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Chaotic Fusion Crafting Table",
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "chaotic_core", "draconic_fusion_crafting_injector", "dragon_egg"]
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Chaotic Fusion Crafting Injector",
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "chaotic_core", "draconic_fusion_crafting_injector", "Dragon Egg"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Axe",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Axe",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Stick", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Boots",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Boots",
|
||||
"disabled": true,
|
||||
"crafting":[
|
||||
"Diamond",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Chestplate",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Chestplate",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Helmet",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Helmet",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "Diamond"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Hoe",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Hoe",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Stick", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Leggings",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Leggings",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond", "Diamond" ]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Pickaxe",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Pickaxe",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Diamond", "Stick", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Shovel",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Shovel",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Stick", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Diamond Sword",
|
||||
|
||||
"type":"other",
|
||||
"name": "Diamond Sword",
|
||||
"disabled": true,
|
||||
"crafting": ["Diamond", "Diamond", "Stick"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Axe",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Axe",
|
||||
"crafting": ["axe_of_the_wyvern", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Boots",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Draconic Boots",
|
||||
"crafting": ["wyvern_boots", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Bow",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Bow",
|
||||
"crafting": ["bow_of_the_wyvern", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Chestplate",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Draconic Chestplate",
|
||||
"crafting": ["wyvern_chestplate", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Draconic Core",
|
||||
"crafting": ["Draconium Ingot", "Gold Ingot", "Draconium Ingot", "Gold Ingot", "Diamond", "Gold Ingot", "Draconium Ingot", "Gold Ingot", "Draconium Ingot"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Energy Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Draconic Energy Core",
|
||||
"crafting": ["awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "wyvern_energy_core", "wyvern_energy_core", "wyvern_energy_core", "wyvern_energy_core", "wyvern_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Flux Capacitor",
|
||||
|
||||
"type":"other",
|
||||
"name": "Draconic Flux Capacitor",
|
||||
"crafting": ["awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "draconic_energy_core", "draconic_energy_core", "draconic_energy_core", "draconic_energy_core", "wyvern_flux_capacitor"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Fusion Crafting Injector",
|
||||
"crafting": ["block_of_Diamond", "block_of_Diamond", "block_of_Diamond", "block_of_Diamond", "wyvern_energy_core", "wyvern_energy_core", "awakened_draconium_block", "awakened_draconium_block", "wyvern_fusion_crafting_injector"]
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Draconic Fusion Crafting Injector",
|
||||
"crafting": ["Block of Diamond", "Block of Diamond", "Block of Diamond", "Block of Diamond", "wyvern_energy_core", "wyvern_energy_core", "awakened_draconium_block", "awakened_draconium_block", "wyvern_fusion_crafting_injector"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Helm",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Draconic Helm",
|
||||
"crafting": ["wyvern_helm", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Hoe",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Hoe",
|
||||
"crafting": ["Diamond_hoe", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Leggings",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Draconic Leggings",
|
||||
"crafting": ["wyvern_leggings", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Pickaxe",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Pickaxe",
|
||||
"crafting": ["pickaxe_of_the_wyvern", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Shovel",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Shovel",
|
||||
"crafting": ["shovel_of_the_wyvern", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Staff of Power",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Staff of Power",
|
||||
"crafting": ["draconic_sword", "draconic_shovel", "draconic_pickaxe", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconic Sword",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Draconic Sword",
|
||||
"crafting": ["sword_of_the_wyvern", "awakened_draconium_ingot", "awakened_draconium_ingot", "awakened_core", "draconic_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Draconium Block",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Draconium Block",
|
||||
"crafting": ["Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot" ]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Dragon Heart",
|
||||
|
||||
"type":"other",
|
||||
"name": "Dragon Heart",
|
||||
"crafting": ["end_crystal","end_crystal","end_crystal","end_crystal"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"name": "End Crystal",
|
||||
|
||||
"type":"other",
|
||||
"disabled":true,
|
||||
"name": "End Crystal",
|
||||
"crafting": ["Ghast Tear", "nether_star", "glass_pane", "glass_pane", "glass_pane", "glass_pane", "glass_pane", "glass_pane", "glass_pane" ]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Energy Core",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Energy Core",
|
||||
"crafting": ["Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Energy Core Stabilizer",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Energy Core Stabilizer",
|
||||
"crafting": ["particle_generator", "Diamond", "Diamond", "Diamond", "Diamond"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Eye of Ender",
|
||||
|
||||
"type":"other",
|
||||
"name": "Eye of Ender",
|
||||
"disabled": true,
|
||||
"crafting": ["ender_pearl", "blaze_powder"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Glass Pane",
|
||||
|
||||
"type":"other",
|
||||
"name": "Glass Pane",
|
||||
"disabled": true,
|
||||
"count": 16,
|
||||
"crafting": ["Glass", "Glass", "Glass", "Glass", "Glass", "Glass"]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Golden Apple",
|
||||
|
||||
"type":"other",
|
||||
"name": "Golden Apple",
|
||||
"disabled": true,
|
||||
"crafting": ["apple", "Gold Ingot", "Gold Ingot", "Gold Ingot", "Gold Ingot", "Gold Ingot", "Gold Ingot", "Gold Ingot", "Gold Ingot"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "Nether Star",
|
||||
|
||||
"type":"other",
|
||||
"name": "Nether Star",
|
||||
"disabled": true,
|
||||
"crafting": ["Wither Skeleton Skull", "Wither Skeleton Skull", "Wither Skeleton Skull", "Soul Sand", "Soul Sand", "Soul Sand", "Soul Sand"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Particle Generator",
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Particle Generator",
|
||||
"crafting": ["block_of_redstone", "block_of_redstone", "block_of_redstone", "block_of_redstone", "draconic_core", "Blaze Rod", "Blaze Rod", "Blaze Rod", "Blaze Rod"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Pickaxe of the Wyvern",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Pickaxe of the Wyvern",
|
||||
"crafting": ["Diamond_pickaxe", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Shovel of the Wyvern",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Shovel of the Wyvern",
|
||||
"crafting": ["Diamond_shovel", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Sword of the Wyvern",
|
||||
|
||||
"type":"tools",
|
||||
"name": "Sword of the Wyvern",
|
||||
"crafting": ["Diamond_sword", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Boots",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Wyvern Boots",
|
||||
"crafting": ["Diamond_boots", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Chestplate",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Wyvern Chestplate",
|
||||
"crafting": ["Diamond_chestplate", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Wyvern Core",
|
||||
"crafting": ["Draconium Ingot", "draconic_core", "Draconium Ingot", "draconic_core", "nether_star", "draconic_core", "Draconium Ingot", "draconic_core", "Draconium Ingot"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Energy Core",
|
||||
|
||||
"type":"other",
|
||||
"name": "Wyvern Energy Core",
|
||||
"crafting": ["Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "block_of_redstone", "block_of_redstone", "block_of_redstone", "block_of_redstone", "draconic_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Flux Capacitor",
|
||||
|
||||
"type":"other",
|
||||
"name": "Wyvern Flux Capacitor",
|
||||
"crafting": ["Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_energy_core", "wyvern_energy_core", "wyvern_energy_core", "wyvern_energy_core", "wyvern_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Fusion Crafting Injector",
|
||||
"crafting": ["block_of_Diamond", "block_of_Diamond", "block_of_Diamond", "block_of_Diamond", "basic_fusion_crafting_injector", "wyvern_core", "wyvern_core", "wyvern_energy_core", "wyvern_energy_core" ]
|
||||
|
||||
"type":"blocks",
|
||||
"name": "Wyvern Fusion Crafting Injector",
|
||||
"crafting": ["Block of Diamond", "Block of Diamond", "Block of Diamond", "Block of Diamond", "basic_fusion_crafting_injector", "wyvern_core", "wyvern_core", "wyvern_energy_core", "wyvern_energy_core" ]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Helm",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Wyvern Helm",
|
||||
"crafting": ["Diamond_helmet", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "Wyvern Leggings",
|
||||
|
||||
"type":"armor",
|
||||
"name": "Wyvern Leggings",
|
||||
"crafting": ["Diamond_leggings", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "Draconium Ingot", "wyvern_core", "wyvern_energy_core"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue