aurasu 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Play games from your terminal
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Game engine from your terminal.** No install needed.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm
|
|
6
|
+
npm install -g auramaxx
|
|
7
|
+
auramaxx play aurasu
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Aurasu
|
|
11
|
+
|
|
12
|
+
A hit-circle rhythm game built with AuraScript.
|
|
13
|
+
|
|
14
|
+
Run from `examples`:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
cd examples
|
|
18
|
+
npm run aurasu
|
|
7
19
|
```
|
|
8
20
|
|
|
9
21
|
Controls:
|
|
@@ -17,3 +29,5 @@ Gameplay:
|
|
|
17
29
|
- Click circles as the approach ring reaches the hit circle.
|
|
18
30
|
- Judgement windows: `Perfect`, `Good`, `Ok`, `Miss`.
|
|
19
31
|
- Score scales with combo. Accuracy and health determine your grade.
|
|
32
|
+
|
|
33
|
+
See more: https://github.com/Aura-Industry/auramaxx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aurasu",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A hit-circle rhythm game built with AuraJS.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"aura.config.json"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"
|
|
16
|
+
"auramaxxjs": "*"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
|
-
"
|
|
19
|
+
"auramaxxjs",
|
|
20
20
|
"game",
|
|
21
21
|
"rhythm"
|
|
22
22
|
],
|