-
Notifications
You must be signed in to change notification settings - Fork 2
/
talisman.html
74 lines (69 loc) · 3.65 KB
/
talisman.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>モンスターハンターライズ・サンブレイク 傀異錬金ジェネレーター</title>
<meta name="description" content="モンスターハンターライズ・サンブレイク MHRSB 傀異錬成ジェネレーター v16.0.0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/skill_list.js"></script>
</head>
<body>
<div class="container mt-2">
<div class="m-1 row">
<h2 class="col-sm-auto">傀異錬金ジェネレーター v16.0.</h2>
<h2 class="col"><a href="index.html">傀異錬成ジェネレーター</a></h2>
</div>
<form>
<div class="m-1 row">
<label class="form-label col-sm-auto">スロットを選んでください:</label>
<select class="form-select col" id="slot_select" name="slot_select">
<option>-----</option>
</select>
</div>
<div class="m-1 row">
<label class="form-label col-sm-auto">装備ボックス位置 :</label>
<select class="form-select col" id="talisman_pos" name="talisman_pos">
</select>
</div>
<div class="m-1 row">
<label class="form-label alert alert-danger">スキル1とスキル2は重複できませんので、ご注意ください。</label>
<label class="form-label col-sm-auto">スキル1:</label>
<select class="form-select col" id="skill_1" name="skill_1">
<option>-----</option>
</select>
<label class="form-label col-sm-auto">Lv:</label>
<select class="form-select col" id="skill_1_lv" name="skill_1_lv">
<option>-----</option>
</select>
</div>
<div class="m-1 row">
<label class="form-label col-sm-auto">スキル2:</label>
<select class="form-select col" id="skill_2" name="skill_2">
<option>-----</option>
</select>
<label class="form-label col-sm-auto">Lv:</label>
<select class="form-select col" id="skill_2_lv" name="skill_2_lv">
<option>-----</option>
</select>
</div>
<div class="m-1 row">
<div class="col-sm-auto m-1">
<button class="btn btn-primary" type="button" id="gen_template" onclick="genCharmTemplate()">Gen Template</button>
<button class="btn btn-primary" type="button" id="gen_export" onclick="genExport()">Export</button>
<button class="btn btn-outline-secondary" type="button" id="copy_to_clipboard" onclick="copyToClipboard()">Copy</button>
<label class="text-success" id="copy_result"></label>
</div>
<div class="col row ms-1">
<button class="btn btn-primary col-sm-auto me-auto" type="button" id="btn_import" onclick="textImport()">Import</button>
<input class="form-control col ms-1" placeholder="input import text here." id="ipt_import" value="">
</div>
</div>
</form>
<blockquote class="blockquote border bg-light" id="template_result"></blockquote>
</div>
<script src="js/talisman.js"></script>
</body>
</html>