50 lines
741 B
Plaintext
50 lines
741 B
Plaintext
|
shot_image = "./playerlib/Chimata_Sheet.png"
|
||
|
|
||
|
ShotData{
|
||
|
id = 0 // Dummy
|
||
|
rect = (0,0,0,0)
|
||
|
render = ALPHA
|
||
|
alpha = 0
|
||
|
collision = 32
|
||
|
}
|
||
|
|
||
|
// IceShot
|
||
|
|
||
|
ShotData{
|
||
|
id = 1
|
||
|
rect = (256, 512, 512, 768)
|
||
|
render = ALPHA
|
||
|
alpha = 255
|
||
|
collision = 128 // Hitbox of arrows is not centered on the sprite
|
||
|
}
|
||
|
|
||
|
// BombShot
|
||
|
|
||
|
ShotData{
|
||
|
id = 2
|
||
|
rect = (512, 512, 768, 768)
|
||
|
render = ADD_ARGB
|
||
|
alpha = 255
|
||
|
collision = 128 // Hitbox of arrows is not centered on the sprite
|
||
|
}
|
||
|
|
||
|
// Option
|
||
|
|
||
|
ShotData{
|
||
|
id = 3
|
||
|
rect = (0, 512, 256, 768)
|
||
|
render = ALPHA
|
||
|
alpha = 255
|
||
|
collision = 128 // Hitbox of arrows is not centered on the sprite
|
||
|
}
|
||
|
|
||
|
// Bomb
|
||
|
|
||
|
ShotData{
|
||
|
id = 4
|
||
|
rect = (0, 896, 512, 1408)
|
||
|
render = ADD_ARGB
|
||
|
angular_velocity = 5;
|
||
|
alpha = 255
|
||
|
collision = 160
|
||
|
}
|