Added a Sacred Oak sapling
This commit is contained in:
parent
600781cb18
commit
9b97f207ca
6 changed files with 10 additions and 5 deletions
|
@ -91,6 +91,7 @@ public class BlockReferences {
|
|||
redwoodSapling (Blocks.colorizedSaplings, 3),
|
||||
willowSapling (Blocks.colorizedSaplings, 4),
|
||||
pineSapling (Blocks.colorizedSaplings, 5),
|
||||
sacredoakSapling (Blocks.colorizedSaplings, 6),
|
||||
mapleSapling (Blocks.saplings, 11),
|
||||
orangeAutumnSapling (Blocks.saplings, 8),
|
||||
pinkCherrySapling (Blocks.saplings, 10),
|
||||
|
|
|
@ -13,9 +13,9 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import net.minecraftforge.common.ForgeDirection;
|
||||
import biomesoplenty.BiomesOPlenty;
|
||||
import biomesoplenty.worldgen.WorldGenNetherBush;
|
||||
import biomesoplenty.worldgen.tree.WorldGenAcacia;
|
||||
import biomesoplenty.worldgen.tree.WorldGenMangrove;
|
||||
import biomesoplenty.worldgen.tree.WorldGenMassiveTree;
|
||||
import biomesoplenty.worldgen.tree.WorldGenPalmTree1;
|
||||
import biomesoplenty.worldgen.tree.WorldGenPalmTree3;
|
||||
import biomesoplenty.worldgen.tree.WorldGenPineTree;
|
||||
|
@ -26,7 +26,7 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
|
||||
public class BlockBOPColorizedSapling extends BlockSapling
|
||||
{
|
||||
private static final String[] saplings = new String[] {"acacia", "mangrove", "palm", "redwood", "willow", "pine"};
|
||||
private static final String[] saplings = new String[] {"acacia", "mangrove", "palm", "redwood", "willow", "pine", "sacredoak"};
|
||||
private Icon[] textures;
|
||||
private static final int TYPES = 15;
|
||||
|
||||
|
@ -163,8 +163,8 @@ public class BlockBOPColorizedSapling extends BlockSapling
|
|||
obj = new WorldGenPineTree();
|
||||
break;
|
||||
|
||||
case 6: // Hellbark
|
||||
obj = new WorldGenNetherBush();
|
||||
case 6: // Sacred Oak
|
||||
obj = new WorldGenMassiveTree(false);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,6 +47,7 @@ public class BOPVanillaCompat {
|
|||
dungeon.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 15), 1, 2, 5));
|
||||
dungeon.addItem(new WeightedRandomChestContent(new ItemStack(Items.wadingBoots.get(), 1, 0), 1, 1, 15));
|
||||
dungeon.addItem(new WeightedRandomChestContent(new ItemStack(Items.flippers.get(), 1, 0), 1, 1, 10));
|
||||
dungeon.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.colorizedSaplings.get(),1,6), 1, 1, 1));
|
||||
|
||||
mineshaft.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 1), 2, 8, 25));
|
||||
mineshaft.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 10), 1, 3, 10));
|
||||
|
@ -70,9 +71,11 @@ public class BOPVanillaCompat {
|
|||
|
||||
desertTemple.addItem(new WeightedRandomChestContent(new ItemStack(Items.wadingBoots.get(),1,0), 1, 1, 20));
|
||||
desertTemple.addItem(new WeightedRandomChestContent(new ItemStack(Items.flippers.get(),1,0), 1, 1, 15));
|
||||
desertTemple.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.colorizedSaplings.get(),1,6), 1, 1, 1));
|
||||
|
||||
jungleTemple.addItem(new WeightedRandomChestContent(new ItemStack(Items.wadingBoots.get(),1,0), 1, 1, 20));
|
||||
jungleTemple.addItem(new WeightedRandomChestContent(new ItemStack(Items.flippers.get(),1,0), 1, 1, 15));
|
||||
jungleTemple.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.colorizedSaplings.get(),1,6), 1, 1, 1));
|
||||
|
||||
village.addItem(new WeightedRandomChestContent(new ItemStack(Blocks.plants.get(),1,5), 2, 6, 25));
|
||||
village.addItem(new WeightedRandomChestContent(new ItemStack(Items.miscItems.get(), 1, 1), 2, 8, 25));
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.util.Icon;
|
|||
|
||||
public class ItemBlockColorizedSapling extends ItemBlock
|
||||
{
|
||||
private static final String[] saplings = new String[] {"acacia", "mangrove", "palm", "redwood", "willow", "pine"};
|
||||
private static final String[] saplings = new String[] {"acacia", "mangrove", "palm", "redwood", "willow", "pine", "sacredoak"};
|
||||
|
||||
public ItemBlockColorizedSapling(int par1)
|
||||
{
|
||||
|
|
|
@ -103,6 +103,7 @@ tile.bop.colorizedSaplings.palmSapling.name=Palm Sapling
|
|||
tile.bop.colorizedSaplings.redwoodSapling.name=Redwood Sapling
|
||||
tile.bop.colorizedSaplings.willowSapling.name=Willow Sapling
|
||||
tile.bop.colorizedSaplings.pineSapling.name=Pine Sapling
|
||||
tile.bop.colorizedSaplings.sacredoakSapling.name=Sacred Oak Sapling
|
||||
|
||||
tile.bop.willow.name=Willow
|
||||
tile.bop.ivy.name=Ivy
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 697 B |
Loading…
Reference in a new issue