1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

74 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Great Encounters'
const card: Card = {
name: {
en: "Wailord",
fr: "Wailord",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
321,
],
hp: 200,
types: [
"Water",
],
evolveFrom: {
en: "Wailmer",
fr: "Wailmer",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sleeping Pulse",
fr: "Pouls dormant",
},
effect: {
en: "As long as Wailord remains Asleep between turns, remove 1 damage counter from Wailord.",
fr: "Tant que Wailord est Endormi entre deux tours, retirez-lui 1 marqueur de dégât.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
"Colorless",
],
name: {
en: "Sink Deep",
fr: "Couler",
},
effect: {
en: "If Wailord has any damage counters on it, Wailord is now Asleep.",
fr: "Si Wailord possède des marqueurs de dégât, il est maintenant Endormi.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
}
export default card