Starlike v0.2.2

This commit is contained in:
zumbiepig 2024-10-08 09:20:45 -07:00
parent 044d551e70
commit 64a9cb2163
No known key found for this signature in database
GPG Key ID: B50A3F986EC14691
16 changed files with 32 additions and 33 deletions

View File

@ -1,3 +1,3 @@
SIGNED_CLIENT_INTEGER="201"
SIGNED_CLIENT_VERSION="0.2.1"
SIGNED_CLIENT_CHANGELOG="Bugfix"
SIGNED_CLIENT_INTEGER="202"
SIGNED_CLIENT_VERSION="0.2.2"
SIGNED_CLIENT_CHANGELOG="Mosaic bugfix"

View File

@ -1 +1 @@
0.2.1
0.2.2

View File

@ -43,3 +43,4 @@ tile.mosaic.birch.name=Birch Mosaic
tile.mosaic.jungle.name=Jungle Mosaic
tile.mosaic.acacia.name=Acacia Mosaic
tile.mosaic.dark_oak.name=Dark Oak Mosaic
entity.NetherCreeper.name=Nether Creeper

View File

@ -703,9 +703,8 @@ public class Block {
.setStepSound(soundTypeMetal).setUnlocalizedName("steel_block")
.setCreativeTab(CreativeTabs.tabStarlike));
registerBlock(515, (String) "starlike:steel_grate",
(new BlockSteelGrate()).setHardness(5.0F).setResistance(10.0F)
.setStepSound(soundTypeMetal).setUnlocalizedName("steel_grate")
.setCreativeTab(CreativeTabs.tabStarlike));
(new BlockSteelGrate()).setHardness(5.0F).setResistance(10.0F).setStepSound(soundTypeMetal)
.setUnlocalizedName("steel_grate").setCreativeTab(CreativeTabs.tabStarlike));
registerBlock(516, (String) "starlike:platinum_ore",
(new BlockOre()).setHardness(50.0F).setResistance(250.0F).setStepSound(soundTypePiston)
.setUnlocalizedName("platinum_ore").setCreativeTab(CreativeTabs.tabStarlike));

View File

@ -3,7 +3,6 @@ package net.minecraft.block;
import net.lax1dude.eaglercraft.v1_8.EaglercraftRandom;
import net.lax1dude.eaglercraft.v1_8.opengl.ext.deferred.DeferredStateManager;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.util.EnumWorldBlockLayer;
/**

View File

@ -43,7 +43,7 @@ public class EnchantmentArrowDamage extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 5;
return 8;
}
/**

View File

@ -99,7 +99,7 @@ public class EnchantmentDamage extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 5;
return 7;
}
/**

View File

@ -52,7 +52,7 @@ public class EnchantmentDigging extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 5;
return 8;
}
/**

View File

@ -65,7 +65,7 @@ public class EnchantmentDurability extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 3;
return 5;
}
/**

View File

@ -43,7 +43,7 @@ public class EnchantmentFireAspect extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 2;
return 3;
}
/**

View File

@ -130,7 +130,7 @@ public class EnchantmentProtection extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 4;
return 8;
}
/**

View File

@ -64,7 +64,7 @@ public class EnchantmentThorns extends Enchantment {
* + Returns the maximum level that the enchantment can have.
*/
public int getMaxLevel() {
return 3;
return 5;
}
/**

View File

@ -203,7 +203,7 @@ public class EntityList {
addMapping(EntityVillager.class, EntityVillager::new, "Villager", 120, 5651507, 12422002);
addMapping(EntityEnderCrystal.class, EntityEnderCrystal::new, "EnderCrystal", 200);
// Starlike
addMapping(EntityNetherCreeper.class, EntityNetherCreeper::new, "NetherCreeper", 201, 894731, 0);
addMapping(EntityNetherCreeper.class, EntityNetherCreeper::new, "NetherCreeper", 201, 0xFFCC0000, 0xFFFFA500);
}

View File

@ -796,14 +796,16 @@ public class Item {
.setUnlocalizedName("platinum_axe").setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1030, (String) "starlike:platinum_hoe", (new ItemHoe(Item.ToolMaterial.PLATINUM))
.setUnlocalizedName("platinum_hoe").setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1031, (String) "starlike:platinum_helmet",
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 0)).setUnlocalizedName("platinum_helmet"));
registerItem(1031, (String) "starlike:platinum_helmet", (new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 0))
.setUnlocalizedName("platinum_helmet").setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1032, (String) "starlike:platinum_chestplate",
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 1)).setUnlocalizedName("platinum_chestplate"));
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 1)).setUnlocalizedName("platinum_chestplate")
.setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1033, (String) "starlike:platinum_leggings",
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 2)).setUnlocalizedName("platinum_leggings"));
registerItem(1034, (String) "starlike:platinum_boots",
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 3)).setUnlocalizedName("platinum_boots"));
(new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 2)).setUnlocalizedName("platinum_leggings")
.setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1034, (String) "starlike:platinum_boots", (new ItemArmor(ItemArmor.ArmorMaterial.PLATINUM, 5, 3))
.setUnlocalizedName("platinum_boots").setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1035, (String) "starlike:titanium_ingot",
(new Item()).setUnlocalizedName("titanium_ingot").setCreativeTab(CreativeTabs.tabStarlike));
registerItem(1036, (String) "starlike:uranium_crystal",

View File

@ -37,7 +37,7 @@ public class RecipesCrafting {
parCraftingManager.addRecipe(new ItemStack(Items.steel, 1), new Object[] { "III", "ICI", "III",
Character.valueOf('I'), Items.iron_ingot, Character.valueOf('C'), Items.coal });
parCraftingManager.addRecipe(new ItemStack(Blocks.steel_grate, 4),
new Object[] { "SSS", "S S", "SSS", Character.valueOf('S'), Items.steel });
new Object[] { "S S", " S ", "S S", Character.valueOf('S'), Items.steel });
parCraftingManager.addRecipe(new ItemStack(Items.platinum_sword, 1), new Object[] { "P", "P", "B",
Character.valueOf('P'), Items.platinum_ingot, Character.valueOf('B'), Items.blaze_rod });
parCraftingManager.addRecipe(new ItemStack(Items.platinum_pickaxe, 1), new Object[] { "PPP", " B ", " B ",
@ -67,25 +67,23 @@ public class RecipesCrafting {
Character.valueOf('S'), Items.steel, Character.valueOf('U'), Items.uranium_rod });
parCraftingManager.addRecipe(new ItemStack(Items.titanium_drill, 1), new Object[] { "TTT", "TDT", "TTT",
Character.valueOf('T'), Items.titanium_ingot, Character.valueOf('D'), Items.platinum_drill });
/*
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.OAK.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.OAK.getMetadata()) });
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.SPRUCE.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.SPRUCE.getMetadata()) });
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.BIRCH.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.BIRCH.getMetadata()) });
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.JUNGLE.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.JUNGLE.getMetadata()) });
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.ACACIA.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.ACACIA.getMetadata()) });
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.DARK_OAK.getMetadata()),
new Object[] { "##", "##", Character.valueOf('#'),
new Object[] { "# #", " ", "# #", Character.valueOf('#'),
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.DARK_OAK.getMetadata()) });
*/
}
}

View File

@ -9,7 +9,7 @@ public class EaglercraftVersion {
/// Customize these to fit your fork:
public static final String projectForkName = "Starlike Client";
public static final String projectForkVersion = "0.2.1";
public static final String projectForkVersion = "0.2.2";
public static final String projectForkVendor = "SpeedSlicer and zumbiepig";
public static final String projectForkURL = "";
@ -32,7 +32,7 @@ public class EaglercraftVersion {
public static final boolean enableUpdateService = true;
public static final String updateBundlePackageName = "dev.zumbiepig.starlikeclient.client";
public static final int updateBundlePackageVersionInt = 201; // (0.2.1 would be 000201 or just 201)
public static final int updateBundlePackageVersionInt = 202; // (0.2.1 would be 000201 or just 201)
public static final String updateLatestLocalStorageKey = "latestUpdate_" + updateBundlePackageName;