Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

Commit ebcdb90

Browse files
author
APC
committed
Merge branch 'develop' into feature/Create_base
2 parents 039a52d + fc9cea4 commit ebcdb90

File tree

520 files changed

+35130
-451
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

520 files changed

+35130
-451
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
libs/
44
build/
55
dist/
6+
UserData/*
7+
!UserData/items
68

79
### Node template
810

.vscode/settings.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@
44
"appender",
55
"appenders",
66
"cleanlog",
7+
"dimgray",
78
"fesgamelauncher",
89
"fontawesome",
10+
"globby",
11+
"Konnendo",
912
"linuxarm",
1013
"nodir",
14+
"playsinline",
1115
"prenotice",
16+
"royalblue",
1217
"sourcemapped",
1318
"thinsp",
1419
"waitkey",
1520
"webfonts",
21+
"wifi",
1622
"winarm"
17-
]
23+
],
24+
"discord.enabled": true
1825
}

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,16 @@ Answer 2
117117
2. このプロジェクトをフォークする。
118118
3. `npm i`を叩きnpmモジュールをインストールする。
119119
4. `libs`ディレクトリを作る。
120-
5. [Font Awesome (Free for Web v5.15.4)](https://use.fontawesome.com/releases/v5.15.4/fontawesome-free-5.15.4-web.zip) をダウンロードして`libs`ディレクトリ内に解凍する。
121-
6. [sanitize.css (v12.0.1)](https://github.com/csstools/sanitize.css/archive/refs/tags/12.0.1.zip) をダウンロードして`libs`ディレクトリ内に解凍する。
122-
7. `develop`ブランチから`feature/{機能名をSnake_caseで}`という名前のブランチを切る。
123-
8. そのブランチでその機能を作る。
124-
9. 途中でこのプロジェクトの進捗を取り込む場合は`Fetch upstream`ボタンを使用し、`develop`ブランチから自分のブランチにマージする。
125-
10. 新機能が完成しこのプロジェクトに反映させたい場合は、このプロジェクトの進捗を上の方法で取り込む。
126-
11. 自分のブランチからこのプロジェクトの`develop`ブランチへのプルリクエストを送る。
127-
12. レビューを受ける。
128-
13. 修正依頼があれば修正する。
129-
14. 問題がなければ無事、このプロジェクトにマージコミットが作られ反映されます!
120+
5. [Font Awesome (Free for Web v5.15.4)](https://use.fontawesome.com/releases/v5.15.4/fontawesome-free-5.15.4-web.zip) をダウンロードして`libs`ディレクトリ内に`fontawesome-free-5.15.4-web`というディレクトリ名で解凍する。
121+
6. [sanitize.css (v12.0.1)](https://github.com/csstools/sanitize.css/archive/refs/tags/12.0.1.zip) をダウンロードして`libs`ディレクトリ内に`sanitize.css-12.0.1`というディレクトリ名で解凍する。
122+
7. [focus-visibleのPolyfill (v5.2.0)](https://cdn.jsdelivr.net/npm/[email protected]/dist/focus-visible.min.js) をダウンロードして`libs/focus-visible-5.2.0`ディレクトリ内に`focus-visible.min.js`というファイル名で置く。
123+
8. `develop`ブランチから`feature/{機能名をSnake_caseで}`という名前のブランチを切る。
124+
9. そのブランチでその機能を作る。
125+
10. 途中でこのプロジェクトの進捗を取り込む場合は`Fetch upstream`ボタンを使用し、`develop`ブランチから自分のブランチにマージする。
126+
11. 新機能が完成しこのプロジェクトに反映させたい場合は、このプロジェクトの進捗を上の方法で取り込む。
127+
12. 自分のブランチからこのプロジェクトの`develop`ブランチへのプルリクエストを送る。
128+
13. レビューを受ける。
129+
14. 修正依頼があれば修正する。
130+
15. 問題がなければ無事、このプロジェクトにマージコミットが作られ反映されます!
130131

131132

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# アーチャー物語
2+
アーチャー伝説のパクリゲー
3+
4+
## 絶賛製作中
5+
6+
### <使用ライブラリ>
7+
- DXライブラリ(DxLib)
8+
- nlohmnn-json
9+
- <https://qiita.com/javacommons/items/9ea0c8fd43b61b01a8da>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"WindowName": "アーチャー物語 ver1.0",
3+
"FullScreen": true,
4+
"WindowExtendRate": 1.0,
5+
"Player": {
6+
"JoystickSize": 64,
7+
"Speed": 7.0,
8+
"DefaultMaxHP": 500,
9+
"GodTimeMax": 15,
10+
"AttackCooldownMax": 36,
11+
"DefaultAttack": 40,
12+
"Arrow": {
13+
// この値は4倍されます
14+
"Speed": 8.0
15+
}
16+
},
17+
"Monsters": {
18+
"FlowerPlant": {
19+
"AttackSpeed": 120
20+
},
21+
"Slime": {
22+
"MoveCooldown": 60
23+
},
24+
"Golem": {
25+
"AttackSpeed": 120
26+
},
27+
"Bat": {
28+
"AttackSpeed": 90
29+
},
30+
"Tree": {
31+
"AttackSpeed": 180
32+
},
33+
"Virus": {}
34+
},
35+
"Balls": {
36+
"Stone": {
37+
"Speed": 8.0
38+
},
39+
"Jump": {
40+
"High": 64.0,
41+
"Speed": 8.0
42+
},
43+
"Beam": {
44+
"Speed": 8.0
45+
}
46+
}
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
これは、ゲームに必要な内部データが入っているフォルダです。
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)