1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +00:00

feat: Add Fusion Strike (#162)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 12:42:38 +01:00
committed by GitHub
parent a0792cd72f
commit 2be1cb2be9
285 changed files with 16346 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Starmie",
fr: "Staross",
es: "Starmie",
it: "Starmie",
pt: "Starmie",
de: "Starmie"
},
rarity: "Rare",
category: "Pokemon",
hp: 90,
types: ["Water"],
evolveFrom: {
en: "Staryu",
fr: "Stari",
es: "Staryu",
it: "Staryu",
pt: "Staryu",
de: "Sterndu"
},
stage: "Stage1",
retreat: 1,
regulationMark: "E",
illustrator: "Megumi Mizutani",
description: {
en: "It rotates its geometrically shaped body to swim through the water. It always seems to be sending out mysterious radio waves."
},
attacks: [{
cost: ["Water"],
name: {
en: "Multishot Star"
},
effect: {
en: "Discard any amount of Water Energy from this Pokémon. Then, for each Energy card you discarded in this way, choose 1 of your opponent's Pokémon and do 30 damage to it. (You can choose the same Pokémon more than once.) This damage isn't affected by Weakness or Resistance."
}
}],
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card