Integrated Dynamics - On the Dynamics of Integration

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.

Crafting Table
Crafting Table
  • Gekristalliseerd menrilblok
  • Crafting Table
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Logicaprogrammeur
Crafting Table
Crafting Table
  • Logicaprogrammeur
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Draagbare logicaprogrammeur
Crafting Table
Crafting Table
  • Draagbare logicaprogrammeur
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Logicaprogrammeur
Toegewezen toets
Focus zoekveld in logicaprogrammeur
Alt + F
Toegewezen toets
Hernoem variabele in logicaprogrammeur
Alt + R
Operator
And&&
  • Booleaanse waarde
  • Booleaanse waarde
  • Booleaanse waarde
Global name: booleanAnd(Booleaanse waardeBooleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.and(Booleaanse waarde) → Booleaanse waarde

Or||
  • Booleaanse waarde
  • Booleaanse waarde
  • Booleaanse waarde
Global name: booleanOr(Booleaanse waardeBooleaanse 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 waardeBooleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.nand(Booleaanse waarde) → Booleaanse waarde

Nor!||
  • Booleaanse waarde
  • Booleaanse waarde
  • Booleaanse waarde
Global name: booleanNor(Booleaanse waardeBooleaanse waarde) → Booleaanse waardeMethod name: Booleaanse waarde.nor(Booleaanse waarde) → Booleaanse waarde

Optelling+
  • Nummer
  • Nummer
  • Nummer
Global name: numberAdd(NummerNummer) → NummerMethod name: Nummer.add(Nummer) → Nummer

Subtraction-
  • Nummer
  • Nummer
  • Nummer
Global name: numberSubtract(NummerNummer) → NummerMethod name: Nummer.subtract(Nummer) → Nummer

Multiplication*
  • Nummer
  • Nummer
  • Nummer
Global name: numberMultiply(NummerNummer) → NummerMethod name: Nummer.multiply(Nummer) → Nummer

Division/
  • Nummer
  • Nummer
  • Nummer
Global name: numberDivide(NummerNummer) → NummerMethod name: Nummer.divide(Nummer) → Nummer

MaximummaxTakes the largest of two values.
  • Nummer
  • Nummer
  • Nummer
Global name: numberMax(NummerNummer) → NummerMethod name: Nummer.max(Nummer) → Nummer

MinimumminTakes the smallest of two values.
  • Nummer
  • Nummer
  • Nummer
Global name: numberMin(NummerNummer) → NummerMethod name: Nummer.min(Nummer) → Nummer

Increment++
  • Nummer
  • Nummer
Global name: numberIncrement(Nummer) → NummerMethod name: Nummer.increment() → Nummer

Decrement--
  • Nummer
  • Nummer
Global name: numberDecrement(Nummer) → NummerMethod name: Nummer.decrement() → Nummer

Modulus%
  • Nummer
  • Nummer
  • Nummer
Global name: numberModulus(NummerNummer) → 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(DubbeleprecisiegetalDubbeleprecisiegetal) → 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(WillekeurigWillekeurig) → Booleaanse waardeMethod name: Willekeurig.equals(Willekeurig) → Booleaanse waarde

Greater Than>
  • Nummer
  • Nummer
  • Booleaanse waarde
Global name: numberGreaterThan(NummerNummer) → Booleaanse waardeMethod name: Nummer.greaterThan(Nummer) → Booleaanse waarde

Less Than<
  • Nummer
  • Nummer
  • Booleaanse waarde
Global name: numberLessThan(NummerNummer) → 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(WillekeurigWillekeurig) → Booleaanse waardeMethod name: Willekeurig.notEquals(Willekeurig) → Booleaanse waarde

Greater Than or Equal>=
  • Willekeurig
  • Willekeurig
  • Booleaanse waarde
Global name: anyGreaterThanOrEquals(WillekeurigWillekeurig) → Booleaanse waardeMethod name: Willekeurig.greaterThanOrEquals(Willekeurig) → Booleaanse waarde

Less Than or Equal<=
  • Willekeurig
  • Willekeurig
  • Booleaanse waarde
Global name: anyLessThanOrEquals(WillekeurigWillekeurig) → Booleaanse waardeMethod name: Willekeurig.lessThanOrEquals(Willekeurig) → Booleaanse waarde

And&
  • Geheel getal
  • Geheel getal
  • Geheel getal
Global name: integerBinaryAnd(Geheel getalGeheel getal) → Geheel getalMethod name: Geheel getal.binaryAnd(Geheel getal) → Geheel getal

Or|
  • Geheel getal
  • Geheel getal
  • Geheel getal
Global name: integerBinaryOr(Geheel getalGeheel getal) → Geheel getalMethod name: Geheel getal.binaryOr(Geheel getal) → Geheel getal

Xor^
  • Geheel getal
  • Geheel getal
  • Geheel getal
Global name: integerXor(Geheel getalGeheel getal) → Geheel getalMethod name: Geheel getal.xor(Geheel getal) → Geheel getal

Complement~
  • Geheel getal
  • Geheel getal
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 getalGeheel 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 getalGeheel 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 getalGeheel getal) → Geheel getalMethod name: Geheel getal.unsignedRightShift(Geheel getal) → Geheel getal

LengthlenThe length of the given String
  • Tekenreeks
  • Geheel getal
Global name: stringLength(Tekenreeks) → Geheel getalMethod name: Tekenreeks.length() → Geheel getal

Concat+Concatenate the two given Strings to one
  • Tekenreeks
  • Tekenreeks
  • Tekenreeks
Global name: stringConcat(TekenreeksTekenreeks) → TekenreeksMethod name: Tekenreeks.concat(Tekenreeks) → Tekenreeks

String ContainscontainsIf the given substring is contained within the given string.
  • Tekenreeks
  • Tekenreeks
  • Booleaanse waarde
Global name: stringContains(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksTekenreeks) → 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 getalGeheel getalTekenreeks) → TekenreeksMethod name: Geheel getal.substring(Geheel getalTekenreeks) → 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(TekenreeksGeheel getalTekenreeks) → TekenreeksMethod name: Tekenreeks.regexGroup(Geheel getalTekenreeks) → 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(TekenreeksTekenreeks) → 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(TekenreeksGeheel getalTekenreeks) → LijstMethod name: Tekenreeks.regexScan(Geheel getalTekenreeks) → 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(TekenreeksTekenreeksTekenreeks) → TekenreeksMethod name: Tekenreeks.replace(TekenreeksTekenreeks) → 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(TekenreeksTekenreeksTekenreeks) → TekenreeksMethod name: Tekenreeks.replaceRegex(TekenreeksTekenreeks) → Tekenreeks

JoinjoinCreate a joined string with the given string delimiter and the given list of strings.
  • Tekenreeks
  • Lijst
  • Tekenreeks
Global name: stringJoin(TekenreeksLijst) → TekenreeksMethod name: Tekenreeks.join(Lijst) → Tekenreeks

To StringnameGet the string or name of a named object or converts it to a string
  • Benoemd
  • Tekenreeks
Global name: namedName(Benoemd) → TekenreeksMethod name: Benoemd.name() → Tekenreeks

Unique NameunameGet the unique name of an object
  • Uniek benoemd
  • Tekenreeks
Global name: uniquely_namedUniqueName(Uniek benoemd) → TekenreeksMethod name: Uniek benoemd.uniqueName() → Tekenreeks

FouterrorVeroorzaak een aangepaste fout
  • Tekenreeks
  • Tekenreeks
Global name: stringStringError(Tekenreeks) → TekenreeksMethod name: Tekenreeks.stringError() → Tekenreeks

Round|| ||Round to the nearest Integer
  • Nummer
  • Geheel getal
Global name: numberRound(Nummer) → Geheel getalMethod name: Nummer.round() → Geheel getal

Ceil⌈ ⌉Round up to the nearest Integer
  • Nummer
  • Geheel getal
Global name: numberCeil(Nummer) → Geheel getalMethod name: Nummer.ceil() → Geheel getal

Floor⌊ ⌋Round down to the nearest Integer
  • Nummer
  • Geheel getal
Global name: numberFloor(Nummer) → Geheel getalMethod name: Nummer.floor() → Geheel getal

CompactcompactShow a shorter, less precise representation of a Number
  • Nummer
  • Tekenreeks
Global 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 NullIf 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 list
  • Lijst
  • Geheel getal
Global name: listLength(Lijst) → Geheel getalMethod name: Lijst.length() → Geheel getal

EmptyIf the list is empty
  • Lijst
  • Booleaanse waarde
Global name: listIsEmpty(Lijst) → Booleaanse waardeMethod name: Lijst.isEmpty() → Booleaanse waarde

Not EmptyoIf the list is not empty
  • Lijst
  • Booleaanse waarde
Global 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(LijstGeheel 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(LijstGeheel getalWillekeurig) → WillekeurigMethod name: Lijst.getOrDefault(Geheel getalWillekeurig) → Willekeurig

BevatcontainsOf de lijst het gegeven element bevat.
  • Lijst
  • Willekeurig
  • Booleaanse waarde
Global name: listContains(LijstWillekeurig) → 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(LijstOperator) → 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(LijstWillekeurig) → 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(LijstOperator) → Geheel getalMethod name: Lijst.countPredicate(Operator) → Geheel getal

AppendappendAppend to the given list the given item.
  • Lijst
  • Willekeurig
  • Lijst
Global name: listAppend(LijstWillekeurig) → LijstMethod name: Lijst.append(Willekeurig) → Lijst

ConcatconcatConcatenate the two lists to each other.
  • Lijst
  • Lijst
  • Lijst
Global name: listConcat(LijstLijst) → 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.
  • Willekeurig
  • Operator
  • Lijst
Global name: anyLazyBuilt(WillekeurigOperator) → LijstMethod name: Willekeurig.lazyBuilt(Operator) → Lijst

HeadheadGet the first element of the given list.
  • Lijst
  • Willekeurig
Global name: listHead(Lijst) → WillekeurigMethod name: Lijst.head() → Willekeurig

TailtailRemove the first element from the list.
  • Lijst
  • Lijst
Global name: listTail(Lijst) → LijstMethod name: Lijst.tail() → Lijst

Uniek-predicaatuniq_pVerwijder alle dubbele elementen uit de lijst, gebaseerd op het gegeven vergelijkingspredicaat.
  • Lijst
  • Operator
  • Lijst
Global name: listUniquePredicate(LijstOperator) → LijstMethod name: Lijst.uniquePredicate(Operator) → Lijst

UniekuniqVerwijder alle dubbele elementen uit de lijst.
  • Lijst
  • 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(LijstGeheel getalGeheel getal) → LijstMethod name: Lijst.slice(Geheel getalGeheel getal) → Lijst

IntersectionReturns a list of items present in both supplied lists
  • Lijst
  • Lijst
  • Lijst
Global name: listIntersection(LijstLijst) → 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(LijstLijst) → 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(LijstLijst) → Booleaanse waardeMethod name: Lijst.equals_multiset(Lijst) → Booleaanse waarde

OpaqueopaqueIf the given block is opaque, non-transparent
  • Blok
  • Booleaanse waarde
Global name: blockIsOpaque(Blok) → Booleaanse waardeMethod name: Blok.isOpaque() → Booleaanse waarde

ItemitemstackThe item representation of the given block
  • Blok
  • Voorwerp
Global name: blockItemStack(Blok) → VoorwerpMethod name: Blok.itemStack() → Voorwerp

ModmodThe name of the mod owning the given block
  • Blok
  • Tekenreeks
Global name: blockMod(Blok) → TekenreeksMethod name: Blok.mod() → Tekenreeks

Block Break Soundbreak_soundThe break sound of the given block
  • Blok
  • Tekenreeks
Global name: blockBreakSound(Blok) → TekenreeksMethod name: Blok.breakSound() → Tekenreeks

Block Place Soundplace_soundThe place sound of the given block
  • Blok
  • Tekenreeks
Global name: blockPlaceSound(Blok) → TekenreeksMethod name: Blok.placeSound() → Tekenreeks

Blok stap-geluidstep_soundHet stap-geluid van het gegeven blok
  • Blok
  • Tekenreeks
Global name: blockStepSound(Blok) → TekenreeksMethod name: Blok.stepSound() → Tekenreeks

Block Is Shearableis_shearableIf the given block is shearable
  • Blok
  • Booleaanse waarde
Global name: blockIsShearable(Blok) → Booleaanse waardeMethod name: Blok.isShearable() → Booleaanse waarde

Block Plant Ageplant_ageThe age of the given plant block
  • Blok
  • Geheel getal
Global 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.
  • Tekenreeks
  • Blok
Global name: stringBlockByName(Tekenreeks) → BlokMethod name: Tekenreeks.blockByName() → Blok

Block Propertiesblock_propsGet the block properties as NBT compound tag.
  • Blok
  • NBT
Global name: blockProperties(Blok) → NBTMethod name: Blok.properties() → NBT

Block Propertiesblock_with_propsGet the given block applied with the given properties.
  • Blok
  • NBT
  • Blok
Global name: blockWithProperties(BlokNBT) → BlokMethod name: Blok.withProperties(NBT) → Blok

Block Propertiesblock_all_propsGet all possible block properties as an NBT compound tag with list values.
  • Blok
  • NBT
Global name: blockPossibleProperties(Blok) → NBTMethod name: Blok.possibleProperties() → NBT

Block Tag Namesblock_tag_namesThe Tag names (strings) of the given block
  • Blok
  • Lijst
Global name: blockTags(Blok) → LijstMethod name: Blok.tags() → Lijst

Block Tag Valuesblock_tag_valuesThe Tag values (blocks) of the given block tag name
  • Tekenreeks
  • Lijst
Global name: stringBlocksByTag(Tekenreeks) → LijstMethod name: Tekenreeks.blocksByTag() → Lijst

SizesizeThe current stack size
  • Voorwerp
  • Geheel getal
Global name: itemstackSize(Voorwerp) → Geheel getalMethod name: Voorwerp.size() → Geheel getal

Max sizemaxsizeThe maximum stack size
  • Voorwerp
  • Geheel getal
Global 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 damage
  • Voorwerp
  • Geheel getal
Global name: itemstackDamage(Voorwerp) → Geheel getalMethod name: Voorwerp.damage() → Geheel getal

Max Damagemax_damageThe maximum item damage
  • Voorwerp
  • Geheel getal
Global 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 item
  • Voorwerp
  • Geheel getal
Global name: itemstackRepairCost(Voorwerp) → Geheel getalMethod name: Voorwerp.repairCost() → Geheel getal

RarityrarityThe rarity of the item
  • Voorwerp
  • Tekenreeks
Global 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(VoorwerpBlok) → DubbeleprecisiegetalMethod name: Voorwerp.strength(Blok) → Dubbeleprecisiegetal

Can Harvestcan_harvestIf the item can harvest the given block
  • Voorwerp
  • Blok
  • Booleaanse waarde
Global name: itemstackCanHarvest(VoorwerpBlok) → Booleaanse waardeMethod name: Voorwerp.canHarvest(Blok) → Booleaanse waarde

BlockblockThe block from the given item
  • Voorwerp
  • Blok
Global 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 item
  • Voorwerp
  • Vloeistof
Global name: itemstackFluidStack(Voorwerp) → VloeistofMethod name: Voorwerp.fluidStack() → Vloeistof

Fluid Capacityfluidstack_capacityThe fluid capacity of the given item in mB
  • Voorwerp
  • Geheel getal
Global 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(VoorwerpVoorwerp) → 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(VoorwerpVoorwerp) → 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(VoorwerpVoorwerp) → Booleaanse waardeMethod name: Voorwerp.isEqualRaw(Voorwerp) → Booleaanse waarde

ModmodThe name of the mod owning the given item
  • Voorwerp
  • Tekenreeks
Global name: itemstackMod(Voorwerp) → TekenreeksMethod name: Voorwerp.mod() → Tekenreeks

Fuel Burn Timeburn_timeThe fuel burn time in ticks of the given item
  • Voorwerp
  • Geheel getal
Global 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 item
  • Voorwerp
  • Lijst
Global name: itemstackTags(Voorwerp) → LijstMethod name: Voorwerp.tags() → Lijst

Item Tag Valuesitem_tag_valuesThe Tag values (items) of the given item tag name
  • Tekenreeks
  • Lijst
Global 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(VoorwerpGeheel 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 item
  • Voorwerp
  • Geheel getal
Global name: itemstackFeStored(Voorwerp) → Geheel getalMethod name: Voorwerp.feStored() → Geheel getal

FE Capacitycapacity_feThe maximum amount of FE that can be stored in this item
  • Voorwerp
  • Geheel getal
Global 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 contents
  • Voorwerp
  • Geheel getal
Global name: itemstackInventorySize(Voorwerp) → Geheel getalMethod name: Voorwerp.inventorySize() → Geheel getal

Item InventoryinventoryRetrieve the inventory of the given item handler contents
  • Voorwerp
  • Lijst
Global 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.
  • Tekenreeks
  • Voorwerp
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(LijstVoorwerp) → Geheel getalMethod name: Lijst.itemListCount(Voorwerp) → Geheel getal

Item NBTNBT()Get the data of the given item as NBT.
  • Voorwerp
  • 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.
  • Voorwerp
  • Lijst
Global name: itemstackDataKeys(Voorwerp) → LijstMethod name: Voorwerp.dataKeys() → Lijst

Data Valuedata_valueGet the value of the given data component key.
  • Voorwerp
  • Tekenreeks
  • NBT
Global name: itemstackDataValue(VoorwerpTekenreeks) → 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(VloeistofTekenreeksNBT) → NBTMethod name: Vloeistof.withData(TekenreeksNBT) → NBT

TooltiptooltipGet the tooltip of the given item as a list of strings.
  • Voorwerp
  • Lijst
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.
  • Entiteit
  • Voorwerp
  • Lijst
Global name: entityEntityItemTooltip(EntiteitVoorwerp) → 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 entity
  • Entiteit
  • Voorwerp
Global 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.
  • Entiteit
  • Lijst
Global name: entityArmorInventory(Entiteit) → LijstMethod name: Entiteit.armorInventory() → Lijst

Player InventoryinventoryThe list of items the player is carrying.
  • Entiteit
  • Lijst
Global name: entityInventory(Entiteit) → LijstMethod name: Entiteit.inventory() → Lijst

ModmodThe name of the mod owning the given entity
  • Entiteit
  • Tekenreeks
Global name: entityMod(Entiteit) → TekenreeksMethod name: Entiteit.mod() → Tekenreeks

Target Blocktarget_blockThe block the given entity is currently looking at.
  • Entiteit
  • Blok
Global name: entityTargetBlock(Entiteit) → BlokMethod name: Entiteit.targetBlock() → Blok

Target Entitytarget_entityThe entity the given entity is currently looking at.
  • Entiteit
  • Entiteit
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.
  • Entiteit
  • Voorwerp
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.
  • Entiteit
  • Voorwerp
Global name: entityHeldItemOffHand(Entiteit) → VoorwerpMethod name: Entiteit.heldItemOffHand() → Voorwerp

Mounted EntitiesmountedThe entities that are currently mounted on the given entity.
  • Entiteit
  • Lijst
Global name: entityMounted(Entiteit) → LijstMethod name: Entiteit.mounted() → Lijst

Item Frame Contentsitemframe_contentsThe contents from the given Item Frame.
  • Entiteit
  • Voorwerp
Global name: entityItemFrameContents(Entiteit) → VoorwerpMethod name: Entiteit.itemFrameContents() → Voorwerp

Item Frame Rotationitemframe_rotationThe rotation from the given Item Frame.
  • Entiteit
  • Geheel getal
Global name: entityItemFrameRotation(Entiteit) → Geheel getalMethod name: Entiteit.itemFrameRotation() → Geheel getal

Entity Hurt SoundhurtsoundThe hurt sound of the given entity.
  • Entiteit
  • Tekenreeks
Global name: entityHurtSound(Entiteit) → TekenreeksMethod name: Entiteit.hurtSound() → Tekenreeks

Entity Death SounddeathsoundThe death sound of the given entity.
  • Entiteit
  • Tekenreeks
Global name: entityDeathSound(Entiteit) → TekenreeksMethod name: Entiteit.deathSound() → Tekenreeks

Entity AgeageThe age of the given entity.
  • Entiteit
  • Geheel getal
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(EntiteitVoorwerp) → 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.
  • Entiteit
  • NBT
Global name: entityNbt(Entiteit) → NBTMethod name: Entiteit.nbt() → NBT

Entity Typeentity_typeThe entity type name.
  • Entiteit
  • Tekenreeks
Global name: entityType(Entiteit) → TekenreeksMethod name: Entiteit.type() → Tekenreeks

Entity Itemsentity_itemsThe items that are contained within this entity.
  • Entiteit
  • Lijst
Global name: entityItems(Entiteit) → LijstMethod name: Entiteit.items() → Lijst

Entity Fluidsentity_fluidsThe fluids that are contained within this entity.
  • Entiteit
  • Lijst
Global name: entityFluids(Entiteit) → LijstMethod name: Entiteit.fluids() → Lijst

Entity Energy Storedentity_stored_feThe amount of energy that is stored in this entity.
  • Entiteit
  • Geheel getal
Global name: entityEnergy(Entiteit) → Geheel getalMethod name: Entiteit.energy() → Geheel getal

Entity Energy Capacityentity_capacity_feThe energy capacity of this entity.
  • Entiteit
  • Geheel getal
Global name: entityEnergyCapacity(Entiteit) → Geheel getalMethod name: Entiteit.energyCapacity() → Geheel getal

AmountamountThe amount of mB
  • Vloeistof
  • Geheel getal
Global name: fluidstackAmount(Vloeistof) → Geheel getalMethod name: Vloeistof.amount() → Geheel getal

BlockblockThe block of the fluid
  • Vloeistof
  • Blok
Global name: fluidstackBlock(Vloeistof) → BlokMethod name: Vloeistof.block() → Blok

Light levellight_levelThe light level emitted by the fluid
  • Vloeistof
  • Geheel getal
Global name: fluidstackLightLevel(Vloeistof) → Geheel getalMethod name: Vloeistof.lightLevel() → Geheel getal

DensitydensityThe fluid density
  • Vloeistof
  • Geheel getal
Global name: fluidstackDensity(Vloeistof) → Geheel getalMethod name: Vloeistof.density() → Geheel getal

TemperaturetemperatureThe fluid temperature
  • Vloeistof
  • Geheel getal
Global name: fluidstackTemperature(Vloeistof) → Geheel getalMethod name: Vloeistof.temperature() → Geheel getal

ViscosityviscosityThe fluid viscosity
  • Vloeistof
  • Geheel getal
Global 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 rarity
  • Vloeistof
  • Tekenreeks
Global name: fluidstackRarity(Vloeistof) → TekenreeksMethod name: Vloeistof.rarity() → Tekenreeks

Bucket empty soundsound_bucket_emptyThe bucket empty sound for the fluid
  • Vloeistof
  • Tekenreeks
Global name: fluidstackBucketEmptySound(Vloeistof) → TekenreeksMethod name: Vloeistof.bucketEmptySound() → Tekenreeks

Fluid vaporize soundsound_fluid_vaporizeThe fluid vaporize sound for the fluid
  • Vloeistof
  • Tekenreeks
Global name: fluidstackFluidVaporizeSound(Vloeistof) → TekenreeksMethod name: Vloeistof.fluidVaporizeSound() → Tekenreeks

Bucket fill soundsound_bucket_fillThe bucket fill sound for the fluid
  • Vloeistof
  • Tekenreeks
Global name: fluidstackBucketFillSound(Vloeistof) → TekenreeksMethod name: Vloeistof.bucketFillSound() → Tekenreeks

BucketbucketThe filled bucket for the fluid
  • Vloeistof
  • Voorwerp
Global 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(VloeistofVloeistof) → Booleaanse waardeMethod name: Vloeistof.isRawEqual(Vloeistof) → Booleaanse waarde

ModmodThe name of the mod owning the given fluid
  • Vloeistof
  • Tekenreeks
Global name: fluidstackMod(Vloeistof) → TekenreeksMethod name: Vloeistof.mod() → Tekenreeks

Fluid NBTNBT()Get the data of the given fluid as NBT.
  • Vloeistof
  • 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(VloeistofGeheel getal) → VloeistofMethod name: Vloeistof.withAmount(Geheel getal) → Vloeistof

Data Keysdata_keysGet all data component keys of the fluid stack.
  • Vloeistof
  • Lijst
Global name: fluidstackDataKeys(Vloeistof) → LijstMethod name: Vloeistof.dataKeys() → Lijst

Data Valuedata_valueGet the value of the given data component key.
  • Vloeistof
  • Tekenreeks
  • NBT
Global name: fluidstackDataValue(VloeistofTekenreeks) → NBTMethod name: Vloeistof.dataValue(Tekenreeks) → NBT

Fluid Tag Namesfluid_tag_namesThe Tag names (strings) of the given fluid
  • Vloeistof
  • Lijst
Global name: fluidstackTags(Vloeistof) → LijstMethod name: Vloeistof.tags() → Lijst

Fluid Tag Valuesfluid_tag_valuesThe Tag values (fluids) of the given fluid tag name
  • Tekenreeks
  • Lijst
Global name: stringFluidsByTag(Tekenreeks) → LijstMethod name: Tekenreeks.fluidsByTag() → Lijst

ApplyapplyApply for a given operator a given value.
  • Operator
  • Willekeurig
  • Willekeurig
Global name: operatorApply(OperatorWillekeurig) → WillekeurigMethod name: Operator.apply(Willekeurig) → Willekeurig

Apply 2apply2Apply for a given operator the given two values.
  • Operator
  • Willekeurig
  • Willekeurig
  • Willekeurig
Global name: operatorApply2(OperatorWillekeurigWillekeurig) → WillekeurigMethod name: Operator.apply2(WillekeurigWillekeurig) → Willekeurig

Apply 3apply3Apply for a given operator the given three values.
  • Operator
  • Willekeurig
  • Willekeurig
  • Willekeurig
  • Willekeurig
Global name: operatorApply3(OperatorWillekeurigWillekeurigWillekeurig) → WillekeurigMethod name: Operator.apply3(WillekeurigWillekeurigWillekeurig) → Willekeurig

Apply Napply_nApply for a given operator the given list of values.
  • Operator
  • Lijst
  • Willekeurig
Global name: operatorApply_n(OperatorLijst) → WillekeurigMethod name: Operator.apply_n(Lijst) → Willekeurig

Apply 0apply0Apply for a given operator without arguments.
  • Operator
  • Willekeurig
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.
  • Operator
  • Lijst
  • Lijst
Global name: operatorMap(OperatorLijst) → LijstMethod name: Operator.map(Lijst) → Lijst

FilterfilterFilter a list of elements by matching them all with the given predicate.
  • Operator
  • Lijst
  • Lijst
Global name: operatorFilter(OperatorLijst) → LijstMethod name: Operator.filter(Lijst) → Lijst

Conjunction.&&.Takes the conjunction of two predicates.
  • Operator
  • Operator
  • Operator
Global name: operatorConjunction(OperatorOperator) → OperatorMethod name: Operator.conjunction(Operator) → Operator

Disjunction.||.Takes the disjunction of two predicates.
  • Operator
  • Operator
  • Operator
Global name: operatorDisjunction(OperatorOperator) → OperatorMethod name: Operator.disjunction(Operator) → Operator

Negation!.Takes the negation of a predicate.
  • Operator
  • Operator
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.
  • Operator
  • Operator
  • Operator
Global name: operatorPipe(OperatorOperator) → 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(OperatorOperatorOperator) → OperatorMethod name: Operator.pipe2(OperatorOperator) → Operator

FlipflipFlip the two first input parameters of an operator.
  • Operator
  • 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(OperatorLijstWillekeurig) → WillekeurigMethod name: Operator.reduce(LijstWillekeurig) → 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)).
  • Operator
  • Lijst
  • Willekeurig
Global name: operatorReduce1(OperatorLijst) → WillekeurigMethod name: Operator.reduce1(Lijst) → Willekeurig

Operator By Nameop_by_nameGet the operator that has the given unique name.
  • Tekenreeks
  • Operator
Global name: stringOperatorByName(Tekenreeks) → OperatorMethod name: Tekenreeks.operatorByName() → Operator

NBT Compound SizeNBT{}.sizeThe number of entries inside the given NBT compound tag
  • NBT
  • Geheel getal
Global name: nbtSize(NBT) → Geheel getalMethod name: NBT.size() → Geheel getal

NBT Compound KeysNBT{}.keysThe list of keys inside the given NBT compound tag
  • NBT
  • Lijst
Global 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(NBTTekenreeks) → 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 key
  • NBT
  • Tekenreeks
  • Tekenreeks
Global name: nbtType(NBTTekenreeks) → TekenreeksMethod name: NBT.type(Tekenreeks) → Tekenreeks

NBT Compound ValueNBT{}.get_tagThe value of any type in the given NBT compound tag with the given key
  • NBT
  • Tekenreeks
  • NBT
Global name: nbtGetTag(NBTTekenreeks) → 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(NBTTekenreeks) → 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(NBTTekenreeks) → 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(NBTTekenreeks) → 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(NBTTekenreeks) → DubbeleprecisiegetalMethod name: NBT.getDouble(Tekenreeks) → Dubbeleprecisiegetal

NBT Compound Value StringNBT{}.get_stringThe String value in the given NBT compound tag with the given key
  • NBT
  • Tekenreeks
  • Tekenreeks
Global name: nbtGetString(NBTTekenreeks) → TekenreeksMethod name: NBT.getString(Tekenreeks) → Tekenreeks

NBT Compound Value CompoundNBT{}.get_compoundThe Compound value in the given NBT compound tag with the given key
  • NBT
  • Tekenreeks
  • NBT
Global name: nbtGetCompound(NBTTekenreeks) → 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 key
  • NBT
  • Tekenreeks
  • Lijst
Global name: nbtGetListTag(NBTTekenreeks) → 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 List
  • NBT
  • Tekenreeks
  • Lijst
Global name: nbtGetListByte(NBTTekenreeks) → 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 List
  • NBT
  • Tekenreeks
  • Lijst
Global name: nbtGetListInt(NBTTekenreeks) → 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 List
  • NBT
  • Tekenreeks
  • Lijst
Global name: nbtGetListLong(NBTTekenreeks) → LijstMethod name: NBT.getListLong(Tekenreeks) → Lijst

NBT Compound WithoutNBT{}.withoutGet a copy of the given NBT compound tag without the given key
  • NBT
  • Tekenreeks
  • NBT
Global name: nbtWithout(NBTTekenreeks) → 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(NBTTekenreeksBooleaanse waarde) → NBTMethod name: NBT.withBoolean(TekenreeksBooleaanse 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(NBTTekenreeksGeheel getal) → NBTMethod name: NBT.withShort(TekenreeksGeheel 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(NBTTekenreeksGeheel getal) → NBTMethod name: NBT.withInteger(TekenreeksGeheel 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(NBTTekenreeksLang geheel getal) → NBTMethod name: NBT.withLong(TekenreeksLang 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(NBTTekenreeksDubbeleprecisiegetal) → NBTMethod name: NBT.withDouble(TekenreeksDubbeleprecisiegetal) → 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(NBTTekenreeksDubbeleprecisiegetal) → NBTMethod name: NBT.withFloat(TekenreeksDubbeleprecisiegetal) → 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(NBTTekenreeksTekenreeks) → NBTMethod name: NBT.withString(TekenreeksTekenreeks) → NBT

NBT Compound With NBTNBT{}.with_tagGet a copy of the given NBT compound tag with the given NBT entry
  • NBT
  • Tekenreeks
  • NBT
  • NBT
Global name: nbtWithTag(NBTTekenreeksNBT) → NBTMethod name: NBT.withTag(TekenreeksNBT) → NBT

NBT Compound With NBT ListNBT{}.with_tag_listGet a copy of the given NBT compound tag with the given NBT List entry
  • NBT
  • Tekenreeks
  • Lijst
  • NBT
Global name: nbtWithTagList(NBTTekenreeksLijst) → NBTMethod name: NBT.withTagList(TekenreeksLijst) → 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 entry
  • NBT
  • Tekenreeks
  • Lijst
  • NBT
Global name: nbtWithByteList(NBTTekenreeksLijst) → NBTMethod name: NBT.withByteList(TekenreeksLijst) → NBT

NBT Compound With Int ListNBT{}.with_int_listGet a copy of the given NBT compound tag with the given NBT Integer Array entry
  • NBT
  • Tekenreeks
  • Lijst
  • NBT
Global name: nbtWithIntList(NBTTekenreeksLijst) → NBTMethod name: NBT.withIntList(TekenreeksLijst) → NBT

NBT Compound With Long ListNBT{}.with_list_longGet a copy of the given NBT compound tag with the given NBT Long Array entry
  • NBT
  • Tekenreeks
  • Lijst
  • NBT
Global name: nbtWithListLong(NBTTekenreeksLijst) → NBTMethod name: NBT.withListLong(TekenreeksLijst) → 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.
  • NBT
  • NBT
  • Booleaanse waarde
Global name: nbtIsSubset(NBTNBT) → 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.
  • NBT
  • NBT
  • NBT
Global name: nbtUnion(NBTNBT) → NBTMethod name: NBT.union(NBT) → NBT

NBT Compound IntersectionNBT{}.∩The intersection of the given NBT compound tags. Nested tags will be intersected recursively.
  • NBT
  • NBT
  • NBT
Global name: nbtIntersection(NBTNBT) → NBTMethod name: NBT.intersection(NBT) → NBT

NBT Compound MinusNBT{}.∖The difference of the given NBT compound tags. Nested tags will be subtracted recursively.
  • NBT
  • NBT
  • NBT
Global name: nbtMinus(NBTNBT) → NBTMethod name: NBT.minus(NBT) → NBT

NBT Boolean As BooleanNBT.as_booleanGet the Boolean value of the given NBT Byte tag
  • NBT
  • Booleaanse waarde
Global name: nbtAsBoolean(NBT) → Booleaanse waardeMethod name: NBT.asBoolean() → Booleaanse waarde

NBT Byte As IntegerNBT.as_byteGet the Integer value of the given NBT Byte tag
  • NBT
  • Geheel getal
Global name: nbtAsByte(NBT) → Geheel getalMethod name: NBT.asByte() → Geheel getal

NBT Short as IntegerNBT.as_shortGet the Integer value of the given NBT Short tag
  • NBT
  • Geheel getal
Global name: nbtAsShort(NBT) → Geheel getalMethod name: NBT.asShort() → Geheel getal

NBT Integer As IntegerNBT.as_intGet the Integer value of the given NBT Integer tag
  • NBT
  • Geheel getal
Global name: nbtAsInt(NBT) → Geheel getalMethod name: NBT.asInt() → Geheel getal

NBT Long As LongNBT.as_longGet the Long value of the given NBT Long tag
  • NBT
  • Lang geheel getal
Global 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 tag
  • NBT
  • Dubbeleprecisiegetal
Global name: nbtAsDouble(NBT) → DubbeleprecisiegetalMethod name: NBT.asDouble() → Dubbeleprecisiegetal

NBT Float As DoubleNBT.as_floatGet the Double value of the given NBT Float tag
  • NBT
  • Dubbeleprecisiegetal
Global name: nbtAsFloat(NBT) → DubbeleprecisiegetalMethod name: NBT.asFloat() → Dubbeleprecisiegetal

NBT String As StringNBT.as_stringGet the String value of the given NBT String tag
  • NBT
  • Tekenreeks
Global 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 tag
  • NBT
  • Lijst
Global 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 tag
  • NBT
  • Lijst
Global 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 tag
  • NBT
  • Lijst
Global 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 tag
  • NBT
  • Lijst
Global name: nbtAsLongList(NBT) → LijstMethod name: NBT.asLongList() → Lijst

NBT Byte From BooleanNBT.from_booleanCreate an NBT Byte tag from the given Boolean value
  • Booleaanse waarde
  • NBT
Global name: booleanAsNbt(Booleaanse waarde) → NBTMethod name: Booleaanse waarde.asNbt() → NBT

NBT Short From IntegerNBT.from_shortCreate an NBT Short tag from the given Integer value
  • Geheel getal
  • NBT
Global name: shortAsNbt(Geheel getal) → NBTMethod name: Geheel getal.shortAsNbt() → NBT

NBT Byte From IntegerNBT.from_byteCreate an NBT Byte tag from the given Integer value
  • Geheel getal
  • NBT
Global name: byteAsNbt(Geheel getal) → NBTMethod name: Geheel getal.byteAsNbt() → NBT

NBT Integer From IntegerNBT.from_intCreate an NBT Integer tag from the given Integer value
  • Geheel getal
  • NBT
Global name: integerAsNbt(Geheel getal) → NBTMethod name: Geheel getal.asNbt() → NBT

NBT Long From LongNBT.from_longCreate an NBT Long tag from the given Long value
  • Lang geheel getal
  • NBT
Global 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 value
  • Dubbeleprecisiegetal
  • NBT
Global name: doubleAsNbt(Dubbeleprecisiegetal) → NBTMethod name: Dubbeleprecisiegetal.asNbt() → NBT

NBT Float From DoubleNBT.from_floatCreate an NBT Float tag from the given Double value
  • Dubbeleprecisiegetal
  • NBT
Global name: floatAsNbt(Dubbeleprecisiegetal) → NBTMethod name: Dubbeleprecisiegetal.floatAsNbt() → NBT

NBT String From StringNBT.from_stringCreate an NBT String tag from the given String value
  • Tekenreeks
  • NBT
Global 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 value
  • Lijst
  • NBT
Global 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 value
  • Lijst
  • NBT
Global 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 value
  • Lijst
  • NBT
Global 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 value
  • Lijst
  • NBT
Global 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 match
  • Tekenreeks
  • NBT
  • NBT
Global name: stringNbtPathMatchFirst(TekenreeksNBT) → 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 list
  • Tekenreeks
  • NBT
  • Lijst
Global name: stringNbtPathMatchAll(TekenreeksNBT) → 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(TekenreeksNBT) → Booleaanse waardeMethod name: Tekenreeks.nbtPathTest(NBT) → Booleaanse waarde

Ingredient itemsIngr.itemsThe list of items
  • Ingrediënten
  • Lijst
Global name: ingredientsItems(Ingrediënten) → LijstMethod name: Ingrediënten.items() → Lijst

Ingredient fluidsIngr.fluidsThe list of fluids
  • Ingrediënten
  • Lijst
Global name: ingredientsFluids(Ingrediënten) → LijstMethod name: Ingrediënten.fluids() → Lijst

Ingredient energy elementsIngr.energiesThe list of energy elements
  • Ingrediënten
  • Lijst
Global 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ëntenGeheel getalVoorwerp) → IngrediëntenMethod name: Ingrediënten.withItem(Geheel getalVoorwerp) → 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ëntenGeheel getalVloeistof) → IngrediëntenMethod name: Ingrediënten.withFluid(Geheel getalVloeistof) → 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ëntenGeheel getalLang geheel getal) → IngrediëntenMethod name: Ingrediënten.withEnergy(Geheel getalLang 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ëntenLijst) → 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ëntenLijst) → 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ëntenLijst) → IngrediëntenMethod name: Ingrediënten.withEnergies(Lijst) → Ingrediënten

Recipe Input Ingredientsrecipe_inThe input ingredients of the given recipe
  • Recept
  • Ingrediënten
Global name: recipeInput(Recept) → IngrediëntenMethod name: Recept.input() → Ingrediënten

Recipe Output Ingredientsrecipe_outThe output ingredients of the given recipe
  • Recept
  • Ingrediënten
Global 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 input
  • Recept
  • Ingrediënten
  • Recept
Global name: recipeWithInput(ReceptIngredië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 output
  • Recept
  • Ingrediënten
  • Recept
Global name: recipeWithOutput(ReceptIngredië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ëntenIngredië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_integer
  • Tekenreeks
  • Geheel getal
Global 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_nbt
  • Tekenreeks
  • NBT
Global 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 waardeWillekeurigWillekeurig) → WillekeurigMethod name: Booleaanse waarde.choice(WillekeurigWillekeurig) → Willekeurig

IdentityidA copy of the input value.
  • Willekeurig
  • Willekeurig
Global name: anyIdentity(Willekeurig) → WillekeurigMethod name: Willekeurig.identity() → Willekeurig

ConstantKA copy of the first input value.
  • Willekeurig
  • Willekeurig
  • Willekeurig
Global name: anyConstant(WillekeurigWillekeurig) → 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 item
  • Voorwerp
  • Chemical
Global 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 type
  • Chemical
  • Geheel getal
Global 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 coolant
  • Chemical
  • Chemical
Global 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 coolant
  • Chemical
  • Chemical
Global 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 fuel
  • Chemical
  • Geheel getal
Global 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(ChemicalChemical) → Booleaanse waardeMethod name: Chemical.isRawEqual(Chemical) → Booleaanse waarde

ModmodThe name of the mod owning the given chemical
  • Chemical
  • Tekenreeks
Global 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(ChemicalLang geheel getal) → ChemicalMethod name: Chemical.withAmount(Lang geheel getal) → Chemical

Tag Nameschemical_tag_namesThe Tag names (strings) of the given chemical
  • Chemical
  • Lijst
Global name: chemicalstackTags(Chemical) → LijstMethod name: Chemical.tags() → Lijst

Tag Valueschemical_tag_valuesThe Tag values (chemicals) of the given chemical tag name
  • Tekenreeks
  • Lijst
Global name: stringChemicalsByTag(Tekenreeks) → LijstMethod name: Tekenreeks.chemicalsByTag() → Lijst

ChemicalsIngr.chemicalsThe list of chemicals
  • Ingrediënten
  • Lijst
Global 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ëntenGeheel getalChemical) → IngrediëntenMethod name: Ingrediënten.withChemical(Geheel getalChemical) → 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ëntenLijst) → 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