doodads/dev-assets/doodads
Noah a40cc0602e Thief and Inventory APIs
This commit adds the Thief character with starter graphics
(no animations).

The Thief walks back and forth and will steal items from other
doodads, including the player. For singleton items that have no
quantity, like the Colored Keys, the Thief will only steal one
if he does not already have it. Quantitied items like the
Small Key are always stolen.

Flexibility in the playable character is introduced: Boy,
Azulian, Bird, and Thief all respond to playable controls.
There is not currently a method to enable these apart from
modifying balance.PlayerCharacterDoodad at compile time.

New and Changed Doodads

* Thief: new doodad that walks back and forth and will steal
  items from other characters inventory.
* Bird: has no inventory and cannot pick up items, unless player
  controlled. Its hitbox has also been fixed so it collides with
  floors correctly - not something normally seen in the Bird.
* Boy: opts in to have inventory.
* Keys (all): only gives themselves to actors having inventories.

JavaScript API - New functions available

* Self.IsPlayer() - returns if the current actor IS the player.
* Self.SetInventory(bool) - doodads must opt-in to having an
  inventory. Keys should only give themselves to doodads having
  an inventory.
* Self.HasInventory() bool
* Self.AddItem(filename, qty)
* Self.RemoveItem(filename, qty)
* Self.HasItem(filename)
* Self.Inventory() - returns map[string]int
* Self.ClearInventory()
* Self.OnLeave(func(e)) now receives a CollideEvent as parameter
  instead of the useless actor ID. Notably, e.Actor is the
  leaving actor and e.Settled is always true.

Other Changes

* Play Mode: if playing as a character which doesn't obey gravity,
  such as the bird, antigravity controls are enabled by default.
  If you `import antigravity` you can turn gravity back on.
* Doodad collision scripts are no longer run in parallel
  goroutines. It made the Thief's job difficult trying to steal
  items in many threads simultaneously!
2021-08-09 22:42:22 -07:00
..
azulian Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
bird Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
box New Doodad: Anvil 2021-08-08 21:57:41 -07:00
boy Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
buttons Doodads: Electric Trapdoor and Resettable Box 2021-08-08 20:10:42 -07:00
crumbly-floor Doodads: Electric Trapdoor and Resettable Box 2021-08-08 20:10:42 -07:00
doors Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
objects New Doodad: Anvil 2021-08-08 21:57:41 -07:00
on-off Doodads: Electric Trapdoor and Resettable Box 2021-08-08 20:10:42 -07:00
switches New Doodad: Anvil 2021-08-08 21:57:41 -07:00
test Initial Doodad JavaScript System 2019-04-15 23:07:40 -07:00
thief Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
trapdoors New Doodad: Anvil 2021-08-08 21:57:41 -07:00
warp-door Doodads: Electric Trapdoor and Resettable Box 2021-08-08 20:10:42 -07:00
build.sh Thief and Inventory APIs 2021-08-09 22:42:22 -07:00
mischievous.js Overhaul the Platformer Physics System 2020-04-04 21:00:32 -07:00
palette.json 1st Round of Doodad Sprites + Improve Doodad Tool 2019-04-17 00:02:41 -07:00