Logicaprogrammering
Another method for creating dynamic variable cards, is by applying an Operator on one or more Variable Cards to produce a new Variable Card. An example of an Operator is the addition of two Numbers, resulting in a new Number.
An Operator can have one or more input values, and has one output value. In most cases the inputs and output have a certain Value Type, otherwise, they will have the Any value type. An Operator with a single input and one output Boolean is called a Predicate.
The Logic Programmer contains a large collection of Operators. It also allows you to create static Variable Cards for all Value Types. After selecting an Operator, valid Variable Cards should be inserted in the expected input slots. Finally, another Variable Card should be inserted in the output slot. If the Operator is valid, a new dynamic variable will be written to the card. Remember that the referenced Variable Cards have to be present in a Variable Store in the same network where the Operator will be evaluated.
Besides writing values to Variable Cards, the Logic Programmer can also be used to modify existing Variable Cards. The value of an existing Variable Card can be loaded into the Logic Programmer by inserting it into the slot on the right-hand side while making sure no Operators or Value Type on the left-hand side is selected (which is the case when first opening the Logic Programmer, or the current element can be cleared).
The Logic Programmer allows you to search through the list of Operators by name using the textbox on the top. It also allows you to filter on input or output value types, by inserting a Variable Card of those types in the bottom-left slots.
If a Labeller is present in the player’s inventory, the resulting Variable Card can be labelled immediately by clicking on the ‘E’ button next to the output slot.
The Logic Programmer exists both in block-form and item-form. Both can be interchanged by placing them in a crafting grid.
Focus zoekveld in logicaprogrammeur
Alt + F
Hernoem variabele in logicaprogrammeur
Alt + R
And&&- Booleaanse waarde
- Booleaanse waarde
- Booleaanse waarde
Global name: booleanAnd(Booleaanse waarde, Booleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.and(Booleaanse waarde) → Booleaanse waarde
Or||- Booleaanse waarde
- Booleaanse waarde
- Booleaanse waarde
Global name: booleanOr(Booleaanse waarde, Booleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.or(Booleaanse waarde) → Booleaanse waarde
Not!- Booleaanse waarde
- Booleaanse waarde
Global name: booleanNot(Booleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.not() → Booleaanse waarde
Nand!&&- Booleaanse waarde
- Booleaanse waarde
- Booleaanse waarde
Global name: booleanNand(Booleaanse waarde, Booleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.nand(Booleaanse waarde) → Booleaanse waarde
Nor!||- Booleaanse waarde
- Booleaanse waarde
- Booleaanse waarde
Global name: booleanNor(Booleaanse waarde, Booleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.nor(Booleaanse waarde) → Booleaanse waarde
Optelling+Global name: numberAdd(Nummer, Nummer) → NummerMethod name: Nummer.add(Nummer) → Nummer
Subtraction-Global name: numberSubtract(Nummer, Nummer) → NummerMethod name: Nummer.subtract(Nummer) → Nummer
Multiplication*Global name: numberMultiply(Nummer, Nummer) → NummerMethod name: Nummer.multiply(Nummer) → Nummer
Division/Global name: numberDivide(Nummer, Nummer) → NummerMethod name: Nummer.divide(Nummer) → Nummer
MaximummaxTakes the largest of two values.Global name: numberMax(Nummer, Nummer) → NummerMethod name: Nummer.max(Nummer) → Nummer
MinimumminTakes the smallest of two values.Global name: numberMin(Nummer, Nummer) → NummerMethod name: Nummer.min(Nummer) → Nummer
Increment++Global name: numberIncrement(Nummer) → NummerMethod name: Nummer.increment() → Nummer
Decrement--Global name: numberDecrement(Nummer) → NummerMethod name: Nummer.decrement() → Nummer
Modulus%Global name: numberModulus(Nummer, Nummer) → NummerMethod name: Nummer.modulus(Nummer) → Nummer
Square Rootsqrt- Dubbeleprecisiegetal
- Dubbeleprecisiegetal
Global name: doubleSqrt(Dubbeleprecisiegetal) → DubbeleprecisiegetalMethod name: Dubbeleprecisiegetal.sqrt() → Dubbeleprecisiegetal
Powerpow- Dubbeleprecisiegetal
- Dubbeleprecisiegetal
- Dubbeleprecisiegetal
Global name: doublePow(Dubbeleprecisiegetal, Dubbeleprecisiegetal) → DubbeleprecisiegetalMethod name: Dubbeleprecisiegetal.pow(Dubbeleprecisiegetal) → Dubbeleprecisiegetal
Equals==Tests whether two values are equal. The types of both must be the same.- Willekeurig
- Willekeurig
- Booleaanse waarde
Global name: anyEquals(Willekeurig, Willekeurig) → Booleaanse waardeMethod name: Willekeurig.equals(Willekeurig) → Booleaanse waarde
Greater Than>- Nummer
- Nummer
- Booleaanse waarde
Global name: numberGreaterThan(Nummer, Nummer) → Booleaanse waardeMethod name: Nummer.greaterThan(Nummer) → Booleaanse waarde
Less Than<- Nummer
- Nummer
- Booleaanse waarde
Global name: numberLessThan(Nummer, Nummer) → Booleaanse waardeMethod name: Nummer.lessThan(Nummer) → Booleaanse waarde
Not Equals!=Tests whether two values are unequal. The types of both must be the same.- Willekeurig
- Willekeurig
- Booleaanse waarde
Global name: anyNotEquals(Willekeurig, Willekeurig) → Booleaanse waardeMethod name: Willekeurig.notEquals(Willekeurig) → Booleaanse waarde
Greater Than or Equal>=- Willekeurig
- Willekeurig
- Booleaanse waarde
Global name: anyGreaterThanOrEquals(Willekeurig, Willekeurig) → Booleaanse waardeMethod name: Willekeurig.greaterThanOrEquals(Willekeurig) → Booleaanse waarde
Less Than or Equal<=- Willekeurig
- Willekeurig
- Booleaanse waarde
Global name: anyLessThanOrEquals(Willekeurig, Willekeurig) → Booleaanse waardeMethod name: Willekeurig.lessThanOrEquals(Willekeurig) → Booleaanse waarde
And&- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerBinaryAnd(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.binaryAnd(Geheel getal) → Geheel getal
Or|- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerBinaryOr(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.binaryOr(Geheel getal) → Geheel getal
Xor^- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerXor(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.xor(Geheel getal) → Geheel getal
Complement~Global name: integerComplement(Geheel getal) → Geheel getalMethod name: Geheel getal.complement() → Geheel getal
Left Shift<<- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerLeftShift(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.leftShift(Geheel getal) → Geheel getal
Right Shift>>Right Shift with ones fill- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerRightShift(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.rightShift(Geheel getal) → Geheel getal
Right Zero Shift>>>Right Shift with zeros fill- Geheel getal
- Geheel getal
- Geheel getal
Global name: integerUnsignedRightShift(Geheel getal, Geheel getal) → Geheel getalMethod name: Geheel getal.unsignedRightShift(Geheel getal) → Geheel getal
LengthlenThe length of the given StringGlobal name: stringLength(Tekenreeks) → Geheel getalMethod name: Tekenreeks.length() → Geheel getal
Concat+Concatenate the two given Strings to one- Tekenreeks
- Tekenreeks
- Tekenreeks
Global name: stringConcat(Tekenreeks, Tekenreeks) → TekenreeksMethod name: Tekenreeks.concat(Tekenreeks) → Tekenreeks
String ContainscontainsIf the given substring is contained within the given string.- Tekenreeks
- Tekenreeks
- Booleaanse waarde
Global name: stringContains(Tekenreeks, Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.contains(Tekenreeks) → Booleaanse waarde
Contains Regexcontains_regexIf the regular expression given matches any substring of the given string.- Tekenreeks
- Tekenreeks
- Booleaanse waarde
Global name: stringContainsRegex(Tekenreeks, Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.containsRegex(Tekenreeks) → Booleaanse waarde
Matches Regexmatches_regexIf the regular expression given matches the given string.- Tekenreeks
- Tekenreeks
- Booleaanse waarde
Global name: stringMatchesRegex(Tekenreeks, Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.matchesRegex(Tekenreeks) → Booleaanse waarde
Index Ofindex_ofGet the index of the first occurrence of a substring matching the search term in the given string.- Tekenreeks
- Tekenreeks
- Geheel getal
Global name: stringIndexOf(Tekenreeks, Tekenreeks) → Geheel getalMethod name: Tekenreeks.indexOf(Tekenreeks) → Geheel getal
Index Of Regexindex_of_regexGet the index of the first occurrence of a substring matching the pattern in the given string.- Tekenreeks
- Tekenreeks
- Geheel getal
Global name: stringIndexOfRegex(Tekenreeks, Tekenreeks) → Geheel getalMethod name: Tekenreeks.indexOfRegex(Tekenreeks) → Geheel getal
Starts Withstarts_withIf the given substring matches the start of the given string.- Tekenreeks
- Tekenreeks
- Booleaanse waarde
Global name: stringStartsWith(Tekenreeks, Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.startsWith(Tekenreeks) → Booleaanse waarde
Ends Withends_withIf the string given matches the end of the given string.- Tekenreeks
- Tekenreeks
- Booleaanse waarde
Global name: stringEndsWith(Tekenreeks, Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.endsWith(Tekenreeks) → Booleaanse waarde
Split Onsplit_onGet a list containing pieces, split on the given (literal) delimiter, of the given string.- Tekenreeks
- Tekenreeks
- Lijst
Global name: stringSplitOn(Tekenreeks, Tekenreeks) → LijstMethod name: Tekenreeks.splitOn(Tekenreeks) → Lijst
Split On Regexsplit_on_regexGet a list containing pieces, split on the given regular expression, of the given string.- Tekenreeks
- Tekenreeks
- Lijst
Global name: stringSplitOnRegex(Tekenreeks, Tekenreeks) → LijstMethod name: Tekenreeks.splitOnRegex(Tekenreeks) → Lijst
SubstringsubstringGet a substring, from the given index (inclusive) to the given index (exclusive), of the given string.- Geheel getal
- Geheel getal
- Tekenreeks
- Tekenreeks
Global name: integerSubstring(Geheel getal, Geheel getal, Tekenreeks) → TekenreeksMethod name: Geheel getal.substring(Geheel getal, Tekenreeks) → Tekenreeks
Regex Groupregex_groupSearch for the given regular expression and return in that match the group at the given index, in the given string.- Tekenreeks
- Geheel getal
- Tekenreeks
- Tekenreeks
Global name: stringRegexGroup(Tekenreeks, Geheel getal, Tekenreeks) → TekenreeksMethod name: Tekenreeks.regexGroup(Geheel getal, Tekenreeks) → Tekenreeks
Regex Groupsregex_groupsSearch for the given regular expression and return in that match a list of all its groups, in the given string.- Tekenreeks
- Tekenreeks
- Lijst
Global name: stringRegexGroups(Tekenreeks, Tekenreeks) → LijstMethod name: Tekenreeks.regexGroups(Tekenreeks) → Lijst
Regex Scanregex_scanSearch for all matches of the given regular expression and return the group at the given index, in the given string.- Tekenreeks
- Geheel getal
- Tekenreeks
- Lijst
Global name: stringRegexScan(Tekenreeks, Geheel getal, Tekenreeks) → LijstMethod name: Tekenreeks.regexScan(Geheel getal, Tekenreeks) → Lijst
ReplacereplaceFind all instances of the search term and replace them with the given string, in the given string.- Tekenreeks
- Tekenreeks
- Tekenreeks
- Tekenreeks
Global name: stringReplace(Tekenreeks, Tekenreeks, Tekenreeks) → TekenreeksMethod name: Tekenreeks.replace(Tekenreeks, Tekenreeks) → Tekenreeks
Replace Regexreplace_regexFind all matches of the search pattern and replace them with the given string, in the given string.- Tekenreeks
- Tekenreeks
- Tekenreeks
- Tekenreeks
Global name: stringReplaceRegex(Tekenreeks, Tekenreeks, Tekenreeks) → TekenreeksMethod name: Tekenreeks.replaceRegex(Tekenreeks, Tekenreeks) → Tekenreeks
JoinjoinCreate a joined string with the given string delimiter and the given list of strings.- Tekenreeks
- Lijst
- Tekenreeks
Global name: stringJoin(Tekenreeks, Lijst) → TekenreeksMethod name: Tekenreeks.join(Lijst) → Tekenreeks
To StringnameGet the string or name of a named object or converts it to a stringGlobal name: namedName(Benoemd) → TekenreeksMethod name: Benoemd.name() → Tekenreeks
Unique NameunameGet the unique name of an objectGlobal name: uniquely_namedUniqueName(Uniek benoemd) → TekenreeksMethod name: Uniek benoemd.uniqueName() → Tekenreeks
FouterrorVeroorzaak een aangepaste foutGlobal name: stringStringError(Tekenreeks) → TekenreeksMethod name: Tekenreeks.stringError() → Tekenreeks
Round|| ||Round to the nearest IntegerGlobal name: numberRound(Nummer) → Geheel getalMethod name: Nummer.round() → Geheel getal
Ceil⌈ ⌉Round up to the nearest IntegerGlobal name: numberCeil(Nummer) → Geheel getalMethod name: Nummer.ceil() → Geheel getal
Floor⌊ ⌋Round down to the nearest IntegerGlobal name: numberFloor(Nummer) → Geheel getalMethod name: Nummer.floor() → Geheel getal
CompactcompactShow a shorter, less precise representation of a NumberGlobal name: numberCompact(Nummer) → TekenreeksMethod name: Nummer.compact() → Tekenreeks
Is NulloIf the given value is null- Willekeurig
- Booleaanse waarde
Global name: anyIsNull(Willekeurig) → Booleaanse waardeMethod name: Willekeurig.isNull() → Booleaanse waarde
Is Not Null∅If the given value is not null- Willekeurig
- Booleaanse waarde
Global name: anyIsNotNull(Willekeurig) → Booleaanse waardeMethod name: Willekeurig.isNotNull() → Booleaanse waarde
Length| |The length of the given listGlobal name: listLength(Lijst) → Geheel getalMethod name: Lijst.length() → Geheel getal
Empty∅If the list is emptyGlobal name: listIsEmpty(Lijst) → Booleaanse waardeMethod name: Lijst.isEmpty() → Booleaanse waarde
Not EmptyoIf the list is not emptyGlobal name: listIsNotEmpty(Lijst) → Booleaanse waardeMethod name: Lijst.isNotEmpty() → Booleaanse waarde
GetgetGet the list element at the given position, throws an error if the index is out of bounds.- Lijst
- Geheel getal
- Willekeurig
Global name: listGet(Lijst, Geheel getal) → WillekeurigMethod name: Lijst.get(Geheel getal) → Willekeurig
Get Or Defaultget_or_defaultSafely get the list element at the given position, if that element is not available, return the given default value.- Lijst
- Geheel getal
- Willekeurig
- Willekeurig
Global name: listGetOrDefault(Lijst, Geheel getal, Willekeurig) → WillekeurigMethod name: Lijst.getOrDefault(Geheel getal, Willekeurig) → Willekeurig
BevatcontainsOf de lijst het gegeven element bevat.- Lijst
- Willekeurig
- Booleaanse waarde
Global name: listContains(Lijst, Willekeurig) → Booleaanse waardeMethod name: Lijst.contains(Willekeurig) → Booleaanse waarde
Bevat-predicaatcontains_pOf ten minste één van de elementen uit de lijst waar geeft voor de gegeven predicaat.- Lijst
- Operator
- Booleaanse waarde
Global name: listContainsPredicate(Lijst, Operator) → Booleaanse waardeMethod name: Lijst.containsPredicate(Operator) → Booleaanse waarde
TellencountHet aantal keer dat het gegeven element in de lijst wordt gevonden.- Lijst
- Willekeurig
- Geheel getal
Global name: listCount(Lijst, Willekeurig) → Geheel getalMethod name: Lijst.count(Willekeurig) → Geheel getal
Tellen-predicaatcount_pHet aantal keer dat het gegeven predicaat waar geeft voor de elementen in de lijst.- Lijst
- Operator
- Geheel getal
Global name: listCountPredicate(Lijst, Operator) → Geheel getalMethod name: Lijst.countPredicate(Operator) → Geheel getal
AppendappendAppend to the given list the given item.Global name: listAppend(Lijst, Willekeurig) → LijstMethod name: Lijst.append(Willekeurig) → Lijst
ConcatconcatConcatenate the two lists to each other.Global name: listConcat(Lijst, Lijst) → LijstMethod name: Lijst.concat(Lijst) → Lijst
Lazy List BuilderlazybuiltBuild a list lazily using a start value and an operator that is applied to the previous element to get a next element.Global name: anyLazyBuilt(Willekeurig, Operator) → LijstMethod name: Willekeurig.lazyBuilt(Operator) → Lijst
HeadheadGet the first element of the given list.Global name: listHead(Lijst) → WillekeurigMethod name: Lijst.head() → Willekeurig
TailtailRemove the first element from the list.Global name: listTail(Lijst) → LijstMethod name: Lijst.tail() → Lijst
Uniek-predicaatuniq_pVerwijder alle dubbele elementen uit de lijst, gebaseerd op het gegeven vergelijkingspredicaat.Global name: listUniquePredicate(Lijst, Operator) → LijstMethod name: Lijst.uniquePredicate(Operator) → Lijst
UniekuniqVerwijder alle dubbele elementen uit de lijst.Global name: listUnique(Lijst) → LijstMethod name: Lijst.unique() → Lijst
SlicesliceTake a subset of the given list from the given index (inclusive) to the given index (exclusive).- Lijst
- Geheel getal
- Geheel getal
- Lijst
Global name: listSlice(Lijst, Geheel getal, Geheel getal) → LijstMethod name: Lijst.slice(Geheel getal, Geheel getal) → Lijst
Intersection∩Returns a list of items present in both supplied listsGlobal name: listIntersection(Lijst, Lijst) → LijstMethod name: Lijst.intersection(Lijst) → Lijst
List Equals (Set)=set=Check if two lists are equal according to set semantics.- Lijst
- Lijst
- Booleaanse waarde
Global name: listEquals_set(Lijst, Lijst) → Booleaanse waardeMethod name: Lijst.equals_set(Lijst) → Booleaanse waarde
List Equals (Multiset)=multiset=Check if two lists are equal according to multiset semantics.- Lijst
- Lijst
- Booleaanse waarde
Global name: listEquals_multiset(Lijst, Lijst) → Booleaanse waardeMethod name: Lijst.equals_multiset(Lijst) → Booleaanse waarde
OpaqueopaqueIf the given block is opaque, non-transparentGlobal name: blockIsOpaque(Blok) → Booleaanse waardeMethod name: Blok.isOpaque() → Booleaanse waarde
ItemitemstackThe item representation of the given blockGlobal name: blockItemStack(Blok) → VoorwerpMethod name: Blok.itemStack() → Voorwerp
ModmodThe name of the mod owning the given blockGlobal name: blockMod(Blok) → TekenreeksMethod name: Blok.mod() → Tekenreeks
Block Break Soundbreak_soundThe break sound of the given blockGlobal name: blockBreakSound(Blok) → TekenreeksMethod name: Blok.breakSound() → Tekenreeks
Block Place Soundplace_soundThe place sound of the given blockGlobal name: blockPlaceSound(Blok) → TekenreeksMethod name: Blok.placeSound() → Tekenreeks
Blok stap-geluidstep_soundHet stap-geluid van het gegeven blokGlobal name: blockStepSound(Blok) → TekenreeksMethod name: Blok.stepSound() → Tekenreeks
Block Is Shearableis_shearableIf the given block is shearableGlobal name: blockIsShearable(Blok) → Booleaanse waardeMethod name: Blok.isShearable() → Booleaanse waarde
Block Plant Ageplant_ageThe age of the given plant blockGlobal name: blockPlantAge(Blok) → Geheel getalMethod name: Blok.plantAge() → Geheel getal
Block By Nameblock_by_nameGet the block corresponding to the given unique name, add space+number for indicating the metadata.Global name: stringBlockByName(Tekenreeks) → BlokMethod name: Tekenreeks.blockByName() → Blok
Block Propertiesblock_propsGet the block properties as NBT compound tag.Global name: blockProperties(Blok) → NBTMethod name: Blok.properties() → NBT
Block Propertiesblock_with_propsGet the given block applied with the given properties.Global name: blockWithProperties(Blok, NBT) → BlokMethod name: Blok.withProperties(NBT) → Blok
Block Propertiesblock_all_propsGet all possible block properties as an NBT compound tag with list values.Global name: blockPossibleProperties(Blok) → NBTMethod name: Blok.possibleProperties() → NBT
Block Tag Namesblock_tag_namesThe Tag names (strings) of the given blockGlobal name: blockTags(Blok) → LijstMethod name: Blok.tags() → Lijst
Block Tag Valuesblock_tag_valuesThe Tag values (blocks) of the given block tag nameGlobal name: stringBlocksByTag(Tekenreeks) → LijstMethod name: Tekenreeks.blocksByTag() → Lijst
SizesizeThe current stack sizeGlobal name: itemstackSize(Voorwerp) → Geheel getalMethod name: Voorwerp.size() → Geheel getal
Max sizemaxsizeThe maximum stack sizeGlobal name: itemstackMaxSize(Voorwerp) → Geheel getalMethod name: Voorwerp.maxSize() → Geheel getal
StackablestackableIf the item stack can hold at least two items.- Voorwerp
- Booleaanse waarde
Global name: itemstackIsStackable(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isStackable() → Booleaanse waarde
DamageabledamageableIf the item can take damage.- Voorwerp
- Booleaanse waarde
Global name: itemstackIsDamageable(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isDamageable() → Booleaanse waarde
DamagedamageThe current item damageGlobal name: itemstackDamage(Voorwerp) → Geheel getalMethod name: Voorwerp.damage() → Geheel getal
Max Damagemax_damageThe maximum item damageGlobal name: itemstackMaxDamage(Voorwerp) → Geheel getalMethod name: Voorwerp.maxDamage() → Geheel getal
EnchantedenchantedIf the item is enchanted- Voorwerp
- Booleaanse waarde
Global name: itemstackIsEnchanted(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isEnchanted() → Booleaanse waarde
EnchantableenchantableIf the item can be enchanted- Voorwerp
- Booleaanse waarde
Global name: itemstackIsEnchantable(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isEnchantable() → Booleaanse waarde
Repair Costrepair_costThe repair cost of the itemGlobal name: itemstackRepairCost(Voorwerp) → Geheel getalMethod name: Voorwerp.repairCost() → Geheel getal
RarityrarityThe rarity of the itemGlobal name: itemstackRarity(Voorwerp) → TekenreeksMethod name: Voorwerp.rarity() → Tekenreeks
Strength vs BlockstrengthThe strength this item has against the given block- Voorwerp
- Blok
- Dubbeleprecisiegetal
Global name: itemstackStrength(Voorwerp, Blok) → DubbeleprecisiegetalMethod name: Voorwerp.strength(Blok) → Dubbeleprecisiegetal
Can Harvestcan_harvestIf the item can harvest the given block- Voorwerp
- Blok
- Booleaanse waarde
Global name: itemstackCanHarvest(Voorwerp, Blok) → Booleaanse waardeMethod name: Voorwerp.canHarvest(Blok) → Booleaanse waarde
BlockblockThe block from the given itemGlobal name: itemstackBlock(Voorwerp) → BlokMethod name: Voorwerp.block() → Blok
Has Fluidis_fluidstackIf the given item has a fluid- Voorwerp
- Booleaanse waarde
Global name: itemstackIsFluidStack(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isFluidStack() → Booleaanse waarde
FluidfluidstackThe fluid from the given itemGlobal name: itemstackFluidStack(Voorwerp) → VloeistofMethod name: Voorwerp.fluidStack() → Vloeistof
Fluid Capacityfluidstack_capacityThe fluid capacity of the given item in mBGlobal name: itemstackFluidCapacity(Voorwerp) → Geheel getalMethod name: Voorwerp.fluidCapacity() → Geheel getal
NBT equals=NBT=If the data components of the given items are equal- Voorwerp
- Voorwerp
- Booleaanse waarde
Global name: itemstackIsNbtEqual(Voorwerp, Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isNbtEqual(Voorwerp) → Booleaanse waarde
Raw item equals no NBT=NoNBT=If the raw items of the given stacks are equal, ignoring data components but including damage values.- Voorwerp
- Voorwerp
- Booleaanse waarde
Global name: itemstackIsEqualNonNbt(Voorwerp, Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isEqualNonNbt(Voorwerp) → Booleaanse waarde
Raw item equals=Raw=If the raw items of the given items are equal, ignoring NBT and damage values.- Voorwerp
- Voorwerp
- Booleaanse waarde
Global name: itemstackIsEqualRaw(Voorwerp, Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isEqualRaw(Voorwerp) → Booleaanse waarde
ModmodThe name of the mod owning the given itemGlobal name: itemstackMod(Voorwerp) → TekenreeksMethod name: Voorwerp.mod() → Tekenreeks
Fuel Burn Timeburn_timeThe fuel burn time in ticks of the given itemGlobal name: itemstackBurnTime(Voorwerp) → Geheel getalMethod name: Voorwerp.burnTime() → Geheel getal
Is Fuelcan_burnIf the given item can be used as fuel- Voorwerp
- Booleaanse waarde
Global name: itemstackCanBurn(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.canBurn() → Booleaanse waarde
Item Tag Namesitem_tag_namesThe Tag names (strings) of the given itemGlobal name: itemstackTags(Voorwerp) → LijstMethod name: Voorwerp.tags() → Lijst
Item Tag Valuesitem_tag_valuesThe Tag values (items) of the given item tag nameGlobal name: stringItemsByTag(Tekenreeks) → LijstMethod name: Tekenreeks.itemsByTag() → Lijst
Item With Stacksizewith_sizeSet the stacksize for the given item- Voorwerp
- Geheel getal
- Voorwerp
Global name: itemstackWithSize(Voorwerp, Geheel getal) → VoorwerpMethod name: Voorwerp.withSize(Geheel getal) → Voorwerp
Is FE Containeris_fe_containerIf the given item can hold FE- Voorwerp
- Booleaanse waarde
Global name: itemstackIsFeContainer(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isFeContainer() → Booleaanse waarde
FE Storedstored_feThe amount of FE stored in this itemGlobal name: itemstackFeStored(Voorwerp) → Geheel getalMethod name: Voorwerp.feStored() → Geheel getal
FE Capacitycapacity_feThe maximum amount of FE that can be stored in this itemGlobal name: itemstackFeCapacity(Voorwerp) → Geheel getalMethod name: Voorwerp.feCapacity() → Geheel getal
Item Has Inventoryhas_inventoryIf the given item has an inventory- Voorwerp
- Booleaanse waarde
Global name: itemstackHasInventory(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.hasInventory() → Booleaanse waarde
Item Inventory Sizeinventory_sizeRetrieve the inventory size of the given item handler contentsGlobal name: itemstackInventorySize(Voorwerp) → Geheel getalMethod name: Voorwerp.inventorySize() → Geheel getal
Item InventoryinventoryRetrieve the inventory of the given item handler contentsGlobal name: itemstackInventory(Voorwerp) → LijstMethod name: Voorwerp.inventory() → Lijst
Item By Nameitem_by_nameGet the item corresponding to the given unique name, add space+number for indicating the metadata.Global name: stringItemByName(Tekenreeks) → VoorwerpMethod name: Tekenreeks.itemByName() → Voorwerp
Item List Countitem_list_countGet the total item count of exactly the given item in a list.- Lijst
- Voorwerp
- Geheel getal
Global name: listItemListCount(Lijst, Voorwerp) → Geheel getalMethod name: Lijst.itemListCount(Voorwerp) → Geheel getal
Item NBTNBT()Get the data of the given item as NBT.Global name: itemstackNbt(Voorwerp) → NBTMethod name: Voorwerp.nbt() → NBT
Has NBThas_nbtIf the item stack has data components.- Voorwerp
- Booleaanse waarde
Global name: itemstackHasNbt(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.hasNbt() → Booleaanse waarde
Data Keysdata_keysGet all data component keys of the item stack.Global name: itemstackDataKeys(Voorwerp) → LijstMethod name: Voorwerp.dataKeys() → Lijst
Data Valuedata_valueGet the value of the given data component key.Global name: itemstackDataValue(Voorwerp, Tekenreeks) → NBTMethod name: Voorwerp.dataValue(Tekenreeks) → NBT
With Datawith_dataAdd the given data component key and value to the given item stack.- Vloeistof
- Tekenreeks
- NBT
- NBT
Global name: fluidstackWithData(Vloeistof, Tekenreeks, NBT) → NBTMethod name: Vloeistof.withData(Tekenreeks, NBT) → NBT
TooltiptooltipGet the tooltip of the given item as a list of strings.Global name: itemstackTooltip(Voorwerp) → LijstMethod name: Voorwerp.tooltip() → Lijst
Entity Tooltipentity_item_tooltipIn the context of the given Player Entity, get the tooltip of the given item as a list of strings.Global name: entityEntityItemTooltip(Entiteit, Voorwerp) → LijstMethod name: Entiteit.entityItemTooltip(Voorwerp) → Lijst
Is Mobis_mobIf the entity is a mob- Entiteit
- Booleaanse waarde
Global name: entityIsMob(Entiteit) → Booleaanse waardeMethod name: Entiteit.isMob() → Booleaanse waarde
Is Animalis_animalIf the entity is an animal- Entiteit
- Booleaanse waarde
Global name: entityIsAnimal(Entiteit) → Booleaanse waardeMethod name: Entiteit.isAnimal() → Booleaanse waarde
Is Itemis_itemIf the entity is an item- Entiteit
- Booleaanse waarde
Global name: entityIsItem(Entiteit) → Booleaanse waardeMethod name: Entiteit.isItem() → Booleaanse waarde
Is Playeris_playerIf the entity is a player- Entiteit
- Booleaanse waarde
Global name: entityIsPlayer(Entiteit) → Booleaanse waardeMethod name: Entiteit.isPlayer() → Booleaanse waarde
Is Minecartis_minecartIf the entity is a minecart- Entiteit
- Booleaanse waarde
Global name: entityIsMinecart(Entiteit) → Booleaanse waardeMethod name: Entiteit.isMinecart() → Booleaanse waarde
ItemitemThe item from the item entityGlobal name: entityItem(Entiteit) → VoorwerpMethod name: Entiteit.item() → Voorwerp
HealthhealthThe entity health- Entiteit
- Dubbeleprecisiegetal
Global name: entityHealth(Entiteit) → DubbeleprecisiegetalMethod name: Entiteit.health() → Dubbeleprecisiegetal
WidthwidthThe entity width- Entiteit
- Dubbeleprecisiegetal
Global name: entityWidth(Entiteit) → DubbeleprecisiegetalMethod name: Entiteit.width() → Dubbeleprecisiegetal
HeightheightThe entity height- Entiteit
- Dubbeleprecisiegetal
Global name: entityHeight(Entiteit) → DubbeleprecisiegetalMethod name: Entiteit.height() → Dubbeleprecisiegetal
Is Burningis_burningIf the entity is burning- Entiteit
- Booleaanse waarde
Global name: entityEntityIsBurning(Entiteit) → Booleaanse waardeMethod name: Entiteit.entityIsBurning() → Booleaanse waarde
Is Wetis_wetIf the entity is wet- Entiteit
- Booleaanse waarde
Global name: entityIsWet(Entiteit) → Booleaanse waardeMethod name: Entiteit.isWet() → Booleaanse waarde
Is Crouchingis_crouchingIf the entity is crouching- Entiteit
- Booleaanse waarde
Global name: entityIsCrouching(Entiteit) → Booleaanse waardeMethod name: Entiteit.isCrouching() → Booleaanse waarde
Is Eatingis_eatingIf the entity is eating- Entiteit
- Booleaanse waarde
Global name: entityIsEating(Entiteit) → Booleaanse waardeMethod name: Entiteit.isEating() → Booleaanse waarde
Armor Inventoryarmor_inventoryThe list of items the entity is carrying as armor.Global name: entityArmorInventory(Entiteit) → LijstMethod name: Entiteit.armorInventory() → Lijst
Player InventoryinventoryThe list of items the player is carrying.Global name: entityInventory(Entiteit) → LijstMethod name: Entiteit.inventory() → Lijst
ModmodThe name of the mod owning the given entityGlobal name: entityMod(Entiteit) → TekenreeksMethod name: Entiteit.mod() → Tekenreeks
Target Blocktarget_blockThe block the given entity is currently looking at.Global name: entityTargetBlock(Entiteit) → BlokMethod name: Entiteit.targetBlock() → Blok
Target Entitytarget_entityThe entity the given entity is currently looking at.Global name: entityTargetEntity(Entiteit) → EntiteitMethod name: Entiteit.targetEntity() → Entiteit
Has Gui Openhas_gui_openIf the given player has an external gui open.- Entiteit
- Booleaanse waarde
Global name: entityHasGuiOpen(Entiteit) → Booleaanse waardeMethod name: Entiteit.hasGuiOpen() → Booleaanse waarde
Held Item Mainhandheld_item_1The item the given entity is currently holding in its main hand.Global name: entityHeldItem(Entiteit) → VoorwerpMethod name: Entiteit.heldItem() → Voorwerp
Held Item Offhandheld_item_2The item the given entity is currently holding in its off-hand.Global name: entityHeldItemOffHand(Entiteit) → VoorwerpMethod name: Entiteit.heldItemOffHand() → Voorwerp
Mounted EntitiesmountedThe entities that are currently mounted on the given entity.Global name: entityMounted(Entiteit) → LijstMethod name: Entiteit.mounted() → Lijst
Item Frame Contentsitemframe_contentsThe contents from the given Item Frame.Global name: entityItemFrameContents(Entiteit) → VoorwerpMethod name: Entiteit.itemFrameContents() → Voorwerp
Item Frame Rotationitemframe_rotationThe rotation from the given Item Frame.Global name: entityItemFrameRotation(Entiteit) → Geheel getalMethod name: Entiteit.itemFrameRotation() → Geheel getal
Entity Hurt SoundhurtsoundThe hurt sound of the given entity.Global name: entityHurtSound(Entiteit) → TekenreeksMethod name: Entiteit.hurtSound() → Tekenreeks
Entity Death SounddeathsoundThe death sound of the given entity.Global name: entityDeathSound(Entiteit) → TekenreeksMethod name: Entiteit.deathSound() → Tekenreeks
Entity AgeageThe age of the given entity.Global name: entityAge(Entiteit) → Geheel getalMethod name: Entiteit.age() → Geheel getal
Entity Is Childis_childIf the given entity is a child.- Entiteit
- Booleaanse waarde
Global name: entityIsChild(Entiteit) → Booleaanse waardeMethod name: Entiteit.isChild() → Booleaanse waarde
Entity Can BreedcanbreedIf the given entity is ready to be bred.- Entiteit
- Booleaanse waarde
Global name: entityCanBreed(Entiteit) → Booleaanse waardeMethod name: Entiteit.canBreed() → Booleaanse waarde
Entity Is In Loveis_in_loveIf the given entity is in love and is ready to breed.- Entiteit
- Booleaanse waarde
Global name: entityIsInLove(Entiteit) → Booleaanse waardeMethod name: Entiteit.isInLove() → Booleaanse waarde
Entity Can Breed Withcan_breed_withIf the given entity can be bred using the given item.- Entiteit
- Voorwerp
- Booleaanse waarde
Global name: entityCanBreedWith(Entiteit, Voorwerp) → Booleaanse waardeMethod name: Entiteit.canBreedWith(Voorwerp) → Booleaanse waarde
Entity Is Shearableis_shearableIf the given entity is shearable- Entiteit
- Booleaanse waarde
Global name: entityIsShearable(Entiteit) → Booleaanse waardeMethod name: Entiteit.isShearable() → Booleaanse waarde
Entity NBTNBT()Get the given entity as NBT.Global name: entityNbt(Entiteit) → NBTMethod name: Entiteit.nbt() → NBT
Entity Typeentity_typeThe entity type name.Global name: entityType(Entiteit) → TekenreeksMethod name: Entiteit.type() → Tekenreeks
Entity Itemsentity_itemsThe items that are contained within this entity.Global name: entityItems(Entiteit) → LijstMethod name: Entiteit.items() → Lijst
Entity Fluidsentity_fluidsThe fluids that are contained within this entity.Global name: entityFluids(Entiteit) → LijstMethod name: Entiteit.fluids() → Lijst
Entity Energy Storedentity_stored_feThe amount of energy that is stored in this entity.Global name: entityEnergy(Entiteit) → Geheel getalMethod name: Entiteit.energy() → Geheel getal
Entity Energy Capacityentity_capacity_feThe energy capacity of this entity.Global name: entityEnergyCapacity(Entiteit) → Geheel getalMethod name: Entiteit.energyCapacity() → Geheel getal
AmountamountThe amount of mBGlobal name: fluidstackAmount(Vloeistof) → Geheel getalMethod name: Vloeistof.amount() → Geheel getal
BlockblockThe block of the fluidGlobal name: fluidstackBlock(Vloeistof) → BlokMethod name: Vloeistof.block() → Blok
Light levellight_levelThe light level emitted by the fluidGlobal name: fluidstackLightLevel(Vloeistof) → Geheel getalMethod name: Vloeistof.lightLevel() → Geheel getal
DensitydensityThe fluid densityGlobal name: fluidstackDensity(Vloeistof) → Geheel getalMethod name: Vloeistof.density() → Geheel getal
TemperaturetemperatureThe fluid temperatureGlobal name: fluidstackTemperature(Vloeistof) → Geheel getalMethod name: Vloeistof.temperature() → Geheel getal
ViscosityviscosityThe fluid viscosityGlobal name: fluidstackViscosity(Vloeistof) → Geheel getalMethod name: Vloeistof.viscosity() → Geheel getal
Is Lighter Than Airlighter_than_airIf the fluid is lighter than air- Vloeistof
- Booleaanse waarde
Global name: fluidstackIsLighterThanAir(Vloeistof) → Booleaanse waardeMethod name: Vloeistof.isLighterThanAir() → Booleaanse waarde
RarityrarityThe fluid rarityGlobal name: fluidstackRarity(Vloeistof) → TekenreeksMethod name: Vloeistof.rarity() → Tekenreeks
Bucket empty soundsound_bucket_emptyThe bucket empty sound for the fluidGlobal name: fluidstackBucketEmptySound(Vloeistof) → TekenreeksMethod name: Vloeistof.bucketEmptySound() → Tekenreeks
Fluid vaporize soundsound_fluid_vaporizeThe fluid vaporize sound for the fluidGlobal name: fluidstackFluidVaporizeSound(Vloeistof) → TekenreeksMethod name: Vloeistof.fluidVaporizeSound() → Tekenreeks
Bucket fill soundsound_bucket_fillThe bucket fill sound for the fluidGlobal name: fluidstackBucketFillSound(Vloeistof) → TekenreeksMethod name: Vloeistof.bucketFillSound() → Tekenreeks
BucketbucketThe filled bucket for the fluidGlobal name: fluidstackBucket(Vloeistof) → VoorwerpMethod name: Vloeistof.bucket() → Voorwerp
Raw fluid equals=Raw=If the raw fluids are equal- Vloeistof
- Vloeistof
- Booleaanse waarde
Global name: fluidstackIsRawEqual(Vloeistof, Vloeistof) → Booleaanse waardeMethod name: Vloeistof.isRawEqual(Vloeistof) → Booleaanse waarde
ModmodThe name of the mod owning the given fluidGlobal name: fluidstackMod(Vloeistof) → TekenreeksMethod name: Vloeistof.mod() → Tekenreeks
Fluid NBTNBT()Get the data of the given fluid as NBT.Global name: fluidstackNbt(Vloeistof) → NBTMethod name: Vloeistof.nbt() → NBT
Fluid With Amountwith_amountCopy the given fluid with the given amount- Vloeistof
- Geheel getal
- Vloeistof
Global name: fluidstackWithAmount(Vloeistof, Geheel getal) → VloeistofMethod name: Vloeistof.withAmount(Geheel getal) → Vloeistof
Data Keysdata_keysGet all data component keys of the fluid stack.Global name: fluidstackDataKeys(Vloeistof) → LijstMethod name: Vloeistof.dataKeys() → Lijst
Data Valuedata_valueGet the value of the given data component key.Global name: fluidstackDataValue(Vloeistof, Tekenreeks) → NBTMethod name: Vloeistof.dataValue(Tekenreeks) → NBT
Fluid Tag Namesfluid_tag_namesThe Tag names (strings) of the given fluidGlobal name: fluidstackTags(Vloeistof) → LijstMethod name: Vloeistof.tags() → Lijst
Fluid Tag Valuesfluid_tag_valuesThe Tag values (fluids) of the given fluid tag nameGlobal name: stringFluidsByTag(Tekenreeks) → LijstMethod name: Tekenreeks.fluidsByTag() → Lijst
ApplyapplyApply for a given operator a given value.- Operator
- Willekeurig
- Willekeurig
Global name: operatorApply(Operator, Willekeurig) → WillekeurigMethod name: Operator.apply(Willekeurig) → Willekeurig
Apply 2apply2Apply for a given operator the given two values.- Operator
- Willekeurig
- Willekeurig
- Willekeurig
Global name: operatorApply2(Operator, Willekeurig, Willekeurig) → WillekeurigMethod name: Operator.apply2(Willekeurig, Willekeurig) → Willekeurig
Apply 3apply3Apply for a given operator the given three values.- Operator
- Willekeurig
- Willekeurig
- Willekeurig
- Willekeurig
Global name: operatorApply3(Operator, Willekeurig, Willekeurig, Willekeurig) → WillekeurigMethod name: Operator.apply3(Willekeurig, Willekeurig, Willekeurig) → Willekeurig
Apply Napply_nApply for a given operator the given list of values.Global name: operatorApply_n(Operator, Lijst) → WillekeurigMethod name: Operator.apply_n(Lijst) → Willekeurig
Apply 0apply0Apply for a given operator without arguments.Global name: operatorApply0(Operator) → WillekeurigMethod name: Operator.apply0() → Willekeurig
MapmapApply the given operator on all elements of a list, resulting in a new list of mapped values.Global name: operatorMap(Operator, Lijst) → LijstMethod name: Operator.map(Lijst) → Lijst
FilterfilterFilter a list of elements by matching them all with the given predicate.Global name: operatorFilter(Operator, Lijst) → LijstMethod name: Operator.filter(Lijst) → Lijst
Conjunction.&&.Takes the conjunction of two predicates.Global name: operatorConjunction(Operator, Operator) → OperatorMethod name: Operator.conjunction(Operator) → Operator
Disjunction.||.Takes the disjunction of two predicates.Global name: operatorDisjunction(Operator, Operator) → OperatorMethod name: Operator.disjunction(Operator) → Operator
Negation!.Takes the negation of a predicate.Global name: operatorNegation(Operator) → OperatorMethod name: Operator.negation() → Operator
Pipe.Create a new operator that pipes the output from the first operator to the second operator.Global name: operatorPipe(Operator, Operator) → OperatorMethod name: Operator.pipe(Operator) → Operator
Pipe 2.2Create a new operator that gives its input to the first and second operators, and pipes the outputs from both of them to the third operator.- Operator
- Operator
- Operator
- Operator
Global name: operatorPipe2(Operator, Operator, Operator) → OperatorMethod name: Operator.pipe2(Operator, Operator) → Operator
FlipflipFlip the two first input parameters of an operator.Global name: operatorFlip(Operator) → OperatorMethod name: Operator.flip() → Operator
ReducereduceApply the given operator on all elements of a list to reduce the list to one value.- Operator
- Lijst
- Willekeurig
- Willekeurig
Global name: operatorReduce(Operator, Lijst, Willekeurig) → WillekeurigMethod name: Operator.reduce(Lijst, Willekeurig) → Willekeurig
Reduce 1reduce1Apply the given operator on all elements of a list to reduce the list to one value. reduce1(op, list) is equivalent to reduce(op, tail(list), head(list)).Global name: operatorReduce1(Operator, Lijst) → WillekeurigMethod name: Operator.reduce1(Lijst) → Willekeurig
Operator By Nameop_by_nameGet the operator that has the given unique name.Global name: stringOperatorByName(Tekenreeks) → OperatorMethod name: Tekenreeks.operatorByName() → Operator
NBT Compound SizeNBT{}.sizeThe number of entries inside the given NBT compound tagGlobal name: nbtSize(NBT) → Geheel getalMethod name: NBT.size() → Geheel getal
NBT Compound KeysNBT{}.keysThe list of keys inside the given NBT compound tagGlobal name: nbtKeys(NBT) → LijstMethod name: NBT.keys() → Lijst
NBT Compound Has KeyNBT{}.has_keyIf the given NBT compound tag contains the given key- NBT
- Tekenreeks
- Booleaanse waarde
Global name: nbtHasKey(NBT, Tekenreeks) → Booleaanse waardeMethod name: NBT.hasKey(Tekenreeks) → Booleaanse waarde
NBT Compound Entry TypeNBT{}.typeThe value type in the given NBT compound tag corresponding to the given keyGlobal name: nbtType(NBT, Tekenreeks) → TekenreeksMethod name: NBT.type(Tekenreeks) → Tekenreeks
NBT Compound ValueNBT{}.get_tagThe value of any type in the given NBT compound tag with the given keyGlobal name: nbtGetTag(NBT, Tekenreeks) → NBTMethod name: NBT.getTag(Tekenreeks) → NBT
NBT Compound Value BooleanNBT{}.get_booleanThe Boolean value in the given NBT compound tag with the given key- NBT
- Tekenreeks
- Booleaanse waarde
Global name: nbtGetBoolean(NBT, Tekenreeks) → Booleaanse waardeMethod name: NBT.getBoolean(Tekenreeks) → Booleaanse waarde
NBT Compound Value IntegerNBT{}.get_integerThe Integer value in the given NBT compound tag with the given key- NBT
- Tekenreeks
- Geheel getal
Global name: nbtGetInteger(NBT, Tekenreeks) → Geheel getalMethod name: NBT.getInteger(Tekenreeks) → Geheel getal
NBT Compound Value LongNBT{}.get_longThe Long value in the given NBT compound tag with the given key- NBT
- Tekenreeks
- Lang geheel getal
Global name: nbtGetLong(NBT, Tekenreeks) → Lang geheel getalMethod name: NBT.getLong(Tekenreeks) → Lang geheel getal
NBT Compound Value DoubleNBT{}.get_doubleThe Double value in the given NBT compound tag with the given key- NBT
- Tekenreeks
- Dubbeleprecisiegetal
Global name: nbtGetDouble(NBT, Tekenreeks) → DubbeleprecisiegetalMethod name: NBT.getDouble(Tekenreeks) → Dubbeleprecisiegetal
NBT Compound Value StringNBT{}.get_stringThe String value in the given NBT compound tag with the given keyGlobal name: nbtGetString(NBT, Tekenreeks) → TekenreeksMethod name: NBT.getString(Tekenreeks) → Tekenreeks
NBT Compound Value CompoundNBT{}.get_compoundThe Compound value in the given NBT compound tag with the given keyGlobal name: nbtGetCompound(NBT, Tekenreeks) → NBTMethod name: NBT.getCompound(Tekenreeks) → NBT
NBT Compound Value List NBTNBT{}.get_list_tagThe NBT List value in the given NBT compound tag with the given keyGlobal name: nbtGetListTag(NBT, Tekenreeks) → LijstMethod name: NBT.getListTag(Tekenreeks) → Lijst
NBT Compound Value Byte ArrayNBT{}.get_list_byteThe Byte Array in the given NBT compound tag with the given key as Integer ListGlobal name: nbtGetListByte(NBT, Tekenreeks) → LijstMethod name: NBT.getListByte(Tekenreeks) → Lijst
NBT Compound Value Integer ArrayNBT{}.get_list_intThe Integer Array in the given NBT compound tag with the given key as Integer ListGlobal name: nbtGetListInt(NBT, Tekenreeks) → LijstMethod name: NBT.getListInt(Tekenreeks) → Lijst
NBT Compound Value Long ArrayNBT{}.get_list_longThe Long Array in the given NBT compound tag with the given key as Long ListGlobal name: nbtGetListLong(NBT, Tekenreeks) → LijstMethod name: NBT.getListLong(Tekenreeks) → Lijst
NBT Compound WithoutNBT{}.withoutGet a copy of the given NBT compound tag without the given keyGlobal name: nbtWithout(NBT, Tekenreeks) → NBTMethod name: NBT.without(Tekenreeks) → NBT
NBT Compound With BooleanNBT{}.with_booleanGet a copy of the given NBT compound tag with the given Boolean entry- NBT
- Tekenreeks
- Booleaanse waarde
- NBT
Global name: nbtWithBoolean(NBT, Tekenreeks, Booleaanse waarde) → NBTMethod name: NBT.withBoolean(Tekenreeks, Booleaanse waarde) → NBT
NBT Compound With ShortNBT{}.with_shortGet a copy of the given NBT compound tag with the given Integer as a short entry- NBT
- Tekenreeks
- Geheel getal
- NBT
Global name: nbtWithShort(NBT, Tekenreeks, Geheel getal) → NBTMethod name: NBT.withShort(Tekenreeks, Geheel getal) → NBT
NBT Compound With IntegerNBT{}.with_integerGet a copy of the given NBT compound tag with the given Integer entry- NBT
- Tekenreeks
- Geheel getal
- NBT
Global name: nbtWithInteger(NBT, Tekenreeks, Geheel getal) → NBTMethod name: NBT.withInteger(Tekenreeks, Geheel getal) → NBT
NBT Compound With LongNBT{}.with_longGet a copy of the given NBT compound tag with the given Long entry- NBT
- Tekenreeks
- Lang geheel getal
- NBT
Global name: nbtWithLong(NBT, Tekenreeks, Lang geheel getal) → NBTMethod name: NBT.withLong(Tekenreeks, Lang geheel getal) → NBT
NBT Compound With DoubleNBT{}.with_doubleGet a copy of the given NBT compound tag with the given Double entry- NBT
- Tekenreeks
- Dubbeleprecisiegetal
- NBT
Global name: nbtWithDouble(NBT, Tekenreeks, Dubbeleprecisiegetal) → NBTMethod name: NBT.withDouble(Tekenreeks, Dubbeleprecisiegetal) → NBT
NBT Compound With FloatNBT{}.with_floatGet a copy of the given NBT compound tag with the given Double as a float entry- NBT
- Tekenreeks
- Dubbeleprecisiegetal
- NBT
Global name: nbtWithFloat(NBT, Tekenreeks, Dubbeleprecisiegetal) → NBTMethod name: NBT.withFloat(Tekenreeks, Dubbeleprecisiegetal) → NBT
NBT Compound With StringNBT{}.with_stringGet a copy of the given NBT compound tag with the given String entry- NBT
- Tekenreeks
- Tekenreeks
- NBT
Global name: nbtWithString(NBT, Tekenreeks, Tekenreeks) → NBTMethod name: NBT.withString(Tekenreeks, Tekenreeks) → NBT
NBT Compound With NBTNBT{}.with_tagGet a copy of the given NBT compound tag with the given NBT entryGlobal name: nbtWithTag(NBT, Tekenreeks, NBT) → NBTMethod name: NBT.withTag(Tekenreeks, NBT) → NBT
NBT Compound With NBT ListNBT{}.with_tag_listGet a copy of the given NBT compound tag with the given NBT List entryGlobal name: nbtWithTagList(NBT, Tekenreeks, Lijst) → NBTMethod name: NBT.withTagList(Tekenreeks, Lijst) → NBT
NBT Compound With Byte ListNBT{}.with_byte_listGet a copy of the given NBT compound tag with the given Integer List as an NBT Byte Array entryGlobal name: nbtWithByteList(NBT, Tekenreeks, Lijst) → NBTMethod name: NBT.withByteList(Tekenreeks, Lijst) → NBT
NBT Compound With Int ListNBT{}.with_int_listGet a copy of the given NBT compound tag with the given NBT Integer Array entryGlobal name: nbtWithIntList(NBT, Tekenreeks, Lijst) → NBTMethod name: NBT.withIntList(Tekenreeks, Lijst) → NBT
NBT Compound With Long ListNBT{}.with_list_longGet a copy of the given NBT compound tag with the given NBT Long Array entryGlobal name: nbtWithListLong(NBT, Tekenreeks, Lijst) → NBTMethod name: NBT.withListLong(Tekenreeks, Lijst) → NBT
NBT Compound SubsetNBT{}.⊆If the first NBT compound tag is a subset of, or equal to the second NBT compound tag. This will recursively check nested tags.Global name: nbtIsSubset(NBT, NBT) → Booleaanse waardeMethod name: NBT.isSubset(NBT) → Booleaanse waarde
NBT Compound UnionNBT{}.∪The union of the given NBT compound tags. Nested tags will be joined recursively.Global name: nbtUnion(NBT, NBT) → NBTMethod name: NBT.union(NBT) → NBT
NBT Compound IntersectionNBT{}.∩The intersection of the given NBT compound tags. Nested tags will be intersected recursively.Global name: nbtIntersection(NBT, NBT) → NBTMethod name: NBT.intersection(NBT) → NBT
NBT Compound MinusNBT{}.∖The difference of the given NBT compound tags. Nested tags will be subtracted recursively.Global name: nbtMinus(NBT, NBT) → NBTMethod name: NBT.minus(NBT) → NBT
NBT Boolean As BooleanNBT.as_booleanGet the Boolean value of the given NBT Byte tagGlobal name: nbtAsBoolean(NBT) → Booleaanse waardeMethod name: NBT.asBoolean() → Booleaanse waarde
NBT Byte As IntegerNBT.as_byteGet the Integer value of the given NBT Byte tagGlobal name: nbtAsByte(NBT) → Geheel getalMethod name: NBT.asByte() → Geheel getal
NBT Short as IntegerNBT.as_shortGet the Integer value of the given NBT Short tagGlobal name: nbtAsShort(NBT) → Geheel getalMethod name: NBT.asShort() → Geheel getal
NBT Integer As IntegerNBT.as_intGet the Integer value of the given NBT Integer tagGlobal name: nbtAsInt(NBT) → Geheel getalMethod name: NBT.asInt() → Geheel getal
NBT Long As LongNBT.as_longGet the Long value of the given NBT Long tagGlobal name: nbtAsLong(NBT) → Lang geheel getalMethod name: NBT.asLong() → Lang geheel getal
NBT Double As DoubleNBT.as_doubleGet the Double value of the given NBT Double tagGlobal name: nbtAsDouble(NBT) → DubbeleprecisiegetalMethod name: NBT.asDouble() → Dubbeleprecisiegetal
NBT Float As DoubleNBT.as_floatGet the Double value of the given NBT Float tagGlobal name: nbtAsFloat(NBT) → DubbeleprecisiegetalMethod name: NBT.asFloat() → Dubbeleprecisiegetal
NBT String As StringNBT.as_stringGet the String value of the given NBT String tagGlobal name: nbtAsString(NBT) → TekenreeksMethod name: NBT.asString() → Tekenreeks
NBT List As NBT ListNBT.as_tag_listGet the NBT List value of the given NBT List tagGlobal name: nbtAsTagList(NBT) → LijstMethod name: NBT.asTagList() → Lijst
NBT Byte Array As Byte ListNBT.as_byte_listGet the Byte List value of the given NBT Byte Array tagGlobal name: nbtAsByteList(NBT) → LijstMethod name: NBT.asByteList() → Lijst
NBT Integer Array As Integer ListNBT.as_int_listGet the Integer List value of the given NBT Integer Array tagGlobal name: nbtAsIntList(NBT) → LijstMethod name: NBT.asIntList() → Lijst
NBT Long Array As Long ListNBT.as_long_listGet the Long List value of the given NBT Long Array tagGlobal name: nbtAsLongList(NBT) → LijstMethod name: NBT.asLongList() → Lijst
NBT Byte From BooleanNBT.from_booleanCreate an NBT Byte tag from the given Boolean valueGlobal name: booleanAsNbt(Booleaanse waarde) → NBTMethod name: Booleaanse waarde.asNbt() → NBT
NBT Short From IntegerNBT.from_shortCreate an NBT Short tag from the given Integer valueGlobal name: shortAsNbt(Geheel getal) → NBTMethod name: Geheel getal.shortAsNbt() → NBT
NBT Byte From IntegerNBT.from_byteCreate an NBT Byte tag from the given Integer valueGlobal name: byteAsNbt(Geheel getal) → NBTMethod name: Geheel getal.byteAsNbt() → NBT
NBT Integer From IntegerNBT.from_intCreate an NBT Integer tag from the given Integer valueGlobal name: integerAsNbt(Geheel getal) → NBTMethod name: Geheel getal.asNbt() → NBT
NBT Long From LongNBT.from_longCreate an NBT Long tag from the given Long valueGlobal name: longAsNbt(Lang geheel getal) → NBTMethod name: Lang geheel getal.asNbt() → NBT
NBT Double From DoubleNBT.from_doubleCreate an NBT Double tag from the given Double valueGlobal name: doubleAsNbt(Dubbeleprecisiegetal) → NBTMethod name: Dubbeleprecisiegetal.asNbt() → NBT
NBT Float From DoubleNBT.from_floatCreate an NBT Float tag from the given Double valueGlobal name: floatAsNbt(Dubbeleprecisiegetal) → NBTMethod name: Dubbeleprecisiegetal.floatAsNbt() → NBT
NBT String From StringNBT.from_stringCreate an NBT String tag from the given String valueGlobal name: stringAsNbt(Tekenreeks) → NBTMethod name: Tekenreeks.asNbt() → NBT
NBT List From Tag ListNBT.from_tag_listCreate an NBT List tag from the given NBT List valueGlobal name: tagListAsNbt(Lijst) → NBTMethod name: Lijst.tagListAsNbt() → NBT
NBT Byte Array From Byte ListNBT.from_byte_listCreate an NBT Byte Array tag from the given Integer List valueGlobal name: byteListAsNbt(Lijst) → NBTMethod name: Lijst.byteListAsNbt() → NBT
NBT Integer Array From Integer ListNBT.from_int_listCreate an NBT Integer Array tag from the given Integer List valueGlobal name: intListAsNbt(Lijst) → NBTMethod name: Lijst.intListAsNbt() → NBT
NBT Long Array From Long ListNBT.from_long_listCreate an NBT Long Array tag from the given Long List valueGlobal name: longListAsNbt(Lijst) → NBTMethod name: Lijst.longListAsNbt() → NBT
NBT Path Match FirstNBT.path_match_firstApply the given NBT Path expression on the given NBT value, and return the first matchGlobal name: stringNbtPathMatchFirst(Tekenreeks, NBT) → NBTMethod name: Tekenreeks.nbtPathMatchFirst(NBT) → NBT
NBT Path Match AllNBT.path_match_allApply the given NBT Path expression on the given NBT value, and return all matches as a listGlobal name: stringNbtPathMatchAll(Tekenreeks, NBT) → LijstMethod name: Tekenreeks.nbtPathMatchAll(NBT) → Lijst
NBT Path TestNBT.path_testTest if the given NBT Path expression matches with the given NBT value- Tekenreeks
- NBT
- Booleaanse waarde
Global name: stringNbtPathTest(Tekenreeks, NBT) → Booleaanse waardeMethod name: Tekenreeks.nbtPathTest(NBT) → Booleaanse waarde
Ingredient itemsIngr.itemsThe list of itemsGlobal name: ingredientsItems(Ingrediënten) → LijstMethod name: Ingrediënten.items() → Lijst
Ingredient fluidsIngr.fluidsThe list of fluidsGlobal name: ingredientsFluids(Ingrediënten) → LijstMethod name: Ingrediënten.fluids() → Lijst
Ingredient energy elementsIngr.energiesThe list of energy elementsGlobal name: ingredientsEnergies(Ingrediënten) → LijstMethod name: Ingrediënten.energies() → Lijst
Ingredients With ItemIngr.with_itemGet a copy of the given ingredients with the given item at the given ingredient position- Ingrediënten
- Geheel getal
- Voorwerp
- Ingrediënten
Global name: ingredientsWithItem(Ingrediënten, Geheel getal, Voorwerp) → IngrediëntenMethod name: Ingrediënten.withItem(Geheel getal, Voorwerp) → Ingrediënten
Ingredients With FluidIngr.with_fluidGet a copy of the given ingredients with the given fluid at the given ingredient position- Ingrediënten
- Geheel getal
- Vloeistof
- Ingrediënten
Global name: ingredientsWithFluid(Ingrediënten, Geheel getal, Vloeistof) → IngrediëntenMethod name: Ingrediënten.withFluid(Geheel getal, Vloeistof) → Ingrediënten
Ingredients With EnergyIngr.with_energyGet a copy of the given ingredients with the given energy at the given ingredient position- Ingrediënten
- Geheel getal
- Lang geheel getal
- Ingrediënten
Global name: ingredientsWithEnergy(Ingrediënten, Geheel getal, Lang geheel getal) → IngrediëntenMethod name: Ingrediënten.withEnergy(Geheel getal, Lang geheel getal) → Ingrediënten
Ingredients With ItemsIngr.with_itemsGet a copy of the given ingredients with the given list of items at the given ingredient position- Ingrediënten
- Lijst
- Ingrediënten
Global name: ingredientsWithItems(Ingrediënten, Lijst) → IngrediëntenMethod name: Ingrediënten.withItems(Lijst) → Ingrediënten
Ingredients With FluidsIngr.with_fluidsGet a copy of the given ingredients with the given list of fluids at the given ingredient position- Ingrediënten
- Lijst
- Ingrediënten
Global name: ingredientsWithFluids(Ingrediënten, Lijst) → IngrediëntenMethod name: Ingrediënten.withFluids(Lijst) → Ingrediënten
Ingredients With Energy ElementsIngr.with_energiesGet a copy of the given ingredients with the given list of energy elements at the given ingredient position- Ingrediënten
- Lijst
- Ingrediënten
Global name: ingredientsWithEnergies(Ingrediënten, Lijst) → IngrediëntenMethod name: Ingrediënten.withEnergies(Lijst) → Ingrediënten
Recipe Input Ingredientsrecipe_inThe input ingredients of the given recipeGlobal name: recipeInput(Recept) → IngrediëntenMethod name: Recept.input() → Ingrediënten
Recipe Output Ingredientsrecipe_outThe output ingredients of the given recipeGlobal name: recipeOutput(Recept) → IngrediëntenMethod name: Recept.output() → Ingrediënten
Recipe With Input IngredientsRecipe.with_inGet a copy of the given recipe with the given ingredients as inputGlobal name: recipeWithInput(Recept, Ingrediënten) → ReceptMethod name: Recept.withInput(Ingrediënten) → Recept
Recipe With Output IngredientsRecipe.with_outGet a copy of the given recipe with the given ingredients as outputGlobal name: recipeWithOutput(Recept, Ingrediënten) → ReceptMethod name: Recept.withOutput(Ingrediënten) → Recept
Recipe With Input and Output IngredientsRecipe.with_ioCreate a recipe with the first ingredients as input, and the second ingredients as output- Ingrediënten
- Ingrediënten
- Recept
Global name: ingredientsWithInputOutput(Ingrediënten, Ingrediënten) → ReceptMethod name: Ingrediënten.withInputOutput(Ingrediënten) → Recept
Parseparse_boolean- Tekenreeks
- Booleaanse waarde
Global name: stringParseAsBoolean(Tekenreeks) → Booleaanse waardeMethod name: Tekenreeks.parseAsBoolean() → Booleaanse waarde
Parseparse_double- Tekenreeks
- Dubbeleprecisiegetal
Global name: stringParseAsDouble(Tekenreeks) → DubbeleprecisiegetalMethod name: Tekenreeks.parseAsDouble() → Dubbeleprecisiegetal
Parseparse_integerGlobal name: stringParseAsInteger(Tekenreeks) → Geheel getalMethod name: Tekenreeks.parseAsInteger() → Geheel getal
Parseparse_long- Tekenreeks
- Lang geheel getal
Global name: stringParseAsLong(Tekenreeks) → Lang geheel getalMethod name: Tekenreeks.parseAsLong() → Lang geheel getal
Parseparse_nbtGlobal name: stringParseAsNbt(Tekenreeks) → NBTMethod name: Tekenreeks.parseAsNbt() → NBT
Choice?If the first value is true, the second value is taken, otherwise the third value.\nType two and three must be equal.- Booleaanse waarde
- Willekeurig
- Willekeurig
- Willekeurig
Global name: booleanChoice(Booleaanse waarde, Willekeurig, Willekeurig) → WillekeurigMethod name: Booleaanse waarde.choice(Willekeurig, Willekeurig) → Willekeurig
IdentityidA copy of the input value.Global name: anyIdentity(Willekeurig) → WillekeurigMethod name: Willekeurig.identity() → Willekeurig
ConstantKA copy of the first input value.- Willekeurig
- Willekeurig
- Willekeurig
Global name: anyConstant(Willekeurig, Willekeurig) → WillekeurigMethod name: Willekeurig.constant(Willekeurig) → Willekeurig
Cast()- Geheel getal
- Dubbeleprecisiegetal
Global name: integerIntegerToDouble(Geheel getal) → DubbeleprecisiegetalMethod name: Geheel getal.integerToDouble() → Dubbeleprecisiegetal
Cast()- Geheel getal
- Lang geheel getal
Global name: integerIntegerToLong(Geheel getal) → Lang geheel getalMethod name: Geheel getal.integerToLong() → Lang geheel getal
Cast()- Dubbeleprecisiegetal
- Geheel getal
Global name: doubleDoubleToInteger(Dubbeleprecisiegetal) → Geheel getalMethod name: Dubbeleprecisiegetal.doubleToInteger() → Geheel getal
Cast()- Dubbeleprecisiegetal
- Lang geheel getal
Global name: doubleDoubleToLong(Dubbeleprecisiegetal) → Lang geheel getalMethod name: Dubbeleprecisiegetal.doubleToLong() → Lang geheel getal
Cast()- Lang geheel getal
- Geheel getal
Global name: longLongToInteger(Lang geheel getal) → Geheel getalMethod name: Lang geheel getal.longToInteger() → Geheel getal
Cast()- Lang geheel getal
- Dubbeleprecisiegetal
Global name: longLongToDouble(Lang geheel getal) → DubbeleprecisiegetalMethod name: Lang geheel getal.longToDouble() → Dubbeleprecisiegetal
Has Chemicalis_chemicalstackIf the given item has a chemical- Voorwerp
- Booleaanse waarde
Global name: itemstackIsChemicalStack(Voorwerp) → Booleaanse waardeMethod name: Voorwerp.isChemicalStack() → Booleaanse waarde
ChemicalchemicalstackThe chemical from the given itemGlobal name: itemstackChemicalStack(Voorwerp) → ChemicalMethod name: Voorwerp.chemicalStack() → Chemical
Chemical Capacitychemicalstack_capacityThe chemical capacity of the given item in mB- Voorwerp
- Lang geheel getal
Global name: itemstackChemicalCapacity(Voorwerp) → Lang geheel getalMethod name: Voorwerp.chemicalCapacity() → Lang geheel getal
HoeveelheidamountDe hoeveelheid mB- Chemical
- Lang geheel getal
Global name: chemicalstackAmount(Chemical) → Lang geheel getalMethod name: Chemical.amount() → Lang geheel getal
TinttintThe tint color of the chemical typeGlobal name: chemicalstackTint(Chemical) → Geheel getalMethod name: Chemical.tint() → Geheel getal
Is radioactiefis_radioactiveIf the given chemical is radioactive- Chemical
- Booleaanse waarde
Global name: chemicalstackIsRadioactive(Chemical) → Booleaanse waardeMethod name: Chemical.isRadioactive() → Booleaanse waarde
RadioactiviteitradioactivityThe radioactivity of the given chemical- Chemical
- Dubbeleprecisiegetal
Global name: chemicalstackRadioactivity(Chemical) → DubbeleprecisiegetalMethod name: Chemical.radioactivity() → Dubbeleprecisiegetal
Is Coolantis_coolantIf the given chemical is cooled coolant or heated coolant- Chemical
- Booleaanse waarde
Global name: chemicalstackIsCoolant(Chemical) → Booleaanse waardeMethod name: Chemical.isCoolant() → Booleaanse waarde
Thermal Enthalpythermal_enthalpyThe thermal enthalpy of the given coolant chemical- Chemical
- Dubbeleprecisiegetal
Global name: chemicalstackThermalEnthalpy(Chemical) → DubbeleprecisiegetalMethod name: Chemical.thermalEnthalpy() → Dubbeleprecisiegetal
ConductivityconductivityThe conductivity of the given coolant chemical- Chemical
- Dubbeleprecisiegetal
Global name: chemicalstackConductivity(Chemical) → DubbeleprecisiegetalMethod name: Chemical.conductivity() → Dubbeleprecisiegetal
Is Cooled Coolantis_cooled_coolantIf the given chemical is cooled coolant- Chemical
- Booleaanse waarde
Global name: chemicalstackIsCooledCoolant(Chemical) → Booleaanse waardeMethod name: Chemical.isCooledCoolant() → Booleaanse waarde
Cooled Coolant Ofcooled_coolant_ofGet the heated chemical of the given cooled coolantGlobal name: chemicalstackCooledCoolantOf(Chemical) → ChemicalMethod name: Chemical.cooledCoolantOf() → Chemical
Is Heated Coolantis_heated_coolantIf the given chemical is heated coolant- Chemical
- Booleaanse waarde
Global name: chemicalstackIsHeatedCoolant(Chemical) → Booleaanse waardeMethod name: Chemical.isHeatedCoolant() → Booleaanse waarde
Heated Coolant Ofheated_coolant_ofGet the cooled chemical of the given heated coolantGlobal name: chemicalstackHeatedCoolantOf(Chemical) → ChemicalMethod name: Chemical.heatedCoolantOf() → Chemical
Is Fuelis_fuelIf the given chemical is can be used as fuel- Chemical
- Booleaanse waarde
Global name: chemicalstackIsFuel(Chemical) → Booleaanse waardeMethod name: Chemical.isFuel() → Booleaanse waarde
Burn Ticksburn_ticksThe number of ticks this chemical can burn as fuelGlobal name: chemicalstackBurnTicks(Chemical) → Geheel getalMethod name: Chemical.burnTicks() → Geheel getal
Energy per Tickenergy_per_tickThe amount of energy this chemical can produce when burnt as fuel- Chemical
- Lang geheel getal
Global name: chemicalstackEnergyPerTick(Chemical) → Lang geheel getalMethod name: Chemical.energyPerTick() → Lang geheel getal
Raw chemical equals=Raw=If the raw chemicals are equal- Chemical
- Chemical
- Booleaanse waarde
Global name: chemicalstackIsRawEqual(Chemical, Chemical) → Booleaanse waardeMethod name: Chemical.isRawEqual(Chemical) → Booleaanse waarde
ModmodThe name of the mod owning the given chemicalGlobal name: chemicalstackMod(Chemical) → TekenreeksMethod name: Chemical.mod() → Tekenreeks
With Amountwith_amountCopy the given chemical with the given amount- Chemical
- Lang geheel getal
- Chemical
Global name: chemicalstackWithAmount(Chemical, Lang geheel getal) → ChemicalMethod name: Chemical.withAmount(Lang geheel getal) → Chemical
Tag Nameschemical_tag_namesThe Tag names (strings) of the given chemicalGlobal name: chemicalstackTags(Chemical) → LijstMethod name: Chemical.tags() → Lijst
Tag Valueschemical_tag_valuesThe Tag values (chemicals) of the given chemical tag nameGlobal name: stringChemicalsByTag(Tekenreeks) → LijstMethod name: Tekenreeks.chemicalsByTag() → Lijst
ChemicalsIngr.chemicalsThe list of chemicalsGlobal name: ingredientsChemicals(Ingrediënten) → LijstMethod name: Ingrediënten.chemicals() → Lijst
With ChemicalIngr.with_chemicalGet a copy of the given ingredients with the given chemical at the given ingredient position- Ingrediënten
- Geheel getal
- Chemical
- Ingrediënten
Global name: ingredientsWithChemical(Ingrediënten, Geheel getal, Chemical) → IngrediëntenMethod name: Ingrediënten.withChemical(Geheel getal, Chemical) → Ingrediënten
With ChemicalsIngr.with_chemicalsGet a copy of the given ingredients with the given list of chemicals at the given ingredient position- Ingrediënten
- Lijst
- Ingrediënten
Global name: ingredientsWithChemicals(Ingrediënten, Lijst) → IngrediëntenMethod name: Ingrediënten.withChemicals(Lijst) → Ingrediënten
RadiationradiationGet the radiation level of the given entity (in Sv/h)- Entiteit
- Dubbeleprecisiegetal
Global name: entityRadiation(Entiteit) → DubbeleprecisiegetalMethod name: Entiteit.radiation() → Dubbeleprecisiegetal