|
@@ -38,7 +38,7 @@
|
38
|
38
|
|
39
|
39
|
<p>
|
40
|
40
|
This project generates cards for spells, items, or monsters for RPG games.
|
41
|
|
- The cards are packed on a sheet such that you can print double sided and
|
|
41
|
+ The cards are packed on an A4 page such that you can print it double sided and
|
42
|
42
|
get cards with a front and back.
|
43
|
43
|
Here's an example of what you can create:
|
44
|
44
|
</p>
|
|
@@ -81,6 +81,10 @@
|
81
|
81
|
<a href="generator/generator.htm">Try it out yourself</a>
|
82
|
82
|
</p>
|
83
|
83
|
|
|
84
|
+<h2>Documentation</h2>
|
|
85
|
+
|
|
86
|
+This is not a complete documentation, but some information that should help you get started.
|
|
87
|
+
|
84
|
88
|
<h3>
|
85
|
89
|
<a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>
|
86
|
90
|
Card JSON data
|
|
@@ -101,8 +105,8 @@
|
101
|
105
|
<strong>icon</strong>
|
102
|
106
|
Name of the card icon. You can use all icons from <a href="http://game-icons.net/">game-icons.net</a>.
|
103
|
107
|
For example, the file name of <a href="http://game-icons.net/lorc/originals/plain-dagger.html">this dagger</a>
|
104
|
|
- is <i>plain-dagger.png</i>, so you would use "plain-dagger" as the icon name.
|
105
|
|
- Additional custom names are defined in <i>css/custom-icons.css</i>.
|
|
108
|
+ is "plain-dagger.png", so you would use "plain-dagger" as the icon name.
|
|
109
|
+ Additional custom icon names are defined in <i>css/custom-icons.css</i>.
|
106
|
110
|
</li>
|
107
|
111
|
<li>
|
108
|
112
|
<strong>back_icon</strong>
|
|
@@ -173,6 +177,36 @@
|
173
|
177
|
</ul>
|
174
|
178
|
</p>
|
175
|
179
|
|
|
180
|
+<h2>FAQ</h2>
|
|
181
|
+<h3>
|
|
182
|
+ <a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>
|
|
183
|
+ Is there a user interface for defining the cards?
|
|
184
|
+</h3>
|
|
185
|
+
|
|
186
|
+<p>
|
|
187
|
+ No, at this point, you need to be able to understand and edit JSON data to define the cards.
|
|
188
|
+</p>
|
|
189
|
+
|
|
190
|
+<h3>
|
|
191
|
+ <a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>
|
|
192
|
+ Why is there no user interface for defining the cards?
|
|
193
|
+</h3>
|
|
194
|
+
|
|
195
|
+<p>
|
|
196
|
+ I don't know how to create nice user interfaces, and a text-based input works just fine for me.
|
|
197
|
+ You are welcome to contribute to this project though if you feel it should have a graphical UI.
|
|
198
|
+</p>
|
|
199
|
+
|
|
200
|
+<h3>
|
|
201
|
+ <a name="designer-templates" class="anchor" href="#designer-templates"><span class="octicon octicon-link"></span></a>
|
|
202
|
+ Can I change the layout of the cards?
|
|
203
|
+</h3>
|
|
204
|
+
|
|
205
|
+<p>
|
|
206
|
+ You'll need to edit the CSS and Javascript files to change the layout at this point.
|
|
207
|
+ I might add some customization options later on.
|
|
208
|
+</p>
|
|
209
|
+
|
176
|
210
|
</section>
|
177
|
211
|
</div>
|
178
|
212
|
|