-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
576 lines (495 loc) · 31.9 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- SETTINGS -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BBZENNEW4X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-BBZENNEW4X');
</script>
<!-- HEADER -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SCSG</title>
<!-- SCRIPTS -->
<!-- Generator -->
<script src="scripts/generator/scsg_main.js" type="module"></script>
<script src="scripts/generator/routine/scsg_data.js" type="module"></script>
<script src="scripts/generator/routine/scsg_infos.js" type="module"></script>
<script src="scripts/generator/routine/scsg_settings.js" type="module"></script>
<script src="scripts/generator/routine/scsg_updater.js" type="module"></script>
<!-- Constants -->
<script src="scripts/constants/screen_constants.js" type="module"></script>
<!-- Managers -->
<script src="scripts/managers/page_manager.js" type="module"></script>
<!-- Math -->
<script src="scripts/math/random.js" type="module"></script>
<!-- #region Collections -->
<!-- Name -->
<script src="scripts/collections/names/eua_names_collection.js" type="module"></script>
<!-- Special -->
<script src="scripts/collections/special/intensity_collection.js" type="module"></script>
<!-- General -->
<script src="scripts/collections/general/occupations_collection.js" type="module"></script>
<script src="scripts/collections/general/countries_collection.js" type="module"></script>
<script src="scripts/collections/general/civil_status_collection.js" type="module"></script>
<!-- Physical -->
<script src="scripts/collections/physical/blood_type_collection.js" type="module"></script>
<script src="scripts/collections/physical/height_collection.js" type="module"></script>
<script src="scripts/collections/physical/weight_collection.js" type="module"></script>
<script src="scripts/collections/physical/body_type_collection.js" type="module"></script>
<!-- Background -->
<script src="scripts/collections/background/ideologies_and_beliefs_collection.js" type="module"></script>
<script src="scripts/collections/background/significant_people_collection.js" type="module"></script>
<script src="scripts/collections/background/important_locations_collection.js" type="module"></script>
<script src="scripts/collections/background/characteristics_collection.js" type="module"></script>
<script src="scripts/collections/background/phobias_collection.js" type="module"></script>
<script src="scripts/collections/background/manias_collection.js" type="module"></script>
<!-- Characteristics -->
<script src="scripts/collections/characteristics/characteristics_collection.js" type="module"></script>
<!-- #endregion -->
<!-- Utilities -->
<script src="scripts/utilities/objects.js" type="module"></script>
<!-- Core -->
<script src="scripts/downloader.js" type="module" defer></script>
<script src="scripts/main.js" type="module" defer></script>
<!-- STYLES -->
<!-- #region CORE -->
<link rel="stylesheet" href="styles/core/default.css">
<link rel="stylesheet" href="styles/core/app.css">
<link rel="stylesheet" href="styles/core/page.css">
<link rel="stylesheet" href="styles/core/specials/credits.css">
<link rel="stylesheet" href="styles/core/specials/hidden.css">
<link rel="stylesheet" href="styles/core/specials/icons.css">
<link rel="stylesheet" href="styles/core/specials/markdown.css">
<link rel="stylesheet" href="styles/core/elements/app_elements.css">
<link rel="stylesheet" href="styles/core/elements/box.css">
<link rel="stylesheet" href="styles/core/elements/buttons.css">
<link rel="stylesheet" href="styles/core/elements/forms.css">
<link rel="stylesheet" href="styles/core/elements/header.css">
<link rel="stylesheet" href="styles/core/elements/table.css">
<!-- #endregion -->
<!-- #region RESPONSIVE -->
<link rel="stylesheet" href="styles/responsive/r_app.css">
<link rel="stylesheet" href="styles/responsive/r_page.css">
<!-- #endregion -->
<!-- ICONS -->
<link rel="icon" type="image/x-icon" href="/assets/graphics/icons/favicon.ico">
<!-- META TAGS -->
<!-- Primary Meta Tags -->
<meta name="title" content="SCSG - Star Character Sheet Generator" />
<meta name="description" content="Easily and quickly generate unique fictional characters based on your preferences for your stories. Ignite your imagination and breathe life into your worlds with the SCSG." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:title" content="SCSG - Star Character Sheet Generator" />
<meta property="og:description" content="Easily and quickly generate unique fictional characters based on your preferences for your stories. Ignite your imagination and breathe life into your worlds with the SCSG." />
<meta property="og:image" content="" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="" />
<meta property="twitter:title" content="SCSG - Star Character Sheet Generator" />
<meta property="twitter:description" content="Easily and quickly generate unique fictional characters based on your preferences for your stories. Ignite your imagination and breathe life into your worlds with the SCSG." />
<meta property="twitter:image" content="" />
</head>
<body>
<div class="page">
<div class="page-header">
<header>
<div id="header-left">
<button id="scsg-aside-menu-button" type="button" class="icon icon-btn icon-menu"></button>
</div>
<div id="header-right">
</div>
</header>
</div>
<div class="page-screen">
<aside class="page-aside">
<div class="app-menu">
<!-- PROCEDURAL MENU -->
</div>
</aside>
<main class="page-main">
<div class="page-content">
<div class="app-sections">
<!-- HOME -->
<div class="app-section-category" data-name="HOME">
<!-- INTRO -->
<section class="app-section app-intro" data-name="Introduction" data-icon="home">
<h1>Introduction</h1>
<h2>Spark your imagination by creating unique characters.</h2>
<p>This application generates bases for fictional characters that can be molded based on your preferences. Customize and create engaging character bases for your stories.</p>
</section>
<!-- ABOUT -->
<section class="app-section" data-name="About" data-icon="info">
<h1>About</h1>
<h2>Welcome to SCSG!</h2>
<p>The <strong>Star Character Sheet Generator (SCSG)</strong> is a free, simple, and fast tool designed to bring your characters to life in your stories, whether for books, RPGs, scripts, and more.</p>
<h2>What makes SCSG special?</h2>
<p>The main purpose of this application is to provide a dynamic and customizable way to create character sheets. Shaping foundations for fictional characters according to your preferences, SCSG makes the process of developing engaging characters easy, fast, secure, and dynamic.</p>
<p>Explore the freedom of customizing the character model according to your preferences, creating more engaging, concise, and meaningful narratives. With SCSG, your journey of character creation becomes not only effective but also exciting!</p>
</section>
<!-- REPOSITORY -->
<section class="app-section" data-name="Repository" data-icon="repository">
<h1>Repository</h1>
<p>This project is a gift to enthusiasts who seek a tool providing a fast, secure, reliable, and comprehensive environment for crafting high-quality characters for a myriad of storytelling purposes.</p>
<p>Developed and maintained by the author <a href="https://github.com/Starciad">Starciad</a>, this project serves as a foundation for exploration and learning across various domains. While the pace of feature releases may not be as rapid due to its role in ongoing study, we sincerely hope that you can find value and inspiration in the features already implemented. Your enjoyment and utilization of our tool bring us immense satisfaction! ❤</p>
<p>Our heartfelt wish is that this application contributes to and enriches your creative endeavors. If you're curious about the inner workings, feel free to explore the project's repository on the GitHub platform.</p>
<button id="gh-repo-button" class="btn btn-primary-success">SCSG GitHub Repository</button>
</section>
<!-- CREDITS -->
<section class="app-section" data-name="Credits" data-icon="heart">
<h1>Credits</h1>
<p>This project comes to life through the collaboration of numerous individuals who deserve special recognition and gratitude!</p>
<h1>Contents</h1>
<h2>Assets</h2>
<p>All graphic assets featured on this website, including icons, banners, and artwork, are exclusive creations designed by the author <strong>Starciad</strong> and are rightfully owned by them. All assets can be accessed in the project repository.</p>
<h1>Collaborators</h1>
<h2>Authors</h2>
<div class="credits-row">
<button id="credits-btn-starciad" class="credits-square">
<div class="ce-avatar ce-avatar-border ce-avatar-starciad"></div>
<div class="ce-username">Starciad</div>
</button>
</div>
<h2>Helpers</h2>
<div class="credits-row">
<button id="credits-btn-igorup" class="credits-square">
<div class="ce-avatar ce-avatar-border ce-avatar-igorup"></div>
<div class="ce-username">Igor_UP</div>
</button>
</div>
<h2>Testers</h2>
<div class="credits-row">
<button id="credits-btn-insanya" class="credits-square">
<div class="ce-avatar ce-avatar-border ce-avatar-insanya"></div>
<div class="ce-username">Insanya29</div>
</button>
<button class="credits-square">
<div class="ce-avatar ce-avatar-focsi"></div>
<div class="ce-username">Focsi</div>
</button>
</div>
</section>
</div>
<!-- GENERATOR -->
<div class="app-section-category" data-name="GENERATOR">
<!-- SETTINGS -->
<section class="app-section" data-name="Settings" data-icon="gear">
<h1>Settings</h1>
<form>
<fieldset>
<legend>General</legend>
<label for="name-style-type">Name Style</label>
<select name="name-style-type" id="name-style-type">
<option value="USA" selected>United States</option>
</select>
<label for="sex-type">Sex</label>
<select name="sex-type" id="sex-type">
<option value="random" selected>Random</option>
<option value="masculine">Masculine</option>
<option value="feminine">Feminine</option>
</select>
<label for="age-range-type">Age Range</label>
<select name="age-range-type" id="age-range-type">
<option value="random" selected>Random</option>
<option value="child">Child (0-12 years old)</option>
<option value="teenager">Teenager (13-19 years old)</option>
<option value="youngAdult">Young Adult (20-29 years old)</option>
<option value="adult">Adult (30-59 years old)</option>
<option value="elderly">Elderly (60+ years old)</option>
</select>
</fieldset>
<div class="app-settings-buttons">
<button id="scsg-generate-button" type="button" class="btn btn-primary-success">Generate</button>
<button id="scsg-reset-button" type="reset" class="btn btn-destructive">Reset</button>
</div>
</form>
</section>
</div>
<!-- CHARACTER -->
<div class="app-section-category" data-name="CHARACTER">
<!-- GENERAL -->
<section class="app-section" data-name="General" data-icon="magnifying-glass">
<h1>General</h1>
<p>Essential and fundamental information to define the essence of your fictional character. This section serves as a starting point, presenting a variety of interconnected fields that compose a general profile.</p>
<h2>Properties</h2>
<div class="app-table-collection">
<!-- ====== -->
<!-- NAME -->
<table>
<thead>
<tr>
<th colspan="2">NAME</th>
</tr>
</thead>
<tbody>
<tr>
<td>First Name</td>
<td id="cs-general-name-first">Empty</td>
</tr>
<tr>
<td>Surname</td>
<td id="cs-general-name-surname">Empty</td>
</tr>
</tbody>
</table>
<!-- PERSONAL -->
<table>
<thead>
<tr>
<th colspan="2">PERSONAL</th>
</tr>
</thead>
<tbody>
<tr>
<td>Age</td>
<td id="cs-general-personal-age">Empty</td>
</tr>
<tr>
<td>Birthday</td>
<td id="cs-general-personal-birthday">Empty</td>
</tr>
<tr>
<td>Sex</td>
<td id="cs-general-personal-sex">Empty</td>
</tr>
<tr>
<td>Civil Status</td>
<td id="cs-general-personal-civil-status">Empty</td>
</tr>
</tbody>
</table>
<!-- PROFESSIONAL -->
<table>
<thead>
<tr>
<th colspan="2">PROFESSIONAL</th>
</tr>
</thead>
<tbody>
<tr>
<td>Occupation</td>
<td id="cs-general-professional-occupation">Empty</td>
</tr>
</tbody>
</table>
<!-- LOCATION -->
<table>
<thead>
<tr>
<th colspan="2">LOCATION</th>
</tr>
</thead>
<tbody>
<tr>
<td>Country of Residence</td>
<td id="cs-general-location-residence-country">Empty</td>
</tr>
<tr>
<td>Country of Birth</td>
<td id="cs-general-location-birth-country">Empty</td>
</tr>
</tbody>
</table>
<!-- ====== -->
</div>
</section>
<!-- PHYSICAL -->
<section class="app-section" data-name="Physical" data-icon="halteres">
<h1>Physical</h1>
<p>Properties related to the body and physical structure of your character. From general characteristics to more specific details, this section provides a comprehensive view of the character's physical capabilities.</p>
<h2>Properties</h2>
<div class="app-table-collection">
<!-- ====== -->
<!-- CHARACTERISTICS -->
<table>
<thead>
<tr>
<th colspan="2">CHARACTERISTICS</th>
</tr>
</thead>
<tbody>
<tr>
<td>Height (Centimeters)</td>
<td id="cs-physical-characteristics-height">Empty</td>
</tr>
<tr>
<td>Weight (Kilograms)</td>
<td id="cs-physical-characteristics-weight">Empty</td>
</tr>
</tbody>
</table>
<!-- BLOOD -->
<table>
<thead>
<tr>
<th colspan="2">BLOOD</th>
</tr>
</thead>
<tbody>
<tr>
<td>Blood Type</td>
<td id="cs-physical-blood-type">Empty</td>
</tr>
<tr>
<td>Rh Factor</td>
<td id="cs-physical-blood-rh-factor">Empty</td>
</tr>
</tbody>
</table>
<!-- BODY -->
<table>
<thead>
<tr>
<th colspan="2">BODY</th>
</tr>
</thead>
<tbody>
<tr>
<td>Type</td>
<td id="cs-physical-body-type">Empty</td>
</tr>
</tbody>
</table>
<!-- ====== -->
</div>
</section>
<!-- CHARACTERISTICS -->
<section class="app-section" data-name="Characteristics" data-icon="star">
<h1>Characteristics</h1>
<p>General characteristics about attributes and aspects of the character, highlighting their strengths and weaknesses in a collection of information.</p>
<h2>Properties</h2>
<article>
<h3>Strength</h3>
<ul>
<li><strong>Classification:</strong> <span id="cs-characteristics-strength-title">Empty</span>;</li>
<li><strong>Details:</strong> <span id="cs-characteristics-strength-description">Empty.</span></li>
</ul>
</article>
<article>
<h3>Constitution</h3>
<ul>
<li><strong>Classification:</strong> <span id="cs-characteristics-constitution-title">Empty</span>;</li>
<li><strong>Details:</strong> <span id="cs-characteristics-constitution-description">Empty.</span></li>
</ul>
</article>
<article>
<h3>Dexterity</h3>
<ul>
<li><strong>Classification:</strong> <span id="cs-characteristics-dexterity-title">Empty</span>;</li>
<li><strong>Details:</strong> <span id="cs-characteristics-dexterity-description">Empty.</span></li>
</ul>
</article>
<article>
<h3>Appearance</h3>
<ul>
<li><strong>Classification:</strong> <span id="cs-characteristics-appearance-title">Empty</span>;</li>
<li><strong>Details:</strong> <span id="cs-characteristics-appearance-description">Empty.</span></li>
</ul>
</article>
<article>
<h3>Intelligence</h3>
<ul>
<li><strong>Classification:</strong> <span id="cs-characteristics-intelligence-title">Empty</span>;</li>
<li><strong>Details:</strong> <span id="cs-characteristics-intelligence-description">Empty.</span></li>
</ul>
</article>
</section>
<!-- BACKGROUND -->
<section class="app-section" data-name="Background" data-icon="tied-scroll">
<h1>Background</h1>
<p>Backgrounds aim to capture the individuality of your character and elements that may not necessarily have a significant narrative performance but bring depth and can help think about what the character would do in a specific situation. This section includes various fields that help identify in a more detailed way how the character is and behaves in the world, highlighting things that enhance them.</p>
<h2>Properties</h2>
<!-- Ideologies/Beliefs -->
<article>
<h3>Ideologies/Beliefs</h3>
<p id="cs-background-ideologies-beliefs-description">Empty.</p>
<h4>Examples</h4>
<ul id="cs-background-ideologies-beliefs-examples">
<li>Empty.</li>
<!-- LIST OF EXAMPLES -->
</ul>
</article>
<!-- Significant People -->
<article>
<h3>Significant People</h3>
<h4>Who is the significant person for your character?</h4>
<p id="cs-background-significant-people-target">Empty.</p>
<h4>Why is this person so important to your character?</h4>
<p id="cs-background-significant-people-reason">Empty.</p>
</article>
<!-- Important Locations -->
<article>
<h3>Important Locations</h3>
<p id="cs-background-important-location">Empty.</p>
</article>
<!-- Dear Belongings -->
<article>
<h3>Dear Belongings</h3>
<p id="cs-background-dear-belongings">Empty.</p>
</article>
<!-- Characteristics -->
<article>
<h3>Characteristics</h3>
<p id="cs-background-characteristic">Empty.</p>
</article>
<!-- Phobias -->
<article>
<h3>Phobias</h3>
<div class="app-items-collection" id="cs-background-phobias-collection">
<!-- PROCEDURAL LIST -->
<span>Empty.</span>
</div>
</article>
<!-- Manias -->
<article>
<h3>Manias</h3>
<div class="app-items-collection" id="cs-background-manias-collection">
<!-- PROCEDURAL LIST -->
<span>Empty.</span>
</div>
</article>
</section>
</div>
<!-- EXPORT -->
<div class="app-section-category" data-name="EXPORT">
<!-- EXPORT -->
<section class="app-section" data-name="Export" data-icon="export">
<h1>Export</h1>
<p>Export the built character information between several files that can be downloaded and stored on your device.</p>
<h2>Options</h2>
<form>
<fieldset>
<legend>Settings</legend>
<label for="downloadable-file-type">File Type</label>
<select name="downloadable-file-type" id="downloadable-file-type">
<option value="json" selected>Json</option>
</select>
</fieldset>
<div class="app-settings-buttons">
<button id="scsg-download-button" type="button" class="btn btn-primary-success">Download</button>
</div>
</form>
</section>
</div>
</div>
</div>
<div class="page-control-panel">
<div class="pcp-left">
<button id="control-panel-btn-previous" type="button" class="btn btn-destructive">Previous</button>
</div>
<div class="pcp-center">
</div>
<div class="pcp-right">
<button id="control-panel-btn-next" type="button" class="btn btn-primary-success">Next</button>
</div>
</div>
</main>
</div>
</div>
</body>
</html>