Uses of Class
net.minecraft.src.WeightedRandomChestContent

Packages that use WeightedRandomChestContent
net.minecraft.src   
net.minecraftforge.common   
 

Uses of WeightedRandomChestContent in net.minecraft.src
 

Fields in net.minecraft.src declared as WeightedRandomChestContent
static WeightedRandomChestContent[] WorldServer.bonusChestContent
           
static WeightedRandomChestContent[] ComponentScatteredFeatureDesertPyramid.itemsToGenerateInTemple
          List of items to generate in chests of Temples.
static WeightedRandomChestContent[] ComponentScatteredFeatureJunglePyramid.junglePyramidsChestContents
          List of Chest contents to be generated in the Jungle Pyramid chests.
static WeightedRandomChestContent[] ComponentScatteredFeatureJunglePyramid.junglePyramidsDispenserContents
          List of Dispenser contents to be generated in the Jungle Pyramid dispensers.
static WeightedRandomChestContent[] StructureMineshaftPieces.mineshaftChestContents
          List of contents that can generate in Mineshafts.
static WeightedRandomChestContent[] ComponentStrongholdChestCorridor.strongholdChestContents
          List of items that Stronghold chests can contain.
static WeightedRandomChestContent[] ComponentStrongholdLibrary.strongholdLibraryChestContents
          List of items that Stronghold Library chests can contain.
static WeightedRandomChestContent[] ComponentStrongholdRoomCrossing.strongholdRoomCrossingChestContents
          Items that could generate in the chest that is located in Stronghold Room Crossing.
static WeightedRandomChestContent[] ComponentVillageHouse2.villageBlacksmithChestContents
          List of items that Village's Blacksmith chest can contain.
 

Methods in net.minecraft.src with parameters of type WeightedRandomChestContent
static void WeightedRandomChestContent.generateChestContents(Random par0Random, WeightedRandomChestContent[] par1ArrayOfWeightedRandomChestContent, TileEntityChest par2TileEntityChest, int par3)
          Generates the Chest contents.
static void WeightedRandomChestContent.generateDispenserContents(Random par0Random, WeightedRandomChestContent[] par1ArrayOfWeightedRandomChestContent, TileEntityDispenser par2TileEntityDispenser, int par3)
          Generates the Dispenser contents.
 

Constructors in net.minecraft.src with parameters of type WeightedRandomChestContent
WorldGeneratorBonusChest(WeightedRandomChestContent[] par1ArrayOfWeightedRandomChestContent, int par2)
           
 

Uses of WeightedRandomChestContent in net.minecraftforge.common
 

Methods in net.minecraftforge.common that return WeightedRandomChestContent
 WeightedRandomChestContent[] ChestGenHooks.getItems()
          Gets an array of all random objects that are associated with this category.
static WeightedRandomChestContent[] ChestGenHooks.getItems(String category)
           
 

Methods in net.minecraftforge.common with parameters of type WeightedRandomChestContent
static void ChestGenHooks.addItem(String category, WeightedRandomChestContent item)
           
 void ChestGenHooks.addItem(WeightedRandomChestContent item)
          Adds a new entry into the possible items to generate.
 

Constructors in net.minecraftforge.common with parameters of type WeightedRandomChestContent
ChestGenHooks(String category, WeightedRandomChestContent[] items, int min, int max)