-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
99 lines (95 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Project Zomboid Build Planner</title>
<meta property="og:type" content="website">
<meta property="og:title" content="Project Zomboid Build Planner">
<meta property="og:description" content="Character traits and occupation build planner with mod support">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="ScottyThePilot">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css">
<link rel="stylesheet" href="stylesheet.css">
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/type-detect@4.1.0/type-detect.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id="planner-overlay" class="hide"></div>
<div id="planner-container">
<header>
<h1>Project Zomboid Build Planner</h1>
<p>For Build 41.78</p>
</header>
<div id="planner-main">
<div id="panel-professions" class="panel">
<h3>Occupations</h3>
<div class="panel-inner"></div>
</div>
<div id="panel-traits-positive" class="panel">
<h3>Positive Traits</h3>
<div class="panel-inner"></div>
</div>
<div id="panel-traits-negative" class="panel">
<h3>Negative Traits</h3>
<div class="panel-inner"></div>
</div>
<div id="panel-traits-chosen" class="panel">
<h3>Chosen Traits</h3>
<div class="panel-inner"></div>
</div>
<div id="panel-major-skills" class="panel">
<h3>Major Skills</h3>
<div class="panel-inner"></div>
<div class="panel-bottom">
<button id="reset-build">Reset</button>
<div id="panel-bottom-points">
<span>Points:</span>
<span id="points">0</span>
</div>
</div>
</div>
</div>
<div id="planner-controls">
<div id="planner-settings">
<div title="Show/hide singleplayer-only traits">
<input type="checkbox" id="setting-is-multiplayer">
<label for="setting-is-multiplayer">Multiplayer?</label>
</div>
<div title="Show/hide sleep related traits">
<input type="checkbox" id="setting-is-sleep-enabled">
<label for="setting-is-sleep-enabled">Sleep Enabled?</label>
</div>
<div title="Show/hide traits that cannot be chosen due to settings or mutual exclusivity">
<input type="checkbox" id="setting-show-unavailable">
<label for="setting-show-unavailable">Show Unavailable Traits?</label>
</div>
</div>
<div id="planner-presets">
<label for="presets">Select a preset:</label>
<select name="presets" id="presets-selector">
<option hidden disabled selected value="null"></option>
</select>
<button id="presets-save">Save</button>
<button id="presets-delete">Delete</button>
</div>
</div>
<div id="planner-mods">
<h3>Mods</h3>
<div id="planner-mods-list"></div>
</div>
<footer>
<p>
Created by <a href="https://github.com/ScottyThePilot">ScottyThePilot</a> •
<a href="https://github.com/ScottyThePilot/pz-buildplanner">View on GitHub</a> •
<a href="https://github.com/ScottyThePilot/pz-buildplanner/blob/main/CREDITS.md">Credits</a>
</p>
<p>
This webpage uses cookies to store your planner builds between browser sessions
</p>
</footer>
</div>
</body>
</html>