1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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,73 @@
import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Simipour",
fr: "Flotoutan",
es: "Simipour",
it: "Simipour",
pt: "Simipour",
de: "Sodachita"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Water"],
evolveFrom: {
en: "Panpour",
fr: "Flotajou",
es: "Panpour",
it: "Panpour",
pt: "Panpour",
de: "Sodamak"
},
stage: "Stage1",
retreat: 1,
regulationMark: "E",
illustrator: "Shin Nagasawa",
description: {
en: "It prefers places with clean water. When its tuft runs low, it replenishes it by siphoning up water with its tail."
},
attacks: [{
cost: ["Water"],
name: {
en: "Water Pulse"
},
damage: 20,
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Circus Soaking"
},
damage: "60×",
effect: {
en: "Your opponent reveals their hand. This attack does 60 damage for each Supporter card you find there."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card