enefel 1.0.147 → 1.0.149
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/package.json +1 -1
- package/store.js +56 -8
package/package.json
CHANGED
package/store.js
CHANGED
|
@@ -7,14 +7,62 @@ const STORE_ITEM_TYPE = {
|
|
|
7
7
|
};
|
|
8
8
|
|
|
9
9
|
const PRODUCTS = {
|
|
10
|
-
1: {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
1: {
|
|
11
|
+
value: 1,
|
|
12
|
+
teeth: 10,
|
|
13
|
+
title: "",
|
|
14
|
+
description: "get 10 teeth",
|
|
15
|
+
img: "coin1.png",
|
|
16
|
+
},
|
|
17
|
+
5: {
|
|
18
|
+
value: 5,
|
|
19
|
+
teeth: 55,
|
|
20
|
+
title: "",
|
|
21
|
+
description: "get 55 teeth",
|
|
22
|
+
img: "coin2.png",
|
|
23
|
+
},
|
|
24
|
+
10: {
|
|
25
|
+
value: 10,
|
|
26
|
+
teeth: 115,
|
|
27
|
+
title: "",
|
|
28
|
+
description: "get 115 teeth",
|
|
29
|
+
img: "coin3.png",
|
|
30
|
+
},
|
|
31
|
+
15: {
|
|
32
|
+
value: 15,
|
|
33
|
+
teeth: 180,
|
|
34
|
+
title: "",
|
|
35
|
+
description: "get 180 teeth",
|
|
36
|
+
img: "coin4.png",
|
|
37
|
+
},
|
|
38
|
+
20: {
|
|
39
|
+
value: 20,
|
|
40
|
+
teeth: 250,
|
|
41
|
+
title: "",
|
|
42
|
+
description: "get 250 teeth",
|
|
43
|
+
img: "coin5.png",
|
|
44
|
+
},
|
|
45
|
+
30: {
|
|
46
|
+
value: 30,
|
|
47
|
+
teeth: 390,
|
|
48
|
+
title: "",
|
|
49
|
+
description: "get 390 teeth",
|
|
50
|
+
img: "coin6.png",
|
|
51
|
+
},
|
|
52
|
+
40: {
|
|
53
|
+
value: 40,
|
|
54
|
+
teeth: 540,
|
|
55
|
+
title: "",
|
|
56
|
+
description: "get 540 teeth",
|
|
57
|
+
img: "coin7.png",
|
|
58
|
+
},
|
|
59
|
+
80: {
|
|
60
|
+
value: 80,
|
|
61
|
+
teeth: 1120,
|
|
62
|
+
title: "",
|
|
63
|
+
description: "get 1120 teeth",
|
|
64
|
+
img: "coin8.png",
|
|
65
|
+
},
|
|
18
66
|
};
|
|
19
67
|
|
|
20
68
|
const AVATAR_PRICE = {
|