summaryrefslogtreecommitdiff
path: root/README.md
blob: d6e2a7c44a71ef68e2b7c50e525565abebe557a4 (plain)
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
# railroad_paraphernalia
This mod introduces railroad equipment, mostly from the 1986 signaling manual for the USSR railways.

## Point levers
An accessory that makes a railroad switch look professional. Also helps
users of advtrains without train_operator privilege to operate switches in style.

The point levers are actually nothing but mesecon switches which look fancy.

### With black&white arrow:
```
{'dye:black', 'dye:white', 'dye:black'},
{'', 'default:stick', 'default:stick'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
```

### With blue&yellow signal lamp:
```
{'dye:grey', 'dye:yellow', 'dye:white'},
{'', 'default:stick', 'default:stick'},
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
```

While it should be a light source, the details of the model cannot be seen even when it
emits the minimal amount of light.

## Track Blocker
Prevents a train from passing a track segment by placing a "block" in its
way. Isn't synced with advtrains ndb, so works only with manned trains for now.
```
{'dye:white', 'dye:black', 'dye:white'},
{'', 'default:stick', ''},
{'dye:red', 'default:steel_ingot', 'default:steel_ingot'},
```

## Shunting signal
A small signal for shunting operations. Blue = shunting prohibited, white = shunting allowed.
```
{'', 'dye:white', ''},
{'', 'dye:blue', ''},
{'', 'default:stone', ''},
```

It accepts mesecon signals (on = switch to white, off = switch to blue)

## Delimiting post: 
It is placed near switches to show the point past which the locomotive may
not be parked, since it would collide with the train on the other track.
```
{'', 'dye:black', ''},
{'', 'dye:white', ''},
{'', 'default:stone', ''},
```