-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Configurathering</title>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./node_modules/vue/dist/vue.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Configurathering</a>
</nav>
<div class="container border rounded border-light p-2 mt-3">
<h4>Configuration tool for various Onaple plugins</h4>
<div class="row">
<!-- Storyteller -->
<div class="col-sm-4 ">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Storyteller</h5>
<h6 class="card-subtitle mb-2 text-muted">A plugin to tell stories</h6>
<p class="card-text">Configure dialogs for NPCs with progression, choices and conditions to give the player a rich RPG experience.</p>
<a href="resources/storyteller.html" class="card-link">Dialogs</a>
</div>
</div>
</div>
<!-- Itemizer -->
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Itemizer</h5>
<h6 class="card-subtitle mb-2 text-muted">A plugin to generate rich items</h6>
<p class="card-text">Configure custom items with specified attributes and given mining abilities.</p>
<a href="resources/itemizer_item.html" class="card-link">Items</a>
<a href="resources/itemizer_miners.html" class="card-link">Mining abilities</a>
</div>
</div>
</div>
<!-- Harvester -->
<div class="col-sm-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title">Harvester</h5>
<h6 class="card-subtitle mb-2 text-muted">A plugin to configure block harvest options</h6>
<p class="card-text">Configure blocks drops and player harvest capabilities depending on blocks.</p>
<a href="resources/harvester_harvestables.html" class="card-link">Harvestables</a>
<a href="resources/harvester_drops.html" class="card-link">Drops</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>