mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-08-20 09:57:09 +00:00
TU31 feature: Nether Fortress chests can contain obsidian
This commit is contained in:
parent
c326eabbb4
commit
41d7ddb9b6
|
|
@ -137,6 +137,7 @@ NetherBridgePieces::NetherBridgePiece *NetherBridgePieces::findAndCreateBridgePi
|
||||||
}
|
}
|
||||||
|
|
||||||
WeighedTreasure *NetherBridgePieces::NetherBridgePiece::fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT] = {
|
WeighedTreasure *NetherBridgePieces::NetherBridgePiece::fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT] = {
|
||||||
|
new WeighedTreasure(Tile::obsidian_Id, 0, 1, 3, 5),
|
||||||
new WeighedTreasure(Item::diamond_Id, 0, 1, 3, 5),
|
new WeighedTreasure(Item::diamond_Id, 0, 1, 3, 5),
|
||||||
new WeighedTreasure(Item::ironIngot_Id, 0, 1, 5, 5),
|
new WeighedTreasure(Item::ironIngot_Id, 0, 1, 5, 5),
|
||||||
new WeighedTreasure(Item::goldIngot_Id, 0, 1, 3, 15),
|
new WeighedTreasure(Item::goldIngot_Id, 0, 1, 3, 15),
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ private:
|
||||||
class NetherBridgePiece : public StructurePiece
|
class NetherBridgePiece : public StructurePiece
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
static const int FORTRESS_TREASURE_ITEMS_COUNT = 11;
|
static const int FORTRESS_TREASURE_ITEMS_COUNT = 12;
|
||||||
static WeighedTreasure *fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT];
|
static WeighedTreasure *fortressTreasureItems[FORTRESS_TREASURE_ITEMS_COUNT];
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue