Add data from auracite

This commit is contained in:
Joshua Goins 2024-12-28 12:23:58 -05:00
parent 6aa1465be1
commit cc87603921
5 changed files with 20 additions and 6 deletions

11
DATA.md Normal file
View file

@ -0,0 +1,11 @@
# Sources
so i don't forget:
* `art-config.json`: hand-written
* `character.json`: from auracite
* `contributions.json`: hand-written
* `music.json.json`: hand-written
* `recent-changes.json`: hand-written
* `sizes.json`: output from art optimizer script
* `wallpapers.json`: hand-written

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 638 KiB

1
data/character.json Normal file
View file

@ -0,0 +1 @@
{"name":"Juritta Monhi","world":"Gilgamesh","data_center":"Aether","city_state":"Gridania","nameday":"14th Sun of the 4th Umbral Moon","guardian":"Nophica, the Matron","currencies":{"gil":177589},"playtime":"68 days, 3 hours, 3 minutes","appearance":{"race":"Viera","gender":"Female","model_type":1,"height":100,"tribe":"Veena","face_type":2,"hair_style":170,"has_highlights":false,"skin_color":103,"eye_color":181,"hair_color":69,"hair_color2":66,"face_features":9,"face_features_color":19,"eyebrows":1,"eye_color2":181,"eye_shape":181,"nose_shape":0,"jaw_shape":1,"lip_style":131,"lip_color":163,"race_feature_size":100,"race_feature_type":2,"bust_size":100,"facepaint":1,"facepaint_color":167},"is_battle_mentor":false,"is_trade_mentor":false,"is_novice":false,"is_returner":false,"player_commendations":276,"plate_title":"Endwalker","plate_classjob":"sage","plate_classjob_level":94,"search_comment":"whaddup gamers"}

View file

@ -3,6 +3,8 @@
<hr>
{{ $char := index .Site.Data "character" }}
<div class="tabs-container">
<input type="radio" id="tab-1" name="my-tabs" checked>
<label for="tab-1" class="tab-label">Warrior of Light</label>
@ -12,16 +14,16 @@
<p>Here's my WoL, and she's stayed consistent shortly after I purchased Shadowbringers.</p>
<img style="display: block; margin-left: auto; margin-right: auto;margin-bottom:10px;width:50%" src="char.jpg" />
<img style="display: block; margin-left: auto; margin-right: auto;margin-bottom:10px;width:50%" src="plate-portrait.png" />
<table>
<tr>
<th>Gender</th>
<td>Female♀</td>
<td>{{ $char.appearance.gender }}</td>
</tr>
<tr>
<th>Race</th>
<td>Viera/Veena</td>
<td>{{ $char.appearance.race }} / {{ $char.appearance.tribe }}</td>
</tr>
<tr>
<th>Height</th>
@ -29,15 +31,15 @@
</tr>
<tr>
<th>Nameday</th>
<td>14th Sun of the 4th Umbral Moon</td>
<td>{{ $char.nameday }}</td>
</tr>
<tr>
<th>City-state</th>
<td>Gridania</td>
<td>{{ $char.city_state }}</td>
</tr>
<tr>
<th>Guardian Deity</th>
<td>Nophica</td>
<td>{{ $char.guardian }}</td>
</tr>
</table>
</div>