P3D-Legacy/P3D/Content/Data/Scripts/heal_machine.dat

20 lines
724 B
Plaintext
Raw Normal View History

2016-09-07 18:50:38 +02:00
<EFBFBD><EFBFBD>version=2
:if:<pokemon.count>=0
:then
@text.show(This is a~machine for healing~injured Pok<00>mon.)
:else
@text.show(Do you want to~heal your Pok<00>mon?)
@options.show(Yes,No)
:when:Yes
@screen.fadeout
@pokemon.heal
@sound.play(healing,1)
@level.wait(150)
@screen.fadein
@text.show(Your Pok<00>mon are~fully restored.)
:when:No
:endwhen
:endif
:end