-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathguide.txt
More file actions
55 lines (44 loc) · 2.15 KB
/
guide.txt
File metadata and controls
55 lines (44 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
~{buildcraft/json/insn}
import "buildcraftlib:util" "buildcraftcore:main"
gear "gear_wood"
gear "gear_stone"
gear "gear_iron"
gear "gear_gold"
gear "gear_diamond"
tool "wrench"
tool "paintbrush_clean"
tool "marker_connector"
tool "marker_volume"
tool "marker_path"
tool "list"
tool "volume_box"
block_engine "engine_wood" "buildcraftcore:engine_wood"
block_engine "engine_creative" "buildcraftcore:engine_creative"
trigger "basic" "always_on" "buildcraftcore:trigger.true"
trigger "basic" "redstone_active" "buildcraft:redstone.input.active"
trigger "basic" "redstone_inactive" "buildcraft:redstone.input.inactive"
trigger "item" "inventory_empty" "buildcraft:inventory.empty"
trigger "item" "inventory_contains" "buildcraft:inventory.contains"
trigger "item" "inventory_space" "buildcraft:inventory.space"
trigger "item" "inventory_full" "buildcraft:inventory.full"
trigger "item" "inventory_below_25" "buildcraft:inventorylevel.below25"
trigger "item" "inventory_below_50" "buildcraft:inventorylevel.below50"
trigger "item" "inventory_below_75" "buildcraft:inventorylevel.below75"
trigger "fluid" "fluid_empty" "buildcraft:fluid.empty"
trigger "fluid" "fluid_contains" "buildcraft:fluid.contains"
trigger "fluid" "fluid_space" "buildcraft:fluid.space"
trigger "fluid" "fluid_full" "buildcraft:fluid.full"
trigger "fluid" "fluid_below_25" "buildcraft:fluid.below25"
trigger "fluid" "fluid_below_50" "buildcraft:fluid.below50"
trigger "fluid" "fluid_below_75" "buildcraft:fluid.below75"
trigger "engine" "engine_blue" "buildcraft:engine.stage.blue"
trigger "engine" "engine_green" "buildcraft:engine.stage.green"
trigger "engine" "engine_yellow" "buildcraft:engine.stage.yellow"
trigger "engine" "engine_red" "buildcraft:engine.stage.red"
trigger "engine" "engine_overheat" "buildcraft:engine.stage.overheat"
trigger "automation" "machine_active" "buildcraft:work.scheduled"
trigger "automation" "machine_inactive" "buildcraft:work.done"
action "basic" "redstone" "buildcraft:redstone.output"
action "automation" "machine_control_on" "buildcraft:machine.on"
action "automation" "machine_control_off" "buildcraft:machine.off"
action "automation" "machine_control_loop" "buildcraft:machine.loop"