Money world with gems.js

valuable gems and gold
requires gems.js
This commit is contained in:
O-01-67 2022-09-01 11:50:02 -04:00 committed by GitHub
parent d4c6f56b53
commit db94ebb826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -629,3 +629,21 @@ worldgentypes.dark = {
[0, "basalt"]
]
};
//Money World (requires gems.js)
if(enabledMods.includes("mods/gems.js")) {
worldgentypes.money = {
layers: [
[0.9, "emerald"],
[0.6, "diamond"],
[0.3, "gold_coin"],
[0.1, "ruby", 1/3],
[0.1, "amethyst", 1/2],
[0.1, "sapphire"],
[-0.1, "pearl", 0.4],
[-0.1, "onyx"]
]
};
};