-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.html
More file actions
181 lines (180 loc) · 11.7 KB
/
Copy pathdatabase.html
File metadata and controls
181 lines (180 loc) · 11.7 KB
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
<!DOCTYPE html>
<html lang="en">
<!-- maintenance-tier: COLD -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paralives Database Hub | Paralives Guide</title>
<meta name="description" content="Browse the live Paralives Version History database and see which structured lookup tables are planned next.">
<link rel="canonical" href="https://paralivesguide.help/database">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BZ21KDKP4C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BZ21KDKP4C');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4624485020338199" crossorigin="anonymous"></script>
<style>
:root {
--cream: #fdf6ec;
--pink: #f4c8c0;
--pink-deep: #e89a8e;
--sage: #b8c9a7;
--sage-deep: #7a9269;
--ink: #3d3530;
--ink-soft: #6b5d54;
--line: #ead9c8;
--shadow: 0 4px 16px rgba(61, 53, 48, 0.06);
--font-display: "Fraunces", Georgia, "Times New Roman", serif;
--font-body: "Inter", -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
--font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.7; }
h1, h2 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
.topbar { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(253, 246, 236, 0.94); backdrop-filter: blur(12px); }
.topbar-inner, .wrap, .site-footer-inner { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.brand span { color: var(--pink-deep); }
.topnav { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: flex-end; }
.topnav a { position: relative; font-size: 0.96rem; color: var(--ink-soft); }
.topnav a[aria-current]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--pink-deep); border-radius: 999px; }
.wrap { padding: 56px 0 112px; }
.crumb { margin-bottom: 18px; color: var(--ink-soft); font-size: 0.94rem; }
h1 { margin: 0 0 16px; font-size: clamp(2.5rem, 6vw, 4rem); }
.lede { max-width: 42rem; margin: 0 0 28px; color: var(--ink-soft); }
.database-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 18px;
margin-top: 28px;
}
.database-card {
padding: 24px;
border: 1px solid var(--line);
border-left: 3px solid var(--sage-deep);
border-radius: 8px;
background: rgba(255, 251, 246, 0.88);
box-shadow: var(--shadow);
}
.icon{display:inline-block;width:1em;height:1em;vertical-align:-0.15em;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round;fill:none;flex:none}
.status { font-family: var(--font-mono); letter-spacing: 0.04em; color: var(--sage-deep); }
.database-card h2 { margin: 10px 0 8px; font-size: 1.45rem; }
.database-card p { margin: 0; color: var(--ink-soft); }
.database-card .card-link { display: inline-flex; margin-top: 18px; font-weight: 700; color: var(--sage-deep); }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 44px; }
.site-footer .brand { margin-bottom: 10px; font-size: 1rem; }
.disclaimer { margin: 0; max-width: 54rem; color: var(--ink-soft); font-size: 0.92rem; }
.lang-switcher { min-height: 1.5rem; margin-top: 18px; }
@media (max-width: 640px) {
.topbar-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
.topnav { justify-content: flex-start; gap: 14px 18px; }
.wrap, .topbar-inner, .site-footer-inner { width: min(1120px, calc(100% - 24px)); }
}
.article-meta {
display: flex;
flex-wrap: wrap;
gap: 8px 16px;
margin: -6px 0 28px;
font-size: 0.92rem;
color: var(--ink-soft);
font-family: var(--font-mono);
}
.article-meta span {
display: inline-flex;
align-items: center;
gap: 6px;
}
.article-meta span + span::before {
content: "·";
margin-right: 8px;
color: var(--line);
}
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true">
<symbol id="i-guides" viewBox="0 0 24 24"><path d="M4 6.5A2.5 2.5 0 0 1 6.5 4H20v14.5A1.5 1.5 0 0 0 18.5 17H6.5A2.5 2.5 0 0 0 4 19.5z"/><path d="M12 4v13"/></symbol>
<symbol id="i-database" viewBox="0 0 24 24"><ellipse cx="12" cy="5" rx="7" ry="3"/><path d="M5 5v6c0 1.7 3.1 3 7 3s7-1.3 7-3V5"/><path d="M5 11v6c0 1.7 3.1 3 7 3s7-1.3 7-3v-6"/></symbol>
<symbol id="i-tools" viewBox="0 0 24 24"><circle cx="12" cy="12" r="7"/><path d="M12 2v4"/><path d="M12 18v4"/><path d="M2 12h4"/><path d="M18 12h4"/><path d="m12 12 4-4"/></symbol>
<symbol id="i-houses" viewBox="0 0 24 24"><path d="M4 10.5 12 4l8 6.5"/><path d="M6 9.5V20h12V9.5"/><path d="M10 20v-5h4v5"/></symbol>
<symbol id="i-updates" viewBox="0 0 24 24"><path d="M12 4a5 5 0 0 0-5 5v2.5c0 .8-.3 1.6-.9 2.1L4.5 15h15l-1.6-1.4a3 3 0 0 1-.9-2.1V9a5 5 0 0 0-5-5"/><path d="M9.5 18a2.5 2.5 0 0 0 5 0"/></symbol>
<symbol id="i-about" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="M12 10v6"/><path d="M12 7h.01"/></symbol>
<symbol id="i-system" viewBox="0 0 24 24"><rect x="3" y="5" width="18" height="12" rx="2"/><path d="M8 19h8"/><path d="M12 17v2"/></symbol>
<symbol id="i-paramaker" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><circle cx="9" cy="10" r=".5"/><circle cx="15" cy="10" r=".5"/><path d="M8.5 16a5 5 0 0 1 7 0"/><path d="M12 13a3 3 0 0 0 3-3 3 3 0 1 0-6 0 3 3 0 0 0 3 3Z"/></symbol>
<symbol id="i-building" viewBox="0 0 24 24"><path d="M5 5h6v6H5z"/><path d="M13 5h6v6h-6z"/><path d="M5 13h6v6H5z"/><path d="M13 13h6v6h-6z"/></symbol>
<symbol id="i-aging" viewBox="0 0 24 24"><path d="M7 4h10"/><path d="M7 20h10"/><path d="M8 4c0 4 4 4 4 8s-4 4-4 8"/><path d="M16 4c0 4-4 4-4 8s4 4 4 8"/></symbol>
<symbol id="i-ea" viewBox="0 0 24 24"><path d="M12 20V9"/><path d="M12 13c0-4 2.5-6.5 6-7-1 4-2.5 6.5-6 7Z"/><path d="M12 15c0-3-1.8-5.1-5-6 0 3.6 1.6 5.9 5 6Z"/></symbol>
<symbol id="i-worth" viewBox="0 0 24 24"><path d="M12 4v16"/><path d="M6 7h12"/><path d="m8 7-3 5a3 3 0 0 0 6 0Z"/><path d="m16 7-3 5a3 3 0 0 0 6 0Z"/><path d="M8 20h8"/></symbol>
<symbol id="i-troubleshooting" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8"/><path d="M12 4v4"/><path d="M12 16v4"/><path d="M4 12h4"/><path d="M16 12h4"/><path d="m6.5 6.5 2.8 2.8"/><path d="m14.7 14.7 2.8 2.8"/><path d="m17.5 6.5-2.8 2.8"/><path d="m9.3 14.7-2.8 2.8"/></symbol>
<symbol id="i-mods" viewBox="0 0 24 24"><path d="M8.5 5.5a2.5 2.5 0 1 1 4 2l2 2a2.5 2.5 0 1 1 2 4l-2 2a2.5 2.5 0 1 1-4 2l-2-2a2.5 2.5 0 1 1-2-4l2-2a2.5 2.5 0 0 1 0-4Z"/></symbol>
<symbol id="i-traits" viewBox="0 0 24 24"><path d="m12 3 1.8 5.2L19 10l-5.2 1.8L12 17l-1.8-5.2L5 10l5.2-1.8Z"/><path d="m18.5 15 .8 2.2 2.2.8-2.2.8-.8 2.2-.8-2.2-2.2-.8 2.2-.8Z"/></symbol>
<symbol id="i-faq" viewBox="0 0 24 24"><path d="M6 7.5A3.5 3.5 0 0 1 9.5 4h5A3.5 3.5 0 0 1 18 7.5v5A3.5 3.5 0 0 1 14.5 16H11l-4 4v-4H9.5A3.5 3.5 0 0 1 6 12.5z"/><path d="M10.5 9a1.5 1.5 0 1 1 3 0c0 1-1.5 1.3-1.5 2.5"/><path d="M12 14h.01"/></symbol>
<symbol id="i-cheats" viewBox="0 0 24 24"><path d="m5 8 4 4-4 4"/><path d="M11 16h5"/><path d="M11 18h7"/></symbol>
<symbol id="i-vs" viewBox="0 0 24 24"><path d="M12 4v6"/><path d="M12 10c0 4-2.5 7-6 10"/><path d="M12 10c0 4 2.5 7 6 10"/></symbol>
<symbol id="i-steam-reviews" viewBox="0 0 24 24"><path d="m12 4 2.3 4.7 5.2.8-3.8 3.7.9 5.3-4.6-2.4-4.6 2.4.9-5.3-3.8-3.7 5.2-.8Z"/></symbol>
<symbol id="i-trust-official" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9"/><path d="m8.5 12 2.3 2.3 4.7-4.8"/></symbol>
<symbol id="i-trust-community" viewBox="0 0 24 24"><path d="M9 13a3 3 0 1 0-3-3 3 3 0 0 0 3 3Z"/><path d="M15.5 14a2.5 2.5 0 1 0-2.5-2.5 2.5 2.5 0 0 0 2.5 2.5Z"/><path d="M4.5 19a4.5 4.5 0 0 1 9 0"/><path d="M13 19a3.5 3.5 0 0 1 7 0"/></symbol>
</svg>
<header class="topbar">
<div class="topbar-inner">
<div class="brand"><a href="/">Paralives<span> </span>Guide</a></div>
<nav class="topnav" aria-label="Primary">
<a href="guides"><svg class="icon" aria-hidden="true"><use href="#i-guides"/></svg> Guides</a>
<a href="database" aria-current="page"><svg class="icon" aria-hidden="true"><use href="#i-database"/></svg> Database</a>
<a href="tools"><svg class="icon" aria-hidden="true"><use href="#i-tools"/></svg> Tools</a>
<a href="houses"><svg class="icon" aria-hidden="true"><use href="#i-houses"/></svg> Houses</a>
<a href="updates"><svg class="icon" aria-hidden="true"><use href="#i-updates"/></svg> Updates</a>
<a href="about"><svg class="icon" aria-hidden="true"><use href="#i-about"/></svg> About</a>
</nav>
</div>
</header>
<main class="wrap">
<div class="crumb"><a href="/">Home</a> / Database</div>
<h1>Database</h1>
<div class="article-meta">
<span>Updated: 2026-05-27</span>
<span>Game Version: EA 0.1</span>
<span>Database index</span>
</div>
<p class="lede">The database layer is where the site shifts from narrative to structured lookup. It opens with live version-history and Workshop-mod snapshots, then expands only when verified in-build data can support useful tables.</p>
<div class="database-grid">
<section class="database-card">
<div class="status">Status: LIVE</div>
<h2>DB-01 · Version History</h2>
<p>Every <span translate="no">Paralives</span> Early Access version, hotfix, and known-issues notice, sourced from official patch notes and auto-refreshed.</p>
<a class="card-link" href="patch-notes">Open Version History</a>
</section>
<section class="database-card">
<div class="status">Status: LIVE</div>
<h2>DB-02 · Workshop Mods</h2>
<p>The most-subscribed <span translate="no">Paralives</span> mods on <span translate="no">Steam Workshop</span>, by <span translate="no">Steam</span>'s own subscriber count — auto-refreshed, not a curated ranking.</p>
<a class="card-link" href="mods">Open Workshop Mods</a>
</section>
<section class="database-card">
<div class="status">Status: PLANNED</div>
<h2>DB-03 · Traits database</h2>
<p>Traits land here once verified in-build trait data is available, keeping the roadmap honest without fabricated rows.</p>
</section>
</div>
</main>
<footer class="site-footer">
<div class="site-footer-inner">
<div class="brand">Paralives<span> </span>Guide</div>
<p class="disclaimer">
Paralives is a trademark of Paralives Studio. This is an unaffiliated fan resource;
nothing here is endorsed by or affiliated with Paralives Studio.
</p>
<!-- language switcher slot — empty at Phase 0, populated in Phase 1.5 -->
<div class="lang-switcher" aria-hidden="true"></div>
</div>
</footer>
</body>
</html>