mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Crate Keeper recipe, loc and doc
This commit is contained in:
parent
d3576bb496
commit
f0710eaa8b
6 changed files with 18 additions and 3 deletions
|
@ -96,7 +96,7 @@ public class InitBooklet{
|
||||||
new BookletChapter("fishingNet", entryFunctionalNonRF, new ItemStack(InitBlocks.blockFishingNet), new PageTextOnly(1), new PageCrafting(2, BlockCrafting.recipeFisher).setNoText());
|
new BookletChapter("fishingNet", entryFunctionalNonRF, new ItemStack(InitBlocks.blockFishingNet), new PageTextOnly(1), new PageCrafting(2, BlockCrafting.recipeFisher).setNoText());
|
||||||
new BookletChapter("feeder", entryFunctionalNonRF, new ItemStack(InitBlocks.blockFeeder), new PageTextOnly(1), new PageCrafting(2, BlockCrafting.recipeFeeder).setNoText());
|
new BookletChapter("feeder", entryFunctionalNonRF, new ItemStack(InitBlocks.blockFeeder), new PageTextOnly(1), new PageCrafting(2, BlockCrafting.recipeFeeder).setNoText());
|
||||||
new BookletChapter("compost", entryFunctionalNonRF, new ItemStack(InitBlocks.blockCompost), new PageTextOnly(1).setStack(new ItemStack(InitItems.itemFertilizer)).addTextReplacement("<num>", TileEntityCompost.AMOUNT), new PageCrafting(2, BlockCrafting.recipeCompost).setNoText(), new PageCrafting(3, ItemCrafting.recipesMashedFood));
|
new BookletChapter("compost", entryFunctionalNonRF, new ItemStack(InitBlocks.blockCompost), new PageTextOnly(1).setStack(new ItemStack(InitItems.itemFertilizer)).addTextReplacement("<num>", TileEntityCompost.AMOUNT), new PageCrafting(2, BlockCrafting.recipeCompost).setNoText(), new PageCrafting(3, ItemCrafting.recipesMashedFood));
|
||||||
new BookletChapter("crate", entryFunctionalNonRF, new ItemStack(InitBlocks.blockGiantChest), new PageCrafting(1, BlockCrafting.recipeCrate), new PageCrafting(2, ItemCrafting.recipeChestToCrateUpgrade));
|
new BookletChapter("crate", entryFunctionalNonRF, new ItemStack(InitBlocks.blockGiantChest), new PageCrafting(1, BlockCrafting.recipeCrate), new PageCrafting(2, ItemCrafting.recipeCrateKeeper), new PageCrafting(3, ItemCrafting.recipeChestToCrateUpgrade));
|
||||||
new BookletChapter("rangedCollector", entryFunctionalNonRF, new ItemStack(InitBlocks.blockRangedCollector), new PageTextOnly(1).addTextReplacement("<range>", TileEntityRangedCollector.RANGE), new PageCrafting(2, BlockCrafting.recipeRangedCollector).setNoText());
|
new BookletChapter("rangedCollector", entryFunctionalNonRF, new ItemStack(InitBlocks.blockRangedCollector), new PageTextOnly(1).addTextReplacement("<range>", TileEntityRangedCollector.RANGE), new PageCrafting(2, BlockCrafting.recipeRangedCollector).setNoText());
|
||||||
|
|
||||||
//RF Using Blocks
|
//RF Using Blocks
|
||||||
|
|
|
@ -148,6 +148,7 @@ public enum ConfigCrafting{
|
||||||
LASER_WRENCH("Laser Wrench", ConfigCategories.ITEMS_CRAFTING),
|
LASER_WRENCH("Laser Wrench", ConfigCategories.ITEMS_CRAFTING),
|
||||||
|
|
||||||
CHEST_TO_CRATE_UPGRADE("Chest To Crate Upgrade", ConfigCategories.ITEMS_CRAFTING),
|
CHEST_TO_CRATE_UPGRADE("Chest To Crate Upgrade", ConfigCategories.ITEMS_CRAFTING),
|
||||||
|
CRATE_KEEPER("Crate Keeper", ConfigCategories.ITEMS_CRAFTING),
|
||||||
DRILL_CORE("Drill Core", ConfigCategories.ITEMS_CRAFTING),
|
DRILL_CORE("Drill Core", ConfigCategories.ITEMS_CRAFTING),
|
||||||
ATOMIC_RECONSTRUCTOR("Atomic Reconstructor", ConfigCategories.BLOCKS_CRAFTING),
|
ATOMIC_RECONSTRUCTOR("Atomic Reconstructor", ConfigCategories.BLOCKS_CRAFTING),
|
||||||
MINER("Miner", ConfigCategories.BLOCKS_CRAFTING),
|
MINER("Miner", ConfigCategories.BLOCKS_CRAFTING),
|
||||||
|
|
|
@ -78,6 +78,7 @@ public class ItemCrafting{
|
||||||
public static IRecipe recipeDrillCore;
|
public static IRecipe recipeDrillCore;
|
||||||
public static IRecipe recipeBlackDye;
|
public static IRecipe recipeBlackDye;
|
||||||
public static IRecipe recipeLens;
|
public static IRecipe recipeLens;
|
||||||
|
public static IRecipe recipeCrateKeeper;
|
||||||
|
|
||||||
public static void init(){
|
public static void init(){
|
||||||
|
|
||||||
|
@ -109,6 +110,16 @@ public class ItemCrafting{
|
||||||
recipeChestToCrateUpgrade = Util.GetRecipes.lastIRecipe();
|
recipeChestToCrateUpgrade = Util.GetRecipes.lastIRecipe();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Crate Keeper
|
||||||
|
if(ConfigCrafting.CRATE_KEEPER.isEnabled()){
|
||||||
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemCrateKeeper),
|
||||||
|
"WIW", "IQI", "WIW",
|
||||||
|
'I', "ingotIron",
|
||||||
|
'W', "plankWood",
|
||||||
|
'Q', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal())));
|
||||||
|
recipeCrateKeeper = Util.GetRecipes.lastIRecipe();
|
||||||
|
}
|
||||||
|
|
||||||
//Laser Wrench
|
//Laser Wrench
|
||||||
if(ConfigCrafting.LASER_WRENCH.isEnabled()){
|
if(ConfigCrafting.LASER_WRENCH.isEnabled()){
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemLaserWrench),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemLaserWrench),
|
||||||
|
|
|
@ -116,6 +116,7 @@ public class CreativeTab extends CreativeTabs{
|
||||||
add(InitItems.itemExplosionLens);
|
add(InitItems.itemExplosionLens);
|
||||||
add(InitItems.itemDamageLens);
|
add(InitItems.itemDamageLens);
|
||||||
add(InitItems.itemLaserWrench);
|
add(InitItems.itemLaserWrench);
|
||||||
|
add(InitItems.itemCrateKeeper);
|
||||||
add(InitItems.itemChestToCrateUpgrade);
|
add(InitItems.itemChestToCrateUpgrade);
|
||||||
|
|
||||||
add(InitItems.itemDrill);
|
add(InitItems.itemDrill);
|
||||||
|
|
|
@ -315,6 +315,7 @@ item.actuallyadditions.itemMiscLens.name=Lens
|
||||||
item.actuallyadditions.itemColorLens.name=Lens of Color
|
item.actuallyadditions.itemColorLens.name=Lens of Color
|
||||||
item.actuallyadditions.itemExplosionLens.name=Lens of Detonation
|
item.actuallyadditions.itemExplosionLens.name=Lens of Detonation
|
||||||
item.actuallyadditions.itemDamageLens.name=Lens of Certain Death
|
item.actuallyadditions.itemDamageLens.name=Lens of Certain Death
|
||||||
|
item.actuallyadditions.itemCrateKeeper.name=Storage Crate Keeper
|
||||||
|
|
||||||
#Tooltips
|
#Tooltips
|
||||||
tooltip.actuallyadditions.onSuffix.desc=On
|
tooltip.actuallyadditions.onSuffix.desc=On
|
||||||
|
@ -535,8 +536,9 @@ booklet.actuallyadditions.chapter.compost.text.1=The <item>Compost<r> is used to
|
||||||
booklet.actuallyadditions.chapter.compost.text.3=<item>Mashed Food<r> can be crafted from <imp>any type of food or plantable item<r>.
|
booklet.actuallyadditions.chapter.compost.text.3=<item>Mashed Food<r> can be crafted from <imp>any type of food or plantable item<r>.
|
||||||
|
|
||||||
booklet.actuallyadditions.chapter.crate.name=Storage Crates
|
booklet.actuallyadditions.chapter.crate.name=Storage Crates
|
||||||
booklet.actuallyadditions.chapter.crate.text.1=<item>Storage Crates<r> are big. <imp>Really big<r>. They hold tons of items, more than 4 chests worth of them. <n><n><i>"F-in' gigantic"<rs><n> -Some Magazine
|
booklet.actuallyadditions.chapter.crate.text.1=<item>Storage Crates<r> are big. <imp>Really big<r>. They hold tons of items, more than 4 chests worth of them.
|
||||||
booklet.actuallyadditions.chapter.crate.text.2=The <item>Chest To Storage Crate Upgrade<r> allows you to <imp>convert any chest into a Storage Crate<r>, retaining its items! <n>Just <imp>shift-right-click<r> onto the chest to apply it.
|
booklet.actuallyadditions.chapter.crate.text.2=Placing a <item>Storage Crate Keeper<r> inside the Storage Crate before breaking it will cause it to <imp>keep all of its items<r>, however the Keeper will be destroyed upon placing the Crate back down.
|
||||||
|
booklet.actuallyadditions.chapter.crate.text.3=The <item>Chest To Storage Crate Upgrade<r> allows you to <imp>convert any chest into a Storage Crate<r>, retaining its items! <n>Just <imp>shift-right-click<r> onto the chest to apply it.
|
||||||
|
|
||||||
booklet.actuallyadditions.chapter.coffeeMachine.name=Coffee Machine
|
booklet.actuallyadditions.chapter.coffeeMachine.name=Coffee Machine
|
||||||
booklet.actuallyadditions.chapter.coffeeMachine.text.1=The <item>Coffee Machine<r> is a block used to make <item>Coffee<r>, a <imp>potion-like<r> item that gives the user several buffs. <n>To use the coffee machine, you need a <item>Empty Cup<r>, <coffee> <item>Coffee Beans<r>, which can be found in the wild, harvested and <imp>planted on farmland<r> again, <rf> RF/t and <water>mB of Water per cup brewed. <n>On the coffee machine recipe pages at the back, to see what the item does, just hover over the Cup of Coffee.
|
booklet.actuallyadditions.chapter.coffeeMachine.text.1=The <item>Coffee Machine<r> is a block used to make <item>Coffee<r>, a <imp>potion-like<r> item that gives the user several buffs. <n>To use the coffee machine, you need a <item>Empty Cup<r>, <coffee> <item>Coffee Beans<r>, which can be found in the wild, harvested and <imp>planted on farmland<r> again, <rf> RF/t and <water>mB of Water per cup brewed. <n>On the coffee machine recipe pages at the back, to see what the item does, just hover over the Cup of Coffee.
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 479 B |
Loading…
Reference in a new issue