-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample.wtg
59 lines (52 loc) · 1.03 KB
/
sample.wtg
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
56
57
58
59
title: sample map // title is optional
/***************
value chain
****************/
business - cup of tea
public - cup of tea
cup of tea - cup
cup of tea -- tea
cup of tea --- hot water
hot water - water
hot water -- kettle
kettle - power
/***************
definitions
****************/
// you can inline the evolution
business: |....|....|...x.|.........|
public: |....|....|....|.x...|
// or create blocks
cup of tea: {
evolution: |....|....|..x..|........|
color: Green // you can set colors
}
cup: {
type: buy
evolution: |....|....|....|....x....|
}
tea: {
type: buy
evolution: |....|....|....|.....x....|
}
hot water: {
evolution: |....|....|....|....x....|
color: Blue
}
water: {
type: outsource
evolution: |....|....|....|.....x....|
}
// you can set the evolution with a >
kettle: {
type: build
evolution: |...|...x.|..>.|.......|
}
power: {
type: outsource
evolution: |...|...|....x|.....>..|
}
stage1: genesis / concept
stage2: custom / emerging
stage3: product / converging
stage4: commodity / accepted