mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
73
data/Sword & Shield/Fusion Strike/69.ts
Normal file
73
data/Sword & Shield/Fusion Strike/69.ts
Normal 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
|
Reference in New Issue
Block a user