Add --set flag documentation to README

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Julian Tabel
2026-05-18 14:01:46 +02:00
parent cd58c0db9d
commit d214de1788

View File

@@ -31,11 +31,17 @@ node index.js --list
# Max all capped resources # Max all capped resources
node index.js --max-resources node index.js --max-resources
# Set a specific resource or prestige currency to a value
node index.js --set=Plasmid=5000
# Set multiple at once
node index.js --set=Plasmid=5000 --set=Phage=3000
# Set all crafted (unlimited) resources to 100,000 # Set all crafted (unlimited) resources to 100,000
node index.js --set-crafted=100000 node index.js --set-crafted=100000
# Combine both # Combine multiple actions
node index.js --max-resources --set-crafted=100000 node index.js --max-resources --set-crafted=100000 --set=Plasmid=5000
# Max only specific resources # Max only specific resources
node index.js --max-resources --only=food,stone,iron node index.js --max-resources --only=food,stone,iron
@@ -56,6 +62,7 @@ node index.js --max-resources --no-copy
|------|-------------| |------|-------------|
| `--list` | List all resources in the save, grouped by type (capped, crafted, special, locked) | | `--list` | List all resources in the save, grouped by type (capped, crafted, special, locked) |
| `--max-resources` | Set all capped resources (`max > 0`) to their max | | `--max-resources` | Set all capped resources (`max > 0`) to their max |
| `--set=key=N` | Set a specific resource or prestige currency to N (e.g. `--set=Plasmid=100`). Case-insensitive. Can be used multiple times. |
| `--set-crafted=N` | Set all unlimited/crafted resources (`max == -1`) to N | | `--set-crafted=N` | Set all unlimited/crafted resources (`max == -1`) to N |
| `--only=a,b,c` | Only affect listed resources (comma-separated, case-insensitive). Matches resource names (e.g. `Food`) or internal keys (e.g. `food`). Applies to `--max-resources` and `--set-crafted`. | | `--only=a,b,c` | Only affect listed resources (comma-separated, case-insensitive). Matches resource names (e.g. `Food`) or internal keys (e.g. `food`). Applies to `--max-resources` and `--set-crafted`. |
| `--max-soldiers` | Fill garrison to max capacity and heal all wounded soldiers | | `--max-soldiers` | Fill garrison to max capacity and heal all wounded soldiers |