mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
14 lines
162 B
GDScript3
14 lines
162 B
GDScript3
|
extends Node
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
print(SpecialAbility.create_ability("Fireball",
|
||
|
["Fire Type", "Projectile"],
|
||
|
1,
|
||
|
10,
|
||
|
5,
|
||
|
3.0,
|
||
|
"strength",
|
||
|
Vector3(1, 2, 3)
|
||
|
))
|