Game
Link to game
Importing the class
Link to importing-the-class
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 Copyimport crafttweaker.api.game.Game;
Methods
Link to methods
Name: getBlockStates
Return Type: Collection<BlockState>
ZenScript Copy// Game.getBlockStates() as Collection<BlockState>
myGame.getBlockStates();
Name: getBlocks
Return Type: Collection<Block>
ZenScript Copy// Game.getBlocks() as Collection<Block>
myGame.getBlocks();
Name: getEnchantments
Return Type: Collection<Enchantment>
ZenScript Copy// Game.getEnchantments() as Collection<Enchantment>
myGame.getEnchantments();
Name: getEntityTypes
Return Type: Collection<EntityType>
ZenScript Copy// Game.getEntityTypes() as Collection<EntityType>
myGame.getEntityTypes();
Name: getFluids
Return Type: Collection<Fluid>
ZenScript Copy// Game.getFluids() as Collection<Fluid>
myGame.getFluids();
Name: getItemStacks
Return Type: Collection<IItemStack>
ZenScript Copy// Game.getItemStacks() as Collection<IItemStack>
myGame.getItemStacks();
Name: getMobEffects
Return Type: Collection<MobEffect>
ZenScript Copy// Game.getMobEffects() as Collection<MobEffect>
myGame.getMobEffects();
Name: getPotions
Return Type: Collection<Potion>
ZenScript Copy// Game.getPotions() as Collection<Potion>
myGame.getPotions();
Name: getRecipeTypes
Return Type: Collection<IRecipeManager>
ZenScript Copy// Game.getRecipeTypes() as Collection<IRecipeManager>
myGame.getRecipeTypes();
Name: getVillagerProfessions
Return Type: Collection<VillagerProfession>
ZenScript Copy// Game.getVillagerProfessions() as Collection<VillagerProfession>
myGame.getVillagerProfessions();
Name: localize
Returns: a localized String
Return Type: string
ZenScript Copy// Game.localize(translationKey as string) as string
myGame.localize("gui.up");
Parameter | Type |
---|---|
Parameter translationKey | Type string |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name blockStates | Type Collection<BlockState> | Has Getter true | Has Setter false |
Name blocks | Type Collection<Block> | Has Getter true | Has Setter false |
Name effects | Type Collection<MobEffect> | Has Getter true | Has Setter false |
Name enchantments | Type Collection<Enchantment> | Has Getter true | Has Setter false |
Name entityTypes | Type Collection<EntityType> | Has Getter true | Has Setter false |
Name fluids | Type Collection<Fluid> | Has Getter true | Has Setter false |
Name items | Type Collection<IItemStack> | Has Getter true | Has Setter false |
Name potions | Type Collection<Potion> | Has Getter true | Has Setter false |
Name recipeTypes | Type Collection<IRecipeManager> | Has Getter true | Has Setter false |
Name villagerProfessions | Type Collection<VillagerProfession> | Has Getter true | Has Setter false |