mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Added updates and infos section
Very meta, very self-advertisement-y.
This commit is contained in:
parent
c8f4c94c94
commit
74cd597407
5 changed files with 33 additions and 4 deletions
|
@ -31,7 +31,7 @@ public final class ActuallyAdditionsAPI{
|
|||
|
||||
public static final String MOD_ID = "actuallyadditions";
|
||||
public static final String API_ID = MOD_ID+"api";
|
||||
public static final String API_VERSION = "28";
|
||||
public static final String API_VERSION = "29";
|
||||
|
||||
public static final List<CrusherRecipe> CRUSHER_RECIPES = new ArrayList<CrusherRecipe>();
|
||||
public static final List<BallOfFurReturn> BALL_OF_FUR_RETURN_ITEMS = new ArrayList<BallOfFurReturn>();
|
||||
|
@ -77,6 +77,7 @@ public final class ActuallyAdditionsAPI{
|
|||
public static IBookletEntry entryItemsNonRF;
|
||||
public static IBookletEntry entryItemsRF;
|
||||
public static IBookletEntry entryMisc;
|
||||
public static IBookletEntry entryUpdatesAndInfos;
|
||||
//This is added to automatically, you don't need to add anything to this entry
|
||||
public static IBookletEntry allAndSearch;
|
||||
|
||||
|
|
|
@ -30,10 +30,12 @@ import de.ellpeck.actuallyadditions.mod.items.InitItems;
|
|||
import de.ellpeck.actuallyadditions.mod.items.lens.LensDisenchanting;
|
||||
import de.ellpeck.actuallyadditions.mod.items.lens.LensMining;
|
||||
import de.ellpeck.actuallyadditions.mod.items.lens.LensRecipeHandler;
|
||||
import de.ellpeck.actuallyadditions.mod.items.metalists.TheCrystals;
|
||||
import de.ellpeck.actuallyadditions.mod.items.metalists.TheFoods;
|
||||
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
||||
import de.ellpeck.actuallyadditions.mod.recipe.EmpowererHandler;
|
||||
import de.ellpeck.actuallyadditions.mod.tile.*;
|
||||
import de.ellpeck.actuallyadditions.mod.update.UpdateChecker;
|
||||
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
||||
import de.ellpeck.actuallyadditions.mod.util.Util;
|
||||
import net.minecraft.init.Blocks;
|
||||
|
@ -59,7 +61,8 @@ public final class InitBooklet{
|
|||
ActuallyAdditionsAPI.entryGeneratingRF = new BookletEntry("generatingRF");
|
||||
ActuallyAdditionsAPI.entryItemsNonRF = new BookletEntry("itemsNoRF");
|
||||
ActuallyAdditionsAPI.entryItemsRF = new BookletEntry("itemsRF");
|
||||
ActuallyAdditionsAPI.entryMisc = new BookletEntry("misc").setSpecial();
|
||||
ActuallyAdditionsAPI.entryMisc = new BookletEntry("misc");
|
||||
ActuallyAdditionsAPI.entryUpdatesAndInfos = new BookletEntry("updatesAndInfos").setSpecial();
|
||||
ActuallyAdditionsAPI.allAndSearch = new BookletEntryAllItems("allAndSearch").setImportant();
|
||||
}
|
||||
|
||||
|
@ -235,5 +238,11 @@ public final class InitBooklet{
|
|||
new BookletChapter("growthRing", ActuallyAdditionsAPI.entryItemsRF, new ItemStack(InitItems.itemGrowthRing), new PageCrafting(1, ItemCrafting.recipeGrowthRing));
|
||||
new BookletChapter("waterRemovalRing", ActuallyAdditionsAPI.entryItemsRF, new ItemStack(InitItems.itemWaterRemovalRing), new PageCrafting(1, ItemCrafting.recipeWaterRing));
|
||||
new BookletChapter("batteries", ActuallyAdditionsAPI.entryItemsRF, new ItemStack(InitItems.itemBatteryTriple), new PageTextOnly(1), new PageCrafting(2, ItemCrafting.recipeBattery).setNoText(), new PageCrafting(3, ItemCrafting.recipeBatteryDouble).setNoText(), new PageCrafting(4, ItemCrafting.recipeBatteryTriple).setNoText(), new PageCrafting(5, ItemCrafting.recipeBatteryQuadruple).setNoText(), new PageCrafting(6, ItemCrafting.recipeBatteryQuintuple).setNoText());
|
||||
|
||||
//Updates and infos
|
||||
new BookletChapter("changelog", ActuallyAdditionsAPI.entryUpdatesAndInfos, new ItemStack(Items.CLOCK), new PageLinkButton(1, UpdateChecker.CHANGELOG_LINK));
|
||||
new BookletChapter("curse", ActuallyAdditionsAPI.entryUpdatesAndInfos, new ItemStack(Items.FLINT_AND_STEEL), new PageLinkButton(1, "http://ellpeck.de/actadd"));
|
||||
new BookletChapter("patreon", ActuallyAdditionsAPI.entryUpdatesAndInfos, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), new PageLinkButton(1, "http://patreon.com/Ellpeck"), new PagePicture(2, "pagePatreon", 153)).setImportant();
|
||||
new BookletChapter("website", ActuallyAdditionsAPI.entryUpdatesAndInfos, new ItemStack(InitItems.itemBooklet), new PageLinkButton(1, "http://ellpeck.de"));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,8 @@ public class GuiMainPage extends GuiBooklet{
|
|||
"TINY TORCHES!! BABY TORCHES!! Somebody actually finally did it!!@Soaryn",
|
||||
"Balanced mod wich makes things different - in a good way.@garantiertnicht",
|
||||
"The mod everyone needs, but not everyone knows@Brewpl",
|
||||
"The in-game documentation is the best I’ve seen. I especially love the JEI integration. Even a derp like me can figure it out.@dannydjdk"
|
||||
"The in-game documentation is the best I’ve seen. I especially love the JEI integration. Even a derp like me can figure it out.@dannydjdk",
|
||||
"The second best mod I've ever used.@mmaas44"
|
||||
};
|
||||
|
||||
private TexturedButton achievementButton;
|
||||
|
|
|
@ -742,6 +742,7 @@ booklet.actuallyadditions.indexEntry.itemsNoRF.name=Items that don't use RF
|
|||
booklet.actuallyadditions.indexEntry.itemsRF.name=Items that use RF
|
||||
booklet.actuallyadditions.indexEntry.reconstruction.name=Reconstruction
|
||||
booklet.actuallyadditions.indexEntry.laserRelays.name=Laser Transport
|
||||
booklet.actuallyadditions.indexEntry.updatesAndInfos.name=Updates and Infos
|
||||
|
||||
#Booklet Info
|
||||
booklet.actuallyadditions.recipeDisabled=The crafting recipe for this item is disabled in the Config File! If you're on a server, ask the server author to enable it in the config. If you're on a client, press the 'Open Config'-Button on the top right and enable the recipe!
|
||||
|
@ -1059,4 +1060,21 @@ booklet.actuallyadditions.chapter.lensMoreDeath.name=Lens of the Killer
|
|||
booklet.actuallyadditions.chapter.lensMoreDeath.text.1=The <item>Lens of the Killer<r> works much like the <item>Lens of Certain Death<r>, however it will also <imp>drop experience<r> and <imp>player-kill loot<r>. <n>This means, however, that it will use <imp>a lot more power<r>. <n><n>To pick up the experience it drops, you might want to try an <item>Experience Solidifier<r>.
|
||||
|
||||
booklet.actuallyadditions.chapter.fillingWand.name=Handheld Filler
|
||||
booklet.actuallyadditions.chapter.fillingWand.text.1=The <item>Handheld Filler<r> is a great way to <imp>fill any area<r> with blocks. <n>To do this, first <imp>sneak-right-click<r> a block in the world that you want to <imp>fill an area with<r>. <n><n>To actually fill an area, look at the <imp>first corner<r> and <imp>hold right-click<r>. Let go of right-click at the <imp>second corner<r>. The area you mark can be a flat plane or a cube. <n>This process requires <imp>some RF<r> for placing the blocks and you need to <imp>have the blocks<r> in your inventory.
|
||||
booklet.actuallyadditions.chapter.fillingWand.text.1=The <item>Handheld Filler<r> is a great way to <imp>fill any area<r> with blocks. <n>To do this, first <imp>sneak-right-click<r> a block in the world that you want to <imp>fill an area with<r>. <n><n>To actually fill an area, look at the <imp>first corner<r> and <imp>hold right-click<r>. Let go of right-click at the <imp>second corner<r>. The area you mark can be a flat plane or a cube. <n>This process requires <imp>some RF<r> for placing the blocks and you need to <imp>have the blocks<r> in your inventory.
|
||||
|
||||
booklet.actuallyadditions.chapter.patreon.name=Patreon Support
|
||||
booklet.actuallyadditions.chapter.patreon.text.1=Do you <imp>really like<r> <item>Actually Additions<r>? If you do, you can <imp>support me<r>, Ellpeck, the author of the mod! <n>Do you think that's a thing for you? Well, then check out my <item>Patreon<r> page by clicking the button below! <n>As you can see on the next page, you can get things like <imp>floaty items above your head<r> as a reward! <n><n>Thanks a bunch <3
|
||||
booklet.actuallyadditions.chapter.patreon.button.1=View the Patreon
|
||||
booklet.actuallyadditions.chapter.patreon.text.2=<item>3pixel<r> with his <imp>Patreon reward<r>
|
||||
|
||||
booklet.actuallyadditions.chapter.changelog.name=Changelog
|
||||
booklet.actuallyadditions.chapter.changelog.text.1=Interested in everything that <imp>changed<r> over the course of all of the versions of <item>Actually Additions<r>? <n>If so, you can click the button below to view a very detailed <item>changelog<r> that contains <imp>every addition<r>, every <imp>bugfix<r> and all other types of <imp>changes<r>!
|
||||
booklet.actuallyadditions.chapter.changelog.button.1=View Changelog
|
||||
|
||||
booklet.actuallyadditions.chapter.curse.name=The Mod's Website
|
||||
booklet.actuallyadditions.chapter.curse.text.1=If you want to <imp>download<r> any new versions of the mod, <imp>view any infos<r> or recommend the mod to someone else, I'd highly suggest checking out <imp>its CurseForge page<r> by clicking the button below.
|
||||
booklet.actuallyadditions.chapter.curse.button.1=View the page
|
||||
|
||||
booklet.actuallyadditions.chapter.website.name=The Author's Website
|
||||
booklet.actuallyadditions.chapter.website.text.1=On the topic of self-advertisement, if you're interested in <imp>any of the other stuff<r> I, <item>Ellpeck<r>, the author of this mod, do, you can go check out my <imp>website<r> by clicking the button below. <n>On there, you will find links to all of the social medias I use, an FAQ, and information about Minecraft Mods and other stuff I make!
|
||||
booklet.actuallyadditions.chapter.website.button.1=View the Website
|
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
Loading…
Reference in a new issue