forked from DFHack/scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fillneeds.lua
38 lines (32 loc) · 1022 Bytes
/
fillneeds.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
-- Use with a unit selected to make them focused and unstressed.
--[====[
fillneeds
=========
Use with a unit selected to make them focused and unstressed.
Alternatively, a unit can be specified by passing ``-unit UNIT_ID``
Use ``-all`` to apply to all units on the map.
]====]
local utils = require('utils')
local validArgs = utils.invert({'all', 'unit'})
local args = utils.processArgs({...}, validArgs)
function satisfyNeeds(unit)
if not unit.status.current_soul then
return
end
local mind = unit.status.current_soul.personality.needs
for k,v in ipairs(mind) do
mind[k].focus_level = 400
end
unit.status.current_soul.personality.stress_level = -1000000
end
if args.all then
for _, unit in ipairs(df.global.world.units.all) do
satisfyNeeds(unit)
end
else
local unit = args.unit and df.unit.find(args.unit) or dfhack.gui.getSelectedUnit(true)
if not unit then
qerror('A unit must be specified or selected.')
end
satisfyNeeds(unit)
end