mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Merge pull request #1935 from MellowArpeggiation/master
forgot the black book safe pool oops
This commit is contained in:
commit
d34624a224
@ -22,6 +22,7 @@ public class ItemPoolsComponent {
|
|||||||
public static final String POOL_SOLID_FUEL = "POOL_SOLID_FUEL";
|
public static final String POOL_SOLID_FUEL = "POOL_SOLID_FUEL";
|
||||||
public static final String POOL_VAULT_LAB = "POOL_VAULT_LAB";
|
public static final String POOL_VAULT_LAB = "POOL_VAULT_LAB";
|
||||||
public static final String POOL_VAULT_LOCKERS = "POOL_VAULT_LOCKERS";
|
public static final String POOL_VAULT_LOCKERS = "POOL_VAULT_LOCKERS";
|
||||||
|
public static final String POOL_METEOR_SAFE = "POOL_METEOR_SAFE";
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {
|
||||||
|
|
||||||
@ -181,5 +182,20 @@ public class ItemPoolsComponent {
|
|||||||
weighted(Items.experience_bottle, 0, 1, 3, 1)
|
weighted(Items.experience_bottle, 0, 1, 3, 1)
|
||||||
};
|
};
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
// Black Book safe in meteor dungeons
|
||||||
|
new ItemPool(POOL_METEOR_SAFE) {{
|
||||||
|
this.pool = new WeightedRandomChestContent[] {
|
||||||
|
weighted(ModItems.book_of_, 0, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 0, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 1, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 2, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 3, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 4, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 5, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 6, 1, 1, 1),
|
||||||
|
weighted(ModItems.stamp_book, 7, 1, 1, 1),
|
||||||
|
};
|
||||||
|
}};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user