逻辑编程
创建动态变量卡的另一种方法是通过在一个或多个变量卡上应用运算符来生成新的变量卡。一个运算符的一个例子是添加了两个number,形成一个新的number。
运算符可以有一个或多个输入值,并具有一个输出值。在大多数情况下,输入和输出具有一定的数据类型,否则它们将具有Any数据类型。具有单个输入和一个输出的运算符Boolean被称为Predicate。
逻辑编程器包含大量的运算符的集合。它还允许您为所有数据类型创建静态和变量卡§r。 选择运算符后,应在预期的输入插槽中插入有效变量卡。 最后,应在输出插槽中插入另一个变量卡。如果运算符有效,则会将新的动态变量写入卡中。 请记住,引用的变量卡必须存在于运算符将被评测的同一网络中的变量卡箱中。
逻辑编程器 可以使用顶部的搜索框,通过名称搜索运算符的列表。它还允许您通过在左下角插入这些类型的变量卡输入或输出数据类型进行过滤。
如果玩家的物品栏中存在注释器。 通过点击输出插槽旁边的“E”按钮,可以立即标记产生的变量卡。
逻辑编程器以方块形式和物品形式存在。 两者都可以通过将它们置于工作台中进行互换。
Key Binding
在逻辑编程器中搜索
Alt + F
Key Binding
在逻辑编程器重命名变量卡
Alt + R
Operator(运算符)
与&&
- Boolean(布尔)
- Boolean(布尔)
- Boolean(布尔)
或||
- Boolean(布尔)
- Boolean(布尔)
- Boolean(布尔)
非!
- Boolean(布尔)
- Boolean(布尔)
与非!&&
- Boolean(布尔)
- Boolean(布尔)
- Boolean(布尔)
或非!||
- Boolean(布尔)
- Boolean(布尔)
- Boolean(布尔)
加+
- Number(数值)
- Number(数值)
- Number(数值)
减-
- Number(数值)
- Number(数值)
- Number(数值)
乘*
- Number(数值)
- Number(数值)
- Number(数值)
除/
- Number(数值)
- Number(数值)
- Number(数值)
最大max取两个数值中的最大值
- Number(数值)
- Number(数值)
- Number(数值)
最小min取两个数值中的最小值
- Number(数值)
- Number(数值)
- Number(数值)
递增++
- Number(数值)
- Number(数值)
递减--
- Number(数值)
- Number(数值)
取模%
- Number(数值)
- Number(数值)
- Number(数值)
等于==输入1和2的类型必须相同
- §rAny(任意)§0
- §rAny(任意)§0
- Boolean(布尔)
大于>
- Number(数值)
- Number(数值)
- Boolean(布尔)
小于<
- Number(数值)
- Number(数值)
- Boolean(布尔)
不等!=输入1和2的类型必须相同
- §rAny(任意)§0
- §rAny(任意)§0
- Boolean(布尔)
大于等于>=
- §rAny(任意)§0
- §rAny(任意)§0
- Boolean(布尔)
小于等于<=
- §rAny(任意)§0
- §rAny(任意)§0
- Boolean(布尔)
按位与&
- Integer(整型)
- Integer(整型)
- Integer(整型)
按位同或|
- Integer(整型)
- Integer(整型)
- Integer(整型)
按位异或^
- Integer(整型)
- Integer(整型)
- Integer(整型)
补码~
- Integer(整型)
- Integer(整型)
左移<<
- Integer(整型)
- Integer(整型)
- Integer(整型)
右移>>右移补一
- Integer(整型)
- Integer(整型)
- Integer(整型)
右补零>>>右移补零
- Integer(整型)
- Integer(整型)
- Integer(整型)
长度len获取指定字符串的长度
- String(字符串)
- Integer(整型)
连接+连接两个字符串
- String(字符串)
- String(字符串)
- String(字符串)
字符串包含contains判断指定的子字符串是否包含在指定的字符串中.
- String(字符串)
- String(字符串)
- Boolean(布尔)
正则包含contains_regex判断指定的正则表达式是否能在指定字符串中找到匹配.
- String(字符串)
- String(字符串)
- Boolean(布尔)
正则匹配matches_regex判断指定的正则表达式是否匹配指定的字符串.
- String(字符串)
- String(字符串)
- Boolean(布尔)
索引index_of获取指定的子字符串在指定字符串中第一次出现的位置.
- String(字符串)
- String(字符串)
- Integer(整型)
正则索引index_of_regex获取指定的正则表达式在指定字符串中第一次匹配到的位置.
- String(字符串)
- String(字符串)
- Integer(整型)
以其开头starts_with判断指定的子字符串是否是指定的字符串的开头.
- String(字符串)
- String(字符串)
- Boolean(布尔)
以其结尾ends_with判断指定的子字符串是否是指定字符串的结尾.
- String(字符串)
- String(字符串)
- Boolean(布尔)
拆分split_on用指定的分隔符(文本)拆分字符串,并返回拆分后的列表.
- String(字符串)
- String(字符串)
- List(列表)
正则拆分split_on_regex以指定的分隔符(正则表达式)拆分字符串,并返回拆分后的列表.
- String(字符串)
- String(字符串)
- List(列表)
子字符串substring从指定的字符串中返回从指定的起始索引(包含文字)到指定的末尾索引(排除)之间的字符串片段.
- Integer(整型)
- Integer(整型)
- String(字符串)
- String(字符串)
正则匹配组regex_groupSearch for the given regular expression and return in that match the group at the given index, in the given string.
- String(字符串)
- Integer(整型)
- String(字符串)
- String(字符串)
所有正则匹配组regex_groupsSearch for the given regular expression and return in that match a list of all its groups, in the given string.
- String(字符串)
- String(字符串)
- List(列表)
正则扫描regex_scanSearch for all matches of the given regular expression and return the group at the given index, in the given string.
- String(字符串)
- Integer(整型)
- String(字符串)
- List(列表)
替换replace在指定的字符串中找到所有指定的搜索词的匹配,并用指定的字符串替换它们.
- String(字符串)
- String(字符串)
- String(字符串)
- String(字符串)
正则替换replace_regex在指定的字符串中找到所有指定的正则表达式的匹配,并用指定的字符串替换它们.
- String(字符串)
- String(字符串)
- String(字符串)
- String(字符串)
JoinjoinCreate a joined string with the given string delimiter and the given list of strings.
- String(字符串)
- List(列表)
- String(字符串)
变量名name获取指定变量名或变量值的字符串形式
- 转为字符串
- String(字符串)
唯一名称uname获取指定变量的唯一名称
- 转为唯一名称
- String(字符串)
Round|| ||Round to the nearest Integer
- Number(数值)
- Integer(整型)
Ceil⌈ ⌉Round up to the nearest Integer
- Number(数值)
- Integer(整型)
Floor⌊ ⌋Round down to the nearest Integer
- Number(数值)
- Integer(整型)
CompactcompactShow a shorter, less precise representation of a Number
- Number(数值)
- String(字符串)
空o指定的值是否为空
- §rAny(任意)§0
- Boolean(布尔)
非空∅指定的值是否非空
- §rAny(任意)§0
- Boolean(布尔)
长度| |指定列表的长度
- List(列表)
- Integer(整型)
空∅此列表是否为空
- List(列表)
- Boolean(布尔)
非空o此列表是否非空
- List(列表)
- Boolean(布尔)
获取get获取对应下标的列表元素
- List(列表)
- Integer(整型)
- §rAny(任意)§0
获取或默认值get_or_default安全的获取列表指定位置的元素,如果元素不可用,则返回默认值
- List(列表)
- Integer(整型)
- §rAny(任意)§0
- §rAny(任意)§0
包含contains此列表是否包含指定元素
- List(列表)
- §rAny(任意)§0
- Boolean(布尔)
包含谓词contains_p如果列表的至少一个元素对于指定的谓词返回true。
- List(列表)
- Operator(运算符)
- Boolean(布尔)
计数count在列表中找到指定元素的次数。
- List(列表)
- §rAny(任意)§0
- Integer(整型)
计数count_p指定谓词对于列表中的元素返回true的次数。
- List(列表)
- Operator(运算符)
- Integer(整型)
附加append在指定的列表中附加指定的项目。
- List(列表)
- §rAny(任意)§0
- List(列表)
拼接concat将两个列表相互拼接在一起
- List(列表)
- List(列表)
- List(列表)
懒惰列表生成器lazybuilt使用起始数据和应用于上一个元素的运算符来构建列表以获取下一个元素。
- §rAny(任意)§0
- Operator(运算符)
- List(列表)
首head获取指定列表的第一个元素。
- List(列表)
- §rAny(任意)§0
尾tail从列表中删除第一个元素。
- List(列表)
- List(列表)
条件唯一uniq_p基于指定的比较条件删除列表中所有的重复元素。
- List(列表)
- Operator(运算符)
- List(列表)
唯一uniq删除列表中所有的重复元素。
- List(列表)
- List(列表)
切片slice将指定列表的子集从指定索引(包括)移到指定索引(不包括)。
- List(列表)
- Integer(整型)
- Integer(整型)
- List(列表)
Intersection∩Returns a list of items present in both supplied lists
- List(列表)
- List(列表)
- List(列表)
不透明opaque指定的方块是否不透明
- Block(方块)
- Boolean(布尔)
物品itemstack指定方块代表的物品
- Block(方块)
- Item(物品)
方块所属Modmod指定方块对应的Mod名称
- Block(方块)
- String(字符串)
方块破坏声break_sound指定方块被破坏的声音
- Block(方块)
- String(字符串)
方块放置声place_sound指定方块被放置的声音
- Block(方块)
- String(字符串)
方块行走声step_sound在指定方块上行走的声音
- Block(方块)
- String(字符串)
方块可被使用剪刀is_shearable如果方块可以被使用剪刀
- Block(方块)
- Boolean(布尔)
植物方块成熟度plant_age指定植物方块的成熟度
- Block(方块)
- Integer(整型)
通过名称检索方块block_by_name获取指定名称对应的方块类型,使用"空格+数值"来指定元数据.
- String(字符串)
- Block(方块)
Block Propertiesblock_propsGet the block properties as NBT compound tag.
- Block(方块)
- NBT
Block Propertiesblock_with_propsGet the given block applied with the given properties.
- Block(方块)
- NBT
- Block(方块)
Block Propertiesblock_all_propsGet all possible block properties as NBT compound tag with list values.
- Block(方块)
- NBT
数量size当前物品栈物品数量
- Item(物品)
- Integer(整型)
数量上限maxsize当前物品的堆叠上限
- Item(物品)
- Integer(整型)
可堆叠stackable物品能否堆叠两个及以上
- Item(物品)
- Boolean(布尔)
可损坏damageable物品可以损坏
- Item(物品)
- Boolean(布尔)
损害值damage当前物品的损害值
- Item(物品)
- Integer(整型)
损害值上限max_damage物品损害值上限
- Item(物品)
- Integer(整型)
已附魔enchanted物品是否已经附魔
- Item(物品)
- Boolean(布尔)
能否附魔enchantable物品能否附魔
- Item(物品)
- Boolean(布尔)
修复花费repair_cost修复此物品的花费
- Item(物品)
- Integer(整型)
稀有度rarity物品的稀有度
- Item(物品)
- String(字符串)
挖掘强度比较strength该物品的挖掘强度与指定的方块的强度比较
- Item(物品)
- Block(方块)
- Double(双精度型)
能否采集can_harvest该物品能否采集指定方块
- Item(物品)
- Block(方块)
- Boolean(布尔)
方块block指定物品对应的方块
- Item(物品)
- Block(方块)
是内有流体的流体容器is_fluidstack指定物品中有流体
- Item(物品)
- Boolean(布尔)
对应流体fluidstack指定物品中对应的流体
- Item(物品)
- Fluid(流体)
流体容器容量fluidstack_capacity指定流体容器的容量(mB)
- Item(物品)
- Integer(整型)
物品比较(完全相等)=NBT=比较两个指定物品是否相同,包括NBT
- Item(物品)
- Item(物品)
- Boolean(布尔)
物品比较(排除NBT)=NoNBT=比较两个指定物品是否相同,忽略NBT,但比较损害值
- Item(物品)
- Item(物品)
- Boolean(布尔)
物品比较(模糊)=Raw=比较两个指定物品是否相同,忽略NBT和损害值
- Item(物品)
- Item(物品)
- Boolean(布尔)
物品所属Modmod指定物品对应的Mod名称
- Item(物品)
- String(字符串)
燃烧时间burn_time指定物品的燃烧时间(Tick)
- Item(物品)
- Integer(整型)
可否燃烧can_burn指定物品是否可用作燃料
- Item(物品)
- Boolean(布尔)
Tag Namestag_namesThe Tag names (strings) of the given item
- Item(物品)
- List(列表)
Tag Valuestag_valuesThe Tag values (items) of the given name
- String(字符串)
- List(列表)
物品堆叠大小with_size设置指定物品的堆叠大小
- Item(物品)
- Integer(整型)
- Item(物品)
FE容器is_fe_container如果指定的项目可以保存FE
- Item(物品)
- Boolean(布尔)
FE存储stored_fe存储在此项目中的FE量
- Item(物品)
- Integer(整型)
FE容量capacity_fe可以存储在此项目中的最大FE数量
- Item(物品)
- Integer(整型)
物品具有存储能力has_inventory如果物品具有存储能力
- Item(物品)
- Boolean(布尔)
物品存储容量inventory_size获取物品处理容器的存储容量
- Item(物品)
- Integer(整型)
物品存储inventory获取物品处理容器的库存
- Item(物品)
- List(列表)
通过名称检索物品item_by_name获取指定名称对应的物品类型,使用"空格+数值"来指定元数据.
- String(字符串)
- Item(物品)
物品列表总数item_list_count获取指定物品在列表中的数量
- List(列表)
- Item(物品)
- Integer(整型)
物品NBT标签NBT()获取指定物品的NBT标签
- Item(物品)
- NBT
Has NBThas_nbtIf the item stack has data components.
- Item(物品)
- Boolean(布尔)
是否怪物is_mob实体是否为怪物
- Entity(实体)
- Boolean(布尔)
是否动物is_animal实体是否为动物
- Entity(实体)
- Boolean(布尔)
是否掉落物is_item实体是否为掉落物
- Entity(实体)
- Boolean(布尔)
是否玩家is_player实体是否为玩家
- Entity(实体)
- Boolean(布尔)
是否矿车is_minecart实体是否为矿车
- Entity(实体)
- Boolean(布尔)
对应物品item掉落物对应物品
- Entity(实体)
- Item(物品)
生命值health实体生命值
- Entity(实体)
- Double(双精度型)
宽度width实体宽度
- Entity(实体)
- Double(双精度型)
高度height实体高度
- Entity(实体)
- Double(双精度型)
是否燃烧is_burning实体是否在燃烧
- Entity(实体)
- Boolean(布尔)
是否在水中is_wet实体是否在水中
- Entity(实体)
- Boolean(布尔)
Is Crouchingis_crouchingIf the entity is crouching
- Entity(实体)
- Boolean(布尔)
是否进食is_eating实体是否在进食
- Entity(实体)
- Boolean(布尔)
盔甲栏armor_inventory实体作为盔甲携带的物品列表
- Entity(实体)
- List(列表)
玩家物品栏inventory玩家携带的物品列表
- Entity(实体)
- List(列表)
Modmod所给实体对应的mod
- Entity(实体)
- String(字符串)
目标方块target_block实体正在看的方块
- Entity(实体)
- Block(方块)
目标实体target_entity实体正在看的实体
- Entity(实体)
- Entity(实体)
GUI是否打开has_gui_open指定玩家是否开着GUI
- Entity(实体)
- Boolean(布尔)
手持物品held_item_1实体正手持的物品
- Entity(实体)
- Item(物品)
次要手持物品held_item_2指定实体当前次要手持的物品
- Entity(实体)
- Item(物品)
骑行实体mounted骑在实体上的实体
- Entity(实体)
- List(列表)
物品展示框内容itemframe_contents指定物品展示框的内容
- Entity(实体)
- Item(物品)
物品展示框物品选择itemframe_rotation指定物品展示框内物品的旋转情况
- Entity(实体)
- Integer(整型)
实体受伤声hurtsound指定实体受伤的声音
- Entity(实体)
- String(字符串)
实体死亡声deathsound指定实体死亡的声音
- Entity(实体)
- String(字符串)
实体年龄age指定实体的年龄.
- Entity(实体)
- Integer(整型)
实体是幼体is_child如果指定实体是幼体.
- Entity(实体)
- Boolean(布尔)
实体可以繁殖canbreed如果指定实体已经准备好繁殖.
- Entity(实体)
- Boolean(布尔)
实体处于求爱模式is_in_love如果指定实体已经进入求爱模式并准备好繁殖.
- Entity(实体)
- Boolean(布尔)
实体可以用__喂养can_breed_with如果指定实体可以使用指定的物品喂养(繁殖).
- Entity(实体)
- Item(物品)
- Boolean(布尔)
实体可以被使用剪刀is_shearable如果指定实体可以被使用剪刀
- Entity(实体)
- Boolean(布尔)
实体NBT标签NBT()获取指定实体的NBT标签.
- Entity(实体)
- NBT
实体种类entity_type实体种类的名称.
- Entity(实体)
- String(字符串)
实体所有物entity_items实体中包含的物品.
- Entity(实体)
- List(列表)
实体流体entity_fluids实体中包含的流体.
- Entity(实体)
- List(列表)
实体存储能量entity_stored_fe实体中存储的能量.
- Entity(实体)
- Integer(整型)
实体能量容量entity_capacity_fe实体可存储能量的上限.
- Entity(实体)
- Integer(整型)
总量amount流体总量(mb)
- Fluid(流体)
- Integer(整型)
方块block流体对应方块
- Fluid(流体)
- Block(方块)
Light levellight_levelThe light level emitted by the fluid
- Fluid(流体)
- Integer(整型)
密度density流体密度
- Fluid(流体)
- Integer(整型)
TemperaturetemperatureThe fluid temperature
- Fluid(流体)
- Integer(整型)
流动性viscosity液体流动性
- Fluid(流体)
- Integer(整型)
Is Lighter Than Airlighter_than_airIf the fluid is lighter than air
- Fluid(流体)
- Boolean(布尔)
稀有度rarity流体稀有度
- Fluid(流体)
- String(字符串)
Bucket empty soundsound_bucket_emptyThe bucket empty sound for the fluid
- Fluid(流体)
- String(字符串)
Fluid vaporize soundsound_fluid_vaporizeThe fluid vaporize sound for the fluid
- Fluid(流体)
- String(字符串)
Bucket fill soundsound_bucket_fillThe bucket fill sound for the fluid
- Fluid(流体)
- String(字符串)
BucketbucketThe filled bucket for the fluid
- Fluid(流体)
- Item(物品)
相同=Raw=液体是否相同
- Fluid(流体)
- Fluid(流体)
- Boolean(布尔)
Modmod流体对应的Mod
- Fluid(流体)
- String(字符串)
流体NBT标签NBT()获取指定流体的NBT标签
- Fluid(流体)
- NBT
Fluid With Amountwith_amountCopy the given fluid with the given amount
- Fluid(流体)
- Integer(整型)
- Fluid(流体)
一元apply用指定的值执行运算符
- Operator(运算符)
- §rAny(任意)§0
- §rAny(任意)§0
二元apply2使用指定的运算符计算两个指定的值
- Operator(运算符)
- §rAny(任意)§0
- §rAny(任意)§0
- §rAny(任意)§0
三元apply3使用指定的运算符计算三个指定的值
- Operator(运算符)
- §rAny(任意)§0
- §rAny(任意)§0
- §rAny(任意)§0
- §rAny(任意)§0
Apply Napply_nApply for a given operator the given list of values.
- Operator(运算符)
- List(列表)
- §rAny(任意)§0
Apply 0apply0Apply for a given operator without arguments.
- Operator(运算符)
- §rAny(任意)§0
遍历映射map用列表中的参数依次执行运算符 输出新的映射值列表
- Operator(运算符)
- List(列表)
- List(列表)
过滤filter用指定的断言过滤元素列表
- Operator(运算符)
- List(列表)
- List(列表)
连词.&&.结合两个谓词。
- Operator(运算符)
- Operator(运算符)
- Operator(运算符)
析取.||.取消两个谓词的分离。
- Operator(运算符)
- Operator(运算符)
- Operator(运算符)
反转!.取断言的相反值
- Operator(运算符)
- Operator(运算符)
管道.创建一个新的运算符,将输入的第一个操作的输出值传递给第二个运算符
- Operator(运算符)
- Operator(运算符)
- Operator(运算符)
管道二元.2创建一个新的运算符,将输入的第一个和第二个运算符的输出传递到第三个运算符.
- Operator(运算符)
- Operator(运算符)
- Operator(运算符)
- Operator(运算符)
翻转flip用两个输入翻转运算符的输入参数。
- Operator(运算符)
- Operator(运算符)
减少reduce将指定的运算符应用于列表的所有元素,以将列表减少为一个值。
- Operator(运算符)
- List(列表)
- §rAny(任意)§0
- §rAny(任意)§0
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(运算符)
- List(列表)
- §rAny(任意)§0
Operator By Nameop_by_nameGet the operator that has the given unique name.
- String(字符串)
- Operator(运算符)
NBT Compound SizeNBT{}.sizeThe number of entries inside the given NBT compound tag
- NBT
- Integer(整型)
NBT Compound KeysNBT{}.keysThe list of keys inside the given NBT compound tag
- NBT
- List(列表)
NBT Compound Has KeyNBT{}.has_keyIf the given NBT compound tag contains the given key
- NBT
- String(字符串)
- Boolean(布尔)
NBT Compound Entry TypeNBT{}.typeThe value type in the given NBT compound tag corresponding to the given key
- NBT
- String(字符串)
- String(字符串)
NBT Compound ValueNBT{}.get_tagThe value of any type in the given NBT compound tag with the given key
- NBT
- String(字符串)
- NBT
NBT Compound Value BooleanNBT{}.get_booleanThe Boolean value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- Boolean(布尔)
NBT Compound Value IntegerNBT{}.get_integerThe Integer value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- Integer(整型)
NBT Compound Value LongNBT{}.get_longThe Long value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- Long(长整型)
NBT Compound Value DoubleNBT{}.get_doubleThe Double value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- Double(双精度型)
NBT Compound Value StringNBT{}.get_stringThe String value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- String(字符串)
NBT Compound Value CompoundNBT{}.get_compoundThe Compound value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- NBT
NBT Compound Value List NBTNBT{}.get_list_tagThe NBT List value in the given NBT compound tag with the given key
- NBT
- String(字符串)
- List(列表)
NBT Compound Value Byte ArrayNBT{}.get_list_byteThe Byte Array in the given NBT compound tag with the given key as Integer List
- NBT
- String(字符串)
- List(列表)
NBT Compound Value Integer ArrayNBT{}.get_list_intThe Integer Array in the given NBT compound tag with the given key as Integer List
- NBT
- String(字符串)
- List(列表)
NBT Compound Value Long ArrayNBT{}.get_list_longThe Long Array in the given NBT compound tag with the given key as Long List
- NBT
- String(字符串)
- List(列表)
NBT Compound WithoutNBT{}.withoutGet a copy of the given NBT compound tag without the given key
- NBT
- String(字符串)
- NBT
NBT Compound With BooleanNBT{}.with_booleanGet a copy of the given NBT compound tag with the given Boolean entry
- NBT
- String(字符串)
- Boolean(布尔)
- NBT
NBT Compound With ShortNBT{}.with_shortGet a copy of the given NBT compound tag with the given Integer as a short entry
- NBT
- String(字符串)
- Integer(整型)
- NBT
NBT Compound With IntegerNBT{}.with_integerGet a copy of the given NBT compound tag with the given Integer entry
- NBT
- String(字符串)
- Integer(整型)
- NBT
NBT Compound With LongNBT{}.with_longGet a copy of the given NBT compound tag with the given Long entry
- NBT
- String(字符串)
- Long(长整型)
- NBT
NBT Compound With DoubleNBT{}.with_doubleGet a copy of the given NBT compound tag with the given Double entry
- NBT
- String(字符串)
- Double(双精度型)
- NBT
NBT Compound With FloatNBT{}.with_floatGet a copy of the given NBT compound tag with the given Double as a float entry
- NBT
- String(字符串)
- Double(双精度型)
- NBT
NBT Compound With StringNBT{}.with_stringGet a copy of the given NBT compound tag with the given String entry
- NBT
- String(字符串)
- String(字符串)
- NBT
NBT Compound With NBTNBT{}.with_tagGet a copy of the given NBT compound tag with the given NBT entry
- NBT
- String(字符串)
- NBT
- NBT
NBT Compound With NBT ListNBT{}.with_tag_listGet a copy of the given NBT compound tag with the given NBT List entry
- NBT
- String(字符串)
- List(列表)
- 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
- String(字符串)
- List(列表)
- 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
- String(字符串)
- List(列表)
- 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
- String(字符串)
- List(列表)
- 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
- Boolean(布尔)
NBT Compound UnionNBT{}.∪The union of the given NBT compound tags. Nested tags will be joined recusively.
- NBT
- NBT
- NBT
NBT Compound IntersectionNBT{}.∩The intersection of the given NBT compound tags. Nested tags will be intersected recusively.
- NBT
- NBT
- NBT
NBT Compound MinusNBT{}.∖The difference of the given NBT compound tags. Nested tags will be subtracted recusively.
- NBT
- NBT
- NBT
NBT Boolean As BooleanNBT.as_booleanGet the Boolean value of the given NBT Byte tag
- NBT
- Boolean(布尔)
NBT Byte As IntegerNBT.as_byteGet the Integer value of the given NBT Byte tag
- NBT
- Integer(整型)
NBT Short as IntegerNBT.as_shortGet the Integer value of the given NBT Short tag
- NBT
- Integer(整型)
NBT Integer As IntegerNBT.as_intGet the Integer value of the given NBT Integer tag
- NBT
- Integer(整型)
NBT Long As LongNBT.as_longGet the Long value of the given NBT Long tag
- NBT
- Long(长整型)
NBT Double As DoubleNBT.as_doubleGet the Double value of the given NBT Double tag
- NBT
- Double(双精度型)
NBT Float As DoubleNBT.as_floatGet the Double value of the given NBT Float tag
- NBT
- Double(双精度型)
NBT String As StringNBT.as_stringGet the String value of the given NBT String tag
- NBT
- String(字符串)
NBT List As NBT ListNBT.as_tag_listGet the NBT List value of the given NBT List tag
- NBT
- List(列表)
NBT Byte Array As Byte ListNBT.as_byte_listGet the Byte List value of the given NBT Byte Array tag
- NBT
- List(列表)
NBT Integer Array As Integer ListNBT.as_int_listGet the Integer List value of the given NBT Integer Array tag
- NBT
- List(列表)
NBT Long Array As Long ListNBT.as_long_listGet the Long List value of the given NBT Long Array tag
- NBT
- List(列表)
NBT Byte From BooleanNBT.from_booleanCreate an NBT Byte tag from the given Boolean value
- Boolean(布尔)
- NBT
NBT Short From IntegerNBT.from_shortCreate an NBT Short tag from the given Integer value
- Integer(整型)
- NBT
NBT Byte From IntegerNBT.from_byteCreate an NBT Byte tag from the given Integer value
- Integer(整型)
- NBT
NBT Integer From IntegerNBT.from_intCreate an NBT Integer tag from the given Integer value
- Integer(整型)
- NBT
NBT Long From LongNBT.from_longCreate an NBT Long tag from the given Long value
- Long(长整型)
- NBT
NBT Double From DoubleNBT.from_doubleCreate an NBT Double tag from the given Double value
- Double(双精度型)
- NBT
NBT Float From DoubleNBT.from_floatCreate an NBT Double tag from the given Float value
- Double(双精度型)
- NBT
NBT String From StringNBT.from_stringCreate an NBT String tag from the given String value
- String(字符串)
- NBT
NBT List From Tag ListNBT.from_tag_listCreate an NBT List tag from the given NBT List value
- List(列表)
- NBT
NBT Byte Array From Byte ListNBT.from_byte_listCreate an NBT Byte Array tag from the given Integer List value
- List(列表)
- NBT
NBT Integer Array From Integer ListNBT.from_int_listCreate an NBT Integer Array tag from the given Integer List value
- List(列表)
- NBT
NBT Long Array From Long ListNBT.from_long_listCreate an NBT Long Array tag from the given Long List value
- List(列表)
- NBT
NBT Path Match FirstNBT.path_match_firstApply the given NBT Path expression on the given NBT value, and return the first match
- String(字符串)
- 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
- String(字符串)
- NBT
- List(列表)
NBT Path TestNBT.path_testTest if the given NBT Path expression matches with the given NBT value
- String(字符串)
- NBT
- Boolean(布尔)
Ingredient itemsIngr.itemsThe list of items
- Ingredients
- List(列表)
Ingredient fluidsIngr.fluidsThe list of fluids
- Ingredients
- List(列表)
Ingredient energy elementsIngr.energiesThe list of energy elements
- Ingredients
- List(列表)
Ingredients With ItemIngr.with_itemGet a copy of the given ingredients with the given item at the given ingredient position
- Ingredients
- Integer(整型)
- Item(物品)
- Ingredients
Ingredients With FluidIngr.with_fluidGet a copy of the given ingredients with the given fluid at the given ingredient position
- Ingredients
- Integer(整型)
- Fluid(流体)
- Ingredients
Ingredients With EnergyIngr.with_energyGet a copy of the given ingredients with the given energy at the given ingredient position
- Ingredients
- Integer(整型)
- Long(长整型)
- Ingredients
Ingredients With ItemsIngr.with_itemsGet a copy of the given ingredients with the given list of items at the given ingredient position
- Ingredients
- List(列表)
- Ingredients
Ingredients With FluidsIngr.with_fluidsGet a copy of the given ingredients with the given list of fluids at the given ingredient position
- Ingredients
- List(列表)
- Ingredients
Ingredients With Energy ElementsIngr.with_energiesGet a copy of the given ingredients with the given list of energy elements at the given ingredient position
- Ingredients
- List(列表)
- Ingredients
Recipe Input Ingredientsrecipe_inThe input ingredients of the given recipe
- Recipe
- Ingredients
Recipe Output Ingredientsrecipe_outThe output ingredients of the given recipe
- Recipe
- Ingredients
Recipe With Input IngredientsRecipe.with_inGet a copy of the given recipe with the given ingredients as input
- Recipe
- Ingredients
- Recipe
Recipe With Output IngredientsRecipe.with_outGet a copy of the given recipe with the given ingredients as input
- Recipe
- Ingredients
- Recipe
Recipe With Input and Output IngredientsRecipe.with_ioCreate a recipe with the first ingredients as input, and the second ingredients as output
- Ingredients
- Ingredients
- Recipe
Parseparse_boolean
- String(字符串)
- Boolean(布尔)
Parseparse_double
- String(字符串)
- Double(双精度型)
Parseparse_integer
- String(字符串)
- Integer(整型)
Parseparse_long
- String(字符串)
- Long(长整型)
Parseparse_nbt
- String(字符串)
- NBT
选择?如果第一个值为真,取第二个值,否则取第三个值\n第二个和第三个的类型必须相同
- Boolean(布尔)
- §rAny(任意)§0
- §rAny(任意)§0
- §rAny(任意)§0
复制id复制输入值
- §rAny(任意)§0
- §rAny(任意)§0
常量K第一次输入的值的副本.
- §rAny(任意)§0
- §rAny(任意)§0
- §rAny(任意)§0
转换()
- Integer(整型)
- Double(双精度型)
转换()
- Integer(整型)
- Long(长整型)
转换()
- Double(双精度型)
- Integer(整型)
转换()
- Double(双精度型)
- Long(长整型)
转换()
- Long(长整型)
- Integer(整型)
转换()
- Long(长整型)
- Double(双精度型)