1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 04:37:46 +00:00
kawari/resources/scripts/items/Fantasia.lua
Joshua Goins e7fb661244 Implement Fantasia and remaking your character
Everyone's favorite copying mechanism/purchasable item is now functional
in Kawari. The item doesn't disappear once you use it, because there's
no API for that yet.
2025-05-02 15:36:22 -04:00

8 lines
171 B
Lua

function doAction(player)
effects = EffectsBuilder()
-- TODO: match retail fantasia behavior
player:set_remake_mode("EditAppearance")
return effects
end