Diese Klasse importieren

Link to diese-klasse-importieren

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.entity.type.projectile.SmallFireball;

Extending Fireball

Link to extending-fireball

SmallFireball extends Fireball. That means all methods available in Fireball are also available in SmallFireball

ZenScript
Copy
new SmallFireball(level as invalid, shooter as LivingEntity, xPower as double, yPower as double, zPower as double) as SmallFireball
new SmallFireball(level, shooter, 0, 1, 2);
ParameterTypeBeschreibung
Parameter
level
Type
invalid
Beschreibung
The level this entity is in.
Parameter
shooter
Type
LivingEntity
Beschreibung
The entity that created the fireball, used to get the position.
Parameter
xPower
Type
double
Beschreibung
The x power of the entity.
Parameter
yPower
Type
double
Beschreibung
The y power of the entity.
Parameter
zPower
Type
double
Beschreibung
The z power of the entity.
ZenScript
Copy
new SmallFireball(level as invalid, x as double, y as double, z as double, xPower as double, yPower as double, zPower as double) as SmallFireball
new SmallFireball(level, 0, 1, 2, 3, 3, 3);
ParameterTypeBeschreibung
Parameter
level
Type
invalid
Beschreibung
The level this entity is in.
Parameter
x
Type
double
Beschreibung
The x position of the entity.
Parameter
y
Type
double
Beschreibung
The y position of the entity.
Parameter
z
Type
double
Beschreibung
The z position of the entity.
Parameter
xPower
Type
double
Beschreibung
The x power of the entity.
Parameter
yPower
Type
double
Beschreibung
The y power of the entity.
Parameter
zPower
Type
double
Beschreibung
The z power of the entity.