diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/and_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/and_gate.md index baeb5a0c5a2e..cf190fadeabf 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/and_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/and_gate.md @@ -13,6 +13,9 @@ item_ids: # 与门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/comparator.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/comparator.md new file mode 100644 index 000000000000..cfcbeed023db --- /dev/null +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/comparator.md @@ -0,0 +1,101 @@ +--- +navigation: + title: "比较器" + icon: "comparator" + parent: little_big_redstone:logic.md + position: 23 +categories: + - logic +item_ids: + - little_big_redstone:comparator +--- + +# 比较器 + + + ### 模拟 + 比较器所输出信号的值与比较基准信号的相等。基准可为设定中指定的值,或在比较器设为直通时取首个输入信号的值。 + + + + +比较器是能将1到10个输入信号(B₁ - B₁₀)的信号与某个其他信号(A)进行比较的逻辑元件。模式选项决定了输出ON需要全部输入均通过比较,还是任意一个通过比较即可。输出为ON时,其强度等于比较基准信号A的强度。 + +比较器配置为直通时,会开放输入A的端口。也可为其指定常量比较基准,此时不会开放输入A的端口。 + +与其他会比较信号强度的逻辑元件类似,比较器也可配置为输入值大于等于、等于或小于等于输入A时视为通过比较。 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/introduction.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/introduction.md index e09e58b8e318..8cc0e5b76525 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/introduction.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/introduction.md @@ -12,7 +12,7 @@ navigation: -逻辑元件也称逻辑门,是真正驱动电路的组件。所有逻辑元件都可有输入和输出端口。这些端口是传递和修改信号以得到预期结果的方式。逻辑元件完全基于布尔逻辑;换言之,信号只有两个值——“关”/“OFF”(0)和“开”/“ON”(1)。 +逻辑元件也称逻辑门,是真正驱动电路的组件。所有逻辑元件都可有输入和输出端口。这些端口是传递和修改信号以得到预期结果的方式。逻辑元件基于模拟逻辑运作,与红石粉类似;换言之,信号可为0(OFF)到15的任意值。大于等于1的值均视作ON。部分逻辑元件会直接取输入信号的值用于输出。例如,向元件输入值为10的信号,那么假定输出信号为ON,则其值也会为10。有部分元件不遵从此规则,其页面内均已进行说明。通常来说,逻辑门(与、或等)不会将信号值直通至输出。
diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/io.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/io.md index 1cbd6bd2d9e0..31e4c9b3554a 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/io.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/io.md @@ -12,6 +12,11 @@ item_ids: # I/O端口 + + ### 模拟 + I/O端口所输出信号的值与输入信号的相等。 + + I/O端口是对电路传入和读取红石信号的途径。将I/O端口放入电路后,微芯片的对应面即会变为红石面,可借此输入输出红石信号。 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nand_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nand_gate.md index 9ec3b60fad14..6da7b74fed91 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nand_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nand_gate.md @@ -13,6 +13,9 @@ item_ids: # 与非门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nor_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nor_gate.md index 2c8483c684e8..d2ef86d2ccde 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nor_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/nor_gate.md @@ -13,6 +13,9 @@ item_ids: # 或非门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/not_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/not_gate.md index 3290a437e3e3..cdae843ebf2f 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/not_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/not_gate.md @@ -13,6 +13,9 @@ item_ids: # 非门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/or_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/or_gate.md index 557610d48ba5..6428e8d48373 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/or_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/or_gate.md @@ -13,6 +13,9 @@ item_ids: # 或门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/pulse_throttler.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/pulse_throttler.md index eb622a9392ca..7dd494aa0689 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/pulse_throttler.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/pulse_throttler.md @@ -12,6 +12,11 @@ item_ids: # 脉冲节流器 + + ### 模拟 + 在默认情况下,脉冲节流器所输出信号的值与输入信号的相等。若指定了输出信号强度,则仅输出该值。 + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/randomizer.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/randomizer.md index e508390c5e40..fb4f2d0811c2 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/randomizer.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/randomizer.md @@ -12,6 +12,11 @@ item_ids: # 随机发生器 + + ### 模拟 + 随机发生器所输出信号的值与输入信号的相等。 + + 随机发生器的输出端口数目最少为1,最多为10,且同一时刻只会有一个端口输出ON。输入为ON时,每刻都有一定概率任选一个输出端口输出ON信号。该概率可配置,默认情况下此概率为100%,可修改成任意值。例如将该概率设为50%,则在输入为ON时,有一半的时间内会任选一个端口输出ON。各输出的选中概率相等。 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/reader.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/reader.md index 5f8b3e344170..b0fa69c531c6 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/reader.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/reader.md @@ -12,6 +12,11 @@ item_ids: # 读取器 + + ### 布尔 + 只会输出0(OFF)或1(ON)。 + + 读取器是一种逻辑元件。它不会接收来自电路内部的信号,而是会根据相邻容器方块的填充程度输出信号,读取的方向可配置。 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/rs_nor_latch.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/rs_nor_latch.md index fad9daef29e3..e7dd3f6bb159 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/rs_nor_latch.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/rs_nor_latch.md @@ -3,7 +3,7 @@ navigation: title: "RS或非锁存器" icon: "rs_nor_latch" parent: little_big_redstone:logic.md - position: 24 + position: 25 categories: - logic item_ids: @@ -13,6 +13,9 @@ item_ids: # RS或非锁存器 + ### 模拟 + RS或非锁存器会取将其设为ON的输入信号的值用作输出。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/selector.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/selector.md index 6403650bb775..98018137a2c1 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/selector.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/selector.md @@ -12,6 +12,11 @@ item_ids: # 选择器 + + ### 模拟 + 选择器所输出信号的值与输入信号的相等。若选择器处于计数器模式,则取递增和递减信号中较大者的值用作输出。 + + 选择器的输出端口数目最少为2,最多10,且同一时刻只会有一个输出为ON。选择器共有两种模式:计数器和置位器(更多内容见此页面后续)。 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/sequencer.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/sequencer.md index b4c4f12d7d1b..9a91f7b6fc28 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/sequencer.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/sequencer.md @@ -12,6 +12,11 @@ item_ids: # 时序器 + + ### 模拟 + 时序器所输出信号的值与输入信号的相等。但对于时序器而言,其输出信号为ON时输入信号并不一定为ON。此时,时序器会取令其输出变为ON的ON输入信号的值用作输出。 + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/t_flip_flop.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/t_flip_flop.md index 8b3df61e298a..161ee10f71e9 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/t_flip_flop.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/t_flip_flop.md @@ -3,7 +3,7 @@ navigation: title: "T触发器" icon: "t_flip_flop" parent: little_big_redstone:logic.md - position: 23 + position: 24 categories: - logic item_ids: @@ -12,6 +12,11 @@ item_ids: # T触发器 + + ### 模拟 + T触发器会取将其设为ON的输入信号的值用作输出。 + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/tag.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/tag.md index 3851c6bc654a..cacf6acc2ebc 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/tag.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/tag.md @@ -12,6 +12,11 @@ item_ids: # 标信器 + + ### 模拟 + 标信器所输出信号的值与输入信号的相等。在有多个输入信号的情况下(如阈值>1),则使用最高信号的值用作输出。 + + 标信器可在电路间无线收发信号。它有两个模式:发信和探测。探测端是接受信号的一端,发信端则是发送的一端。 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/xor_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/xor_gate.md index 518c351d1740..8642b8c4666e 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/xor_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/logic/xor_gate.md @@ -13,6 +13,9 @@ item_ids: # 异或门 + ### 布尔 + 只会输出0(OFF)或1(ON)。 + ### 真值表 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/redstone_bits.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/redstone_bits.md index 385cb3e14836..a05a8e4cda59 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/redstone_bits.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/_zh_cn/redstone_bits.md @@ -23,7 +23,7 @@ item_ids: 一个输入端口只能连接一条导线,输出端口则没有导线数量限制。如需将多条导线汇集到单个输入端口处,应使用[或门](logic/or_gate.md)。 -传统红石信号的强度可为0到15的整数,红石位粒的信号强度则只可为0或1。换句简单点的话,那就是导线里要么有信号,要么没信号——它是一个严格意义上的布尔系统。 +红石位粒和普通的红石粉功能类似,即信号强度可为0到15。当然,强度为0代表导线为OFF,大于等于1均为ON。 ### 导线的使用 diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/and_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/and_gate.md index 8f8c3954c18b..60a0ad4cc028 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/and_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/and_gate.md @@ -13,6 +13,9 @@ item_ids: # AND Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/comparator.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/comparator.md new file mode 100644 index 000000000000..e9b8490da636 --- /dev/null +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/comparator.md @@ -0,0 +1,108 @@ +--- +navigation: + title: "Comparator" + icon: "comparator" + parent: little_big_redstone:logic.md + position: 23 +categories: + - logic +item_ids: + - little_big_redstone:comparator +--- + +# Comparator + + + ### Analog + Comparators yield an output signal value equal to the value being compared against. This may either be the constant + value set in the settings, or when the comparator is set to pass, the first input value. + + + + +The comparator is a logic component that allows for comparing anywhere between 1 and 10 inputs' (B₁ - B₁₀) signal +strength against some other signal strength (A). The mode option for the comparator determines if all or just one of +the inputs must match the comparison for the output to be ON. When the output is ON, the output signal strength will +equal the signal strength of input A. + +The comparator can be configured to have an input port for input A by setting the signal strength to pass. +Alternatively, it can be configured to have a constant signal used for comparison, in this case it will not have an +input port for input A. + +Similar to other logic components that do comparisons against signal strengths, the comparator can be configured to +require the values be greater than or equal to, equal to, or less than or equal to input A. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/introduction.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/introduction.md index 7aaf6edc7f50..bd5a0f7665e9 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/introduction.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/introduction.md @@ -14,8 +14,12 @@ navigation: Logic components, or what are also sometimes referred to as logic gates, are what drives your circuit. All logic components will either have input or output ports. These ports are how you pass and modify signals to get the results -that you want. Logic components behave purely on a boolean basis - meaning that signals may either have a value of -off (0) or on (1). +that you want. Logic components behave on an analog basis, similar to redstone dust - meaning that signals may be any +value ranging from 0 (off) to 15. Values of 1 and above are considered on. Some logic components will simply pass the +signal value through it. For example, passing an input value of 10 into a component will yield a value of 10 for the +output, given that the output is on. There are exceptions to this behavior, and is denoted on the guide page for each +respective logic component. As a general rule, logic gates (AND, OR, etc.) do not pass signal strength through to +their output.
diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/io.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/io.md index 663b836fa25b..dd362bc65708 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/io.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/io.md @@ -12,6 +12,11 @@ item_ids: # I/O Port + + ### Analog + I/O ports yield an output signal value equal to the input signal value. + + I/O ports are how you can input and output redstone signals to and from your circuits. When I/O ports are placed into diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nand_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nand_gate.md index a4e1b43e148f..d3f2fb5d5fb2 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nand_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nand_gate.md @@ -13,6 +13,9 @@ item_ids: # NAND Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nor_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nor_gate.md index 638df18e78aa..d661eb8c1759 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nor_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/nor_gate.md @@ -13,6 +13,9 @@ item_ids: # NOR Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/not_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/not_gate.md index 841e190d27e5..cdef37324da0 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/not_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/not_gate.md @@ -13,6 +13,9 @@ item_ids: # NOT Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/or_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/or_gate.md index 1653b6ec9fb0..0ebf1c215e7e 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/or_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/or_gate.md @@ -13,6 +13,9 @@ item_ids: # OR Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/pulse_throttler.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/pulse_throttler.md index 4aeca5dbff8c..b4e3a500653e 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/pulse_throttler.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/pulse_throttler.md @@ -12,6 +12,12 @@ item_ids: # Pulse Throttler + + ### Analog + Pulse Throttlers yield an output signal value equal to the input signal value by default. If the signal strength + value is set, the output will always be that constant value. + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/randomizer.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/randomizer.md index b0ab9c34559a..a112201f2171 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/randomizer.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/randomizer.md @@ -12,6 +12,11 @@ item_ids: # Randomizer + + ### Analog + Randomizers yield an output signal value equal to the input signal value. + + The randomizer can have anywhere between 1 and 10 outputs, however only one output can be ON at a time. When the input diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/reader.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/reader.md index cf65217b27af..cc7238624107 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/reader.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/reader.md @@ -12,6 +12,11 @@ item_ids: # Reader + + ### Boolean + Readers will only ever yield an output value of 0 (OFF) or 1 (ON). + + The reader is a logic component that has no input inside of the circuit. Instead, the reader will output a signal based @@ -47,7 +52,7 @@ Below is an example of a reader being used to light up a redstone lamp when the - + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/rs_nor_latch.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/rs_nor_latch.md index 160952933560..ffe53de4e252 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/rs_nor_latch.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/rs_nor_latch.md @@ -3,7 +3,7 @@ navigation: title: "RS NOR Latch" icon: "rs_nor_latch" parent: little_big_redstone:logic.md - position: 24 + position: 25 categories: - logic item_ids: @@ -13,6 +13,9 @@ item_ids: # RS NOR Latch + ### Analog + RS NOR Latches yield an output signal value equal to the input signal value that set it to ON. + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/selector.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/selector.md index f74bd9820ee7..d52886c6cdda 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/selector.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/selector.md @@ -12,6 +12,12 @@ item_ids: # Selector + + ### Analog + Selectors yield an output signal value equal to the input signal value. In the case of using Counter mode, the + highest signal strength between the increment and decrement inputs is used for the output signal strength. + + The selector can have anywhere from 2 to 10 outputs, and only one of the outputs will be ON at any given time. There diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/sequencer.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/sequencer.md index 1f29a28f7dcb..c7ca692e83cd 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/sequencer.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/sequencer.md @@ -12,6 +12,13 @@ item_ids: # Sequencer + + ### Analog + Sequencers yield an output signal value equal to the input signal value. In the case of sequencers, the input value + does not need to be ON in every circumstance for the output to be ON. In such a case, the value of the ON input that + led to the ON output will be used for the output. + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/t_flip_flop.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/t_flip_flop.md index 26894d5e3353..01c283c6e8b8 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/t_flip_flop.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/t_flip_flop.md @@ -3,7 +3,7 @@ navigation: title: "T Flip-Flop" icon: "t_flip_flop" parent: little_big_redstone:logic.md - position: 23 + position: 24 categories: - logic item_ids: @@ -12,6 +12,11 @@ item_ids: # T Flip-Flop + + ### Analog + T Flip-Flops yield an output signal value equal to the input signal value that set it to ON. + + diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/tag.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/tag.md index 83ccfecac4c9..c70155a109a0 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/tag.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/tag.md @@ -12,6 +12,12 @@ item_ids: # Tag + + ### Analog + Tags yield an output signal value equal to the input signal value. In the case of multiple inputs (such as with a + threshold > 1), the highest signal value is used. + + Tags allow you to wirelessly send signals between circuits. Tags have two modes, sensor and emitter. Sensors are how diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/xor_gate.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/xor_gate.md index 16127345872d..1a9d79d916dc 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/xor_gate.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/logic/xor_gate.md @@ -13,6 +13,9 @@ item_ids: # XOR Gate + ### Boolean + Gates will only ever yield an output value of 0 (OFF) or 1 (ON). + ### Truth Table diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/redstone_bits.md b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/redstone_bits.md index 57e435472fe6..fa8a367815a3 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/redstone_bits.md +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/guide/redstone_bits.md @@ -26,8 +26,8 @@ on the left side of logic. Each input port can have exactly one wire connected to it. As for output ports, there is no limit on how many wires can come out of them. If you need to combine multiple wires into one input port, use an [OR gate](logic/or_gate.md). -Where normally redstone may have a signal strength of 0 to 15, redstone bits only have a signal strength of 0 or 1. In -simpler terms, a wire may only be on or off - it is a strictly boolean system. +Redstone bits work similarly to normal redstone dust, where it may have a signal strength ranging from 0 to 15. Of +course, a signal strength of 0 would mean the wire is off, and 1 and above are considered on. ### Working with wires diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/en_us.json b/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/en_us.json index 5f46c2215645..a7ca2e5fbf2f 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/en_us.json +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/en_us.json @@ -25,6 +25,7 @@ "item.little_big_redstone.brown_floppy_disk": "Brown Floppy Disk", "item.little_big_redstone.brown_logic_array": "Brown Logic Array", "item.little_big_redstone.brown_sticky_note": "Brown Sticky Note", + "item.little_big_redstone.comparator": "Comparator", "item.little_big_redstone.cyan_floppy_disk": "Cyan Floppy Disk", "item.little_big_redstone.cyan_logic_array": "Cyan Logic Array", "item.little_big_redstone.cyan_sticky_note": "Cyan Sticky Note", @@ -82,6 +83,8 @@ "item.little_big_redstone.yellow_logic_array": "Yellow Logic Array", "item.little_big_redstone.yellow_sticky_note": "Yellow Sticky Note", "itemGroup.little_big_redstone.little_big_redstone": "Little Big Redstone", + "text.little_big_redstone.all": "All", + "text.little_big_redstone.any": "Any", "text.little_big_redstone.capability_comparator": "Comparator", "text.little_big_redstone.capability_energy": "Energy", "text.little_big_redstone.capability_fluid": "Fluid", @@ -118,6 +121,7 @@ "text.little_big_redstone.guide_tooltip_input_a": "Input A", "text.little_big_redstone.guide_tooltip_input_b": "Input B", "text.little_big_redstone.guide_tooltip_output": "Output", + "text.little_big_redstone.indefinite": "Indefinite", "text.little_big_redstone.input": "Input", "text.little_big_redstone.logic_array_help_1": "Stores all of your redstone bits and logic components!", "text.little_big_redstone.logic_array_help_2": "Can be opened while in the Microchip menu.", @@ -145,6 +149,19 @@ "text.little_big_redstone.logic_config_button_label_tag_threshold": "Threshold: ", "text.little_big_redstone.logic_config_button_label_ticks_and_seconds": "%s ticks (%ss)", "text.little_big_redstone.logic_config_button_label_ticks_and_seconds_singular": "%s tick (%ss)", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_equal_to": "All input signals must be equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_greater_than_or_equal_to": "All input signals must be greater than or equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_less_than_or_equal_to": "All input signals must be less than or equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_equal_to": "All input signals must be equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_greater_than_or_equal_to": "All input signals must be greater than or equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_less_than_or_equal_to": "All input signals must be less than or equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_equal_to": "At least one input signal must be equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_greater_than_or_equal_to": "At least one input signal must be greater than or equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_less_than_or_equal_to": "At least one input signal must be less than or equal to the first input's signal.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_equal_to": "At least one input signal must be equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_greater_than_or_equal_to": "At least one input signal must be greater than or equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_less_than_or_equal_to": "At least one input signal must be less than or equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_comparator_mode": "Whether any or all input(s) need to match the signal strength comparison for the output to be ON.", "text.little_big_redstone.logic_config_button_tooltip_duration": "The time for the output to be on.", "text.little_big_redstone.logic_config_button_tooltip_inputs": "The number of inputs that this component can accept.", "text.little_big_redstone.logic_config_button_tooltip_io_direction": "The direction this port should interact with redstone power on.", @@ -153,6 +170,7 @@ "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_mode_greater_than_or_equal_to": "The input signal must be greater than or equal to %s.", "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_mode_less_than_or_equal_to": "The input signal must be less than or equal to %s.", "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_output": "The output signal will be equal to %s.", + "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_output_pass": "The output signal will be equal to the signal strength of the wire powering the port.", "text.little_big_redstone.logic_config_button_tooltip_io_signal_strength_input": "The redstone signal strength required for the output to be on.", "text.little_big_redstone.logic_config_button_tooltip_io_signal_strength_output": "The redstone signal strength that will be outputted.", "text.little_big_redstone.logic_config_button_tooltip_outputs": "The number of outputs that this component can yield.", @@ -191,7 +209,6 @@ "text.little_big_redstone.logic_config_tooltip_duration": " Duration: %s", "text.little_big_redstone.logic_config_tooltip_global": " Global: %s", "text.little_big_redstone.logic_config_tooltip_inputs": " Inputs: %s", - "text.little_big_redstone.logic_config_tooltip_io_signal": " Signal: %s", "text.little_big_redstone.logic_config_tooltip_io_signal_comparison": " Signal: %s %s", "text.little_big_redstone.logic_config_tooltip_label": " Label: %s", "text.little_big_redstone.logic_config_tooltip_mode": " Mode: %s", @@ -201,6 +218,7 @@ "text.little_big_redstone.logic_config_tooltip_sequencer_auto_reset": " Auto Reset: %s", "text.little_big_redstone.logic_config_tooltip_sequencer_delay": " Delay: %s", "text.little_big_redstone.logic_config_tooltip_sequencer_reset_port": " Reset Port: %s", + "text.little_big_redstone.logic_config_tooltip_signal": " Signal: %s", "text.little_big_redstone.logic_config_tooltip_threshold": " Threshold: %s", "text.little_big_redstone.logic_gate_algebra": "Q = %s", "text.little_big_redstone.logic_gate_algebra_and": "A ∧ B", @@ -210,13 +228,16 @@ "text.little_big_redstone.logic_gate_algebra_or": "A ∨ B", "text.little_big_redstone.logic_gate_algebra_xor": "A ⊻ B", "text.little_big_redstone.logic_help_and_gate": "Output is ON when all inputs are ON, otherwise output is OFF.", + "text.little_big_redstone.logic_help_comparator_1": "The mode determines whether all inputs or at least one must match the comparison.", + "text.little_big_redstone.logic_help_comparator_2": "When the output is ON, the signal strength will always equal the strength being compared against.", "text.little_big_redstone.logic_help_io_port_1": "Can either input or output a redstone signal in the world on a single face. Multiple I/O ports can be used to input and output from different faces.", "text.little_big_redstone.logic_help_io_port_2": "A microchip cannot have both an input and output port on the same face.", "text.little_big_redstone.logic_help_nand_gate": "Output is OFF when all inputs are ON, otherwise output is ON.", "text.little_big_redstone.logic_help_nor_gate": "Output is ON when all inputs are OFF, otherwise output is OFF.", "text.little_big_redstone.logic_help_not_gate": "Output is ON when the input is OFF, and output is OFF when the input is ON.", "text.little_big_redstone.logic_help_or_gate": "Output is ON when any input is ON, otherwise output is OFF.", - "text.little_big_redstone.logic_help_pulse_throttler": "Throttles an input signal and yields an output with a configurable duration.", + "text.little_big_redstone.logic_help_pulse_throttler_1": "Throttles an input signal and yields an output with a configurable duration. When set to indefinite, the output will be ON so long as the input is ON.", + "text.little_big_redstone.logic_help_pulse_throttler_2": "The output signal can be set to pass through, or to a specific value.", "text.little_big_redstone.logic_help_randomizer": "When the input is ON, a random output will be ON a configurable percentage of the time.", "text.little_big_redstone.logic_help_reader_1": "Checks the filled percentage of an adjacent block and yields an ON signal if the block's filled percentage is greater than or equal to the set fill threshold.", "text.little_big_redstone.logic_help_reader_2": "Can be used on item, fluid, or energy storages.", @@ -233,6 +254,7 @@ "text.little_big_redstone.logic_help_xor_gate": "Output is ON when the amount of ON inputs is odd, otherwise output is OFF.", "text.little_big_redstone.no": "No", "text.little_big_redstone.output": "Output", + "text.little_big_redstone.pass": "Pass", "text.little_big_redstone.sensor": "Sensor", "text.little_big_redstone.sticky_note": "Sticky Note", "text.little_big_redstone.sticky_note_edit": "Edit", diff --git a/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/zh_cn.json b/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/zh_cn.json index 5c5efc3552b5..bbaa6a4a02a0 100644 --- a/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/zh_cn.json +++ b/projects/assets/little-big-redstone/1.21/little_big_redstone/lang/zh_cn.json @@ -25,6 +25,7 @@ "item.little_big_redstone.brown_floppy_disk": "棕色软盘", "item.little_big_redstone.brown_logic_array": "棕色逻辑阵列", "item.little_big_redstone.brown_sticky_note": "棕色便签", + "item.little_big_redstone.comparator": "比较器", "item.little_big_redstone.cyan_floppy_disk": "青色软盘", "item.little_big_redstone.cyan_logic_array": "青色逻辑阵列", "item.little_big_redstone.cyan_sticky_note": "青色便签", @@ -82,6 +83,8 @@ "item.little_big_redstone.yellow_logic_array": "黄色逻辑阵列", "item.little_big_redstone.yellow_sticky_note": "黄色便签", "itemGroup.little_big_redstone.little_big_redstone": "Little Big Redstone", + "text.little_big_redstone.all": "所有", + "text.little_big_redstone.any": "任意", "text.little_big_redstone.capability_comparator": "比较器", "text.little_big_redstone.capability_energy": "能量", "text.little_big_redstone.capability_fluid": "流体", @@ -118,6 +121,7 @@ "text.little_big_redstone.guide_tooltip_input_a": "输入A", "text.little_big_redstone.guide_tooltip_input_b": "输入B", "text.little_big_redstone.guide_tooltip_output": "输出", + "text.little_big_redstone.indefinite": "无限期", "text.little_big_redstone.input": "输入", "text.little_big_redstone.logic_array_help_1": "能存储红石位粒和各种逻辑元件!", "text.little_big_redstone.logic_array_help_2": "可在微芯片菜单中打开。", @@ -145,6 +149,19 @@ "text.little_big_redstone.logic_config_button_label_tag_threshold": "阈值:", "text.little_big_redstone.logic_config_button_label_ticks_and_seconds": "%s刻(%ss)", "text.little_big_redstone.logic_config_button_label_ticks_and_seconds_singular": "%s刻(%ss)", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_equal_to": "所有输入信号必须均等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_greater_than_or_equal_to": "所有输入信号必须均大于等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_pass_signal_comparison_mode_less_than_or_equal_to": "所有输入信号必须均小于等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_equal_to": "所有输入信号必须均等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_greater_than_or_equal_to": "所有输入信号必须均大于等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_all_signal_comparison_mode_less_than_or_equal_to": "所有输入信号必须均小于等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_equal_to": "必须至少有一个输入信号等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_greater_than_or_equal_to": "必须至少有一个输入信号大于等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_pass_signal_comparison_mode_less_than_or_equal_to": "必须至少有一个输入信号小于等于首个输入信号。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_equal_to": "必须至少有一个输入信号等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_greater_than_or_equal_to": "必须至少有一个输入信号大于等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_any_signal_comparison_mode_less_than_or_equal_to": "必须至少有一个输入信号小于等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_comparator_mode": "要让输出为ON,应使得所有信号还是任意信号通过信号强度比较。", "text.little_big_redstone.logic_config_button_tooltip_duration": "输出保持ON的时间。", "text.little_big_redstone.logic_config_button_tooltip_inputs": "此元件的输入端口数量。", "text.little_big_redstone.logic_config_button_tooltip_io_direction": "此端口与红石信号的交互面。", @@ -153,6 +170,7 @@ "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_mode_greater_than_or_equal_to": "输入信号的强度必须大于等于%s。", "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_mode_less_than_or_equal_to": "输入信号的强度必须小于等于%s。", "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_output": "输出信号的强度将会等于%s。", + "text.little_big_redstone.logic_config_button_tooltip_io_signal_comparison_output_pass": "输出信号的强度将会等于供能端口导线中信号的强度。", "text.little_big_redstone.logic_config_button_tooltip_io_signal_strength_input": "输出为ON所需输入的红石信号的强度。", "text.little_big_redstone.logic_config_button_tooltip_io_signal_strength_output": "所输出红石信号的强度。", "text.little_big_redstone.logic_config_button_tooltip_outputs": "此元件的输出端口数量。", @@ -191,7 +209,6 @@ "text.little_big_redstone.logic_config_tooltip_duration": " 持续时间:%s", "text.little_big_redstone.logic_config_tooltip_global": " 全局:%s", "text.little_big_redstone.logic_config_tooltip_inputs": " 输入数量:%s", - "text.little_big_redstone.logic_config_tooltip_io_signal": " 信号:%s", "text.little_big_redstone.logic_config_tooltip_io_signal_comparison": " 信号:%s %s", "text.little_big_redstone.logic_config_tooltip_label": " 标签:%s", "text.little_big_redstone.logic_config_tooltip_mode": " 模式:%s", @@ -201,6 +218,7 @@ "text.little_big_redstone.logic_config_tooltip_sequencer_auto_reset": " 自动重置:%s", "text.little_big_redstone.logic_config_tooltip_sequencer_delay": " 延时:%s", "text.little_big_redstone.logic_config_tooltip_sequencer_reset_port": " 重置端口:%s", + "text.little_big_redstone.logic_config_tooltip_signal": " 信号:%s", "text.little_big_redstone.logic_config_tooltip_threshold": " 阈值:%s", "text.little_big_redstone.logic_gate_algebra": "Q = %s", "text.little_big_redstone.logic_gate_algebra_and": "A ∧ B", @@ -210,13 +228,16 @@ "text.little_big_redstone.logic_gate_algebra_or": "A ∨ B", "text.little_big_redstone.logic_gate_algebra_xor": "A ⊻ B", "text.little_big_redstone.logic_help_and_gate": "所有输入为ON时,输出为ON;否则输出为OFF。", + "text.little_big_redstone.logic_help_comparator_1": "模式决定了比较器要求所有信号还是任意信号通过比较。", + "text.little_big_redstone.logic_help_comparator_2": "输出为ON时,其强度必然等于比较基准信号的强度。", "text.little_big_redstone.logic_help_io_port_1": "可在单个面上输入或输出红石信号。如需对多个面输入输出,可使用多个I/O端口。", "text.little_big_redstone.logic_help_io_port_2": "微芯片的单个面无法同时用作输入和输出。", "text.little_big_redstone.logic_help_nand_gate": "所有输入为ON时,输出为OFF;否则输出为ON。", "text.little_big_redstone.logic_help_nor_gate": "所有输入为OFF时,输出为ON;否则输出为OFF。", "text.little_big_redstone.logic_help_not_gate": "输入为OFF时输出为ON,输入为ON时输出为OFF。", "text.little_big_redstone.logic_help_or_gate": "任意一个输入为ON时,输出为ON;否则输出为OFF。", - "text.little_big_redstone.logic_help_pulse_throttler": "对输入信号进行节流,输出持续时间可配置的信号。", + "text.little_big_redstone.logic_help_pulse_throttler_1": "对输入信号进行节流,输出持续时间可配置的信号。设置为“无限期”时,只要输入为ON,输出即会一直保持为ON。", + "text.little_big_redstone.logic_help_pulse_throttler_2": "输出信号可设为直通输入信号的强度,或指定强度值。", "text.little_big_redstone.logic_help_randomizer": "输入为ON时,有一定概率(可配置)会任选一个端口输出ON。", "text.little_big_redstone.logic_help_reader_1": "检查相邻方块的填充百分比,若所得百分比大于等于所设阈值,则输出ON。", "text.little_big_redstone.logic_help_reader_2": "适用于物品、流体、能量容器。", @@ -233,6 +254,7 @@ "text.little_big_redstone.logic_help_xor_gate": "有奇数个输入为ON时,输出为ON;否则输出为OFF。", "text.little_big_redstone.no": "否", "text.little_big_redstone.output": "输出", + "text.little_big_redstone.pass": "直通", "text.little_big_redstone.sensor": "探测", "text.little_big_redstone.sticky_note": "便签", "text.little_big_redstone.sticky_note_edit": "编辑",