mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
84 lines
1.6 KiB
TypeScript
84 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sandstorm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Wailord ex",
|
||
fr: "Wailord ex",
|
||
de: "Wailord ex"
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
321,
|
||
],
|
||
hp: 200,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Wailmer",
|
||
},
|
||
|
||
suffix: "EX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Super Deep Dive",
|
||
fr: "Super gros plongeon",
|
||
de: "Super Deep Dive"
|
||
},
|
||
effect: {
|
||
en: "If you don't have any Benched Pokémon, this attack does nothing. Remove 3 damage counters from Wailord ex. Switch Wailord ex with 1 of your Benched Pokémon.",
|
||
fr: "Si vous n'avez pas de Pokémon sur votre Banc, cette attaque est sans effet. Retirez à Wailord ex trois marqueurs de dégât. Échangez Wailord ex contre un des Pokémon de votre Banc.",
|
||
de: "If you don't have any Benched Pokémon, this attack does nothing. Remove 3 damage counters from Wailord ex, Switch Wailord ex with 1 of your Benched Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Dwindling Wave",
|
||
fr: "Vague diminutrice",
|
||
de: "Dwindling Wave"
|
||
},
|
||
effect: {
|
||
en: "Does 100 damage minus 10 damage for each damage counter on Wailord ex.",
|
||
fr: "Inflige 100 dégâts moins 10 dégâts pour chaque marqueur de dégât sur Wailord ex.",
|
||
de: "Does 100 damage minus 10 damage for each damage counter on Wailord ex."
|
||
},
|
||
damage: "100-",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|