mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
9 lines
280 B
GDScript
9 lines
280 B
GDScript
|
|
|
|
extends Node
|
|
|
|
func _ready():
|
|
var SpecialAbility = preload("res://middleware/specialabliities/SpecialAbility.gd")
|
|
var special_ability = SpecialAbility.new("Fireball", ["Fire Type", "Projectile"], 1, 10, 0, 5.0, "strength", Vector3(1, 1, 1))
|
|
print(special_ability.to_string())
|