@gamepark/skyrift 0.2.3 → 0.2.5
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Card } from '../Card';
|
|
2
2
|
export const HighWave = {
|
|
3
3
|
[Card.PowderMonkey]: 2,
|
|
4
|
-
[Card.AeliaSteadyHand]:
|
|
4
|
+
[Card.AeliaSteadyHand]: 1,
|
|
5
5
|
[Card.RicoSkeye]: 1,
|
|
6
|
-
[Card.MistyGunner]:
|
|
6
|
+
[Card.MistyGunner]: 2,
|
|
7
7
|
[Card.TropicalRuffian]: 2,
|
|
8
8
|
[Card.Scallywag]: 2,
|
|
9
9
|
[Card.OttoPouchy]: 1,
|
|
@@ -13,7 +13,7 @@ class OzmaTheMageRule extends CardRule {
|
|
|
13
13
|
}
|
|
14
14
|
onLeave() {
|
|
15
15
|
const powerTokens = this.material(MaterialType.PowerToken).location(LocationType.CardPowerTokens).parent(this.index);
|
|
16
|
-
return
|
|
16
|
+
return powerTokens.moveItems({ type: LocationType.PlayerStash, player: this.player }, powerTokens.getQuantity());
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
export const OzmaTheMage = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gamepark/skyrift",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "The rules of SkyRift adapted for Game Park",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -29,5 +29,6 @@
|
|
|
29
29
|
"@gamepark/rules-api": "~7.2.0",
|
|
30
30
|
"es-toolkit": "^1.43.0",
|
|
31
31
|
"vitest": "^4.0.15"
|
|
32
|
-
}
|
|
32
|
+
},
|
|
33
|
+
"gitHead": "c9aaca775e74ac4103bafb9caa9f963b9db6eb61"
|
|
33
34
|
}
|