omi-eikyo/data/objdefs/player.dod

59 lines
832 B
Plaintext
Raw Normal View History

2017-09-20 08:42:57 -07:00
// Copyright © 2017 Project Golan, all rights reserved.
2017-10-04 02:07:02 -07:00
frame PlayerIdle A "@sprites/Player/Idle.png"
frame PlayerLeft AB "@sprites/Player/TurnLeft%i.png"
frame PlayerRigh AB "@sprites/Player/TurnRight%i.png"
frame PlayerShot ABC "ent/shotfire%i"
anim PlayerShot
{
PlayerShot ABC 2
}
anim PlayerIdle
{
PlayerIdle A -1
}
anim PlayerLeft
{
PlayerIdle A 2
PlayerLeft A 4
PlayerLeft B -1
}
anim PlayerRigh
{
PlayerIdle A 2
PlayerRigh A 4
PlayerRigh B -1
}
anim PlayerFLef
{
PlayerLeft BA 3
PlayerIdle A -1
}
anim PlayerFRig
{
PlayerRigh BA 3
PlayerIdle A -1
}
2017-09-28 10:51:14 -07:00
entity Player
2017-09-20 08:42:57 -07:00
{
2017-09-28 10:51:14 -07:00
subtype Player
2017-10-04 02:07:02 -07:00
health 1
size 6
drawsize 30
2017-09-23 17:21:07 -07:00
friction 0.9
2017-10-04 02:07:02 -07:00
anim Idle = PlayerIdle
anim Left = PlayerLeft
anim Righ = PlayerRigh
anim FLef = PlayerFLef
anim FRig = PlayerFRig
2017-09-20 08:42:57 -07:00
}
// EOF