Merge remote-tracking branch 'origin/Finishing-Menuing'

This commit is contained in:
Raktbastr 2025-03-12 11:09:10 -05:00
commit 42bf2a484a
6 changed files with 228 additions and 6 deletions

View file

@ -50,7 +50,15 @@ var isSick = false;
var sickPoints = 0; // If you accumulate 50 sick points you lose
var sickSeverity = 0; // 3 levls, starting at 1
var inventory = []; // Max of 5 items
//Player inventory
//Record all items in the player's inventory as objects with a name, item category, value, and boolean properties. Example below.
//{name: "example", category: "testItems", value: 300, use: true, eat: false, drop: true, equip: true}
var inventory = [
//Supplies
[],
//Equipment
[]
];
var lootTables = [[],[],[],[],[]] // Only small things like food and ammo, 5 Loot tables per scavenge score, 3 items in each, first is best