@gamepark/mythologies 0.12.5 → 1.0.0

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.
@@ -56,7 +56,7 @@ export declare enum Entity {
56
56
  YanluoWang = 51,
57
57
  SunWukong = 52,
58
58
  Nuwa = 53,
59
- ChangE = 54,
59
+ XiWangmu = 54,
60
60
  Tianlong = 55,
61
61
  Qilin = 56,
62
62
  Fenghuang = 57,
@@ -53,7 +53,7 @@ export var Entity;
53
53
  Entity[Entity["YanluoWang"] = 51] = "YanluoWang";
54
54
  Entity[Entity["SunWukong"] = 52] = "SunWukong";
55
55
  Entity[Entity["Nuwa"] = 53] = "Nuwa";
56
- Entity[Entity["ChangE"] = 54] = "ChangE";
56
+ Entity[Entity["XiWangmu"] = 54] = "XiWangmu";
57
57
  Entity[Entity["Tianlong"] = 55] = "Tianlong";
58
58
  Entity[Entity["Qilin"] = 56] = "Qilin";
59
59
  Entity[Entity["Fenghuang"] = 57] = "Fenghuang";
@@ -9,7 +9,7 @@ import { Kelpie } from './celtic/Kelpie';
9
9
  import { Leprechaun } from './celtic/Leprechaun';
10
10
  import { Morrigan } from './celtic/Morrigan';
11
11
  import { Selkie } from './celtic/Selkie';
12
- import { ChangE } from './chinese/ChangE';
12
+ import { XiWangmu } from './chinese/XiWangmu';
13
13
  import { Fenghuang } from './chinese/Fenghuang';
14
14
  import { Jiangshi } from './chinese/Jiangshi';
15
15
  import { Mogwai } from './chinese/Mogwai';
@@ -135,7 +135,7 @@ export const entities = {
135
135
  [Entity.YanluoWang]: YanluoWang,
136
136
  [Entity.SunWukong]: SunWukong,
137
137
  [Entity.Nuwa]: Nuwa,
138
- [Entity.ChangE]: ChangE,
138
+ [Entity.XiWangmu]: XiWangmu,
139
139
  [Entity.Tianlong]: Tianlong,
140
140
  [Entity.Qilin]: Qilin,
141
141
  [Entity.Fenghuang]: Fenghuang,
@@ -0,0 +1,2 @@
1
+ import { EntityDescription } from '../EntityDescription';
2
+ export declare const XiWangmu: EntityDescription;
@@ -0,0 +1,6 @@
1
+ export const XiWangmu = {
2
+ summon: [{ gem: 1, favor: 2 }, { gem: 2 }, {}],
3
+ effect: {
4
+ gemTax: (space, xiWangmu) => (space.y === xiWangmu.location.y ? 1 : 0)
5
+ }
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamepark/mythologies",
3
- "version": "0.12.5",
3
+ "version": "1.0.0",
4
4
  "description": "The rules of Mythologies adapted for Game Park",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -27,6 +27,5 @@
27
27
  "devDependencies": {
28
28
  "@gamepark/rules-api": "~7.2.0",
29
29
  "es-toolkit": "^1.44.0"
30
- },
31
- "gitHead": "610c9b10a35cf3cd109092a2bee80a11451121f5"
30
+ }
32
31
  }