-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesprawl_sheet.html
executable file
·94 lines (94 loc) · 2.65 KB
/
thesprawl_sheet.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<div class="sheet-row">
<label for="attr_basics">Name & Playbook:</label><br/>
<input type="text" name="attr_basics" style="width:100%;"/>
</div><br/>
<div class="sheet-3colrow">
<div class="sheet-col">
<label for="attr_cool">Cool</label><br/>
<input name="attr_cool" type="text">
<button type="roll" value="/roll 2d6 + @{cool}"/>
</div>
<div class="sheet-col">
<label for="attr_edge">Edge</label><br/>
<input name="attr_edge" type="text">
<button type="roll" value="/roll 2d6 + @{edge}"/>
</div>
<div class="sheet-col">
<label for="attr_meat">Meat</label><br/>
<input name="attr_meat" type="text">
<button type="roll" value="/roll 2d6 + @{meat}"/>
</div>
</div>
<br/>
<div class="sheet-3colrow">
<div class="sheet-col">
<label for="attr_mind">Mind</label><br/>
<input name="attr_mind" type="text">
<button type="roll" value="/roll 2d6 + @{mind}"/>
</div>
<div class="sheet-col">
<label for="attr_style">Style</label><br/>
<input name="attr_style" type="text">
<button type="roll" value="/roll 2d6 + @{style}"/>
</div>
<div class="sheet-col">
<label for="attr_synth">Synth</label><br/>
<input name="attr_synth" type="text">
<button type="roll" value="/roll 2d6 + @{synth}"/>
</div>
</div>
<br/>
<div class="sheet-2colrow">
<div class="sheet-col">
<label for="attr_cred">Cred:</label><br/>
<input type="text" name="attr_cred"/>
</div>
<div class="sheet-col">
<label>Harm:</label>
<input type="checkbox" name="attr_15"/>15:00
<input type="checkbox" name="attr_18"/>18:00
<input type="checkbox" name="attr_21"/>21:00
<input type="checkbox" name="attr_22"/>22:00
<input type="checkbox" name="attr_23"/>23:00
<input type="checkbox" name="attr_00"/>00:00
</div>
</div>
<br/>
<div class="sheet-2colrow">
<div class="sheet-col">
<label for="attr_moves">Moves:</label>
<textarea name="attr_moves" cols="100" rows="20">
</textarea>
</div>
<div class="sheet-col">
<label for="attr_cyber">Cyberwear:</label>
<textarea name="attr_cyber" cols="100" rows="20">
</textarea>
</div>
</div>
<br/>
<div class="sheet-2colrow">
<div class="sheet-col">
<label for="attr_links">Links:</label>
<textarea name="attr_links" cols="100" rows="20">
</textarea>
</div>
<div class="sheet-col">
<label for="attr_contact">Contacts:</label>
<textarea name="attr_contacts" cols="100" rows="20">
</textarea>
</div>
</div>
<br/>
<div class="sheet-2colrow">
<div class="sheet-col">
<label for="attr_gear">Gear:</label>
<textarea name="attr_gear" cols="100" rows="20">
</textarea>
</div>
<div class="sheet-col">
<label for="attr_notes">Notes:</label>
<textarea name="attr_notess" cols="100" rows="20">
</textarea>
</div>
</div>