ChargedProjectiles
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.item.component.ChargedProjectiles;
Operators
in(item as Item) as bool
Checks if the ChargedProjectiles contains the given item.script.zs
myItem in myChargedProjectiles
Parameters:
Return Type:
bool
Members
contains(item as Item) as bool
Checks if the ChargedProjectiles contains the given item.script.zs
Returns: Whether the ChargedProjectiles contains the given item.
myChargedProjectiles.contains(myItem);
Parameters:
Return Type:
bool
Getter
Checks if the ChargedProjectiles is empty.script.zs
// ChargedProjectiles.empty as boolmyChargedProjectiles.empty
Return Type:
bool
Getter
Gets the items of the ChargedProjectiles.script.zs
myChargedProjectiles.items
Return Type:
List<IItemStack>
static of(stack as IItemStack) as ChargedProjectiles
Creates a new ChargedProjectiles with the given item.script.zs
Returns: The new ChargedProjectiles.
ChargedProjectiles.of(myIItemStack);
Parameters:
Return Type:
ChargedProjectiles
static of(stacks as List<IItemStack>) as ChargedProjectiles
Creates a new ChargedProjectiles with the given items.script.zs
Returns: The new ChargedProjectiles.
ChargedProjectiles.of(myList);
Parameters:
Return Type:
ChargedProjectiles