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

80 lines
968 B
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 '../Ruby & Sapphire'
const card: Card = {
name: {
en: "Wailord",
fr: "Wailord",
de: "Wailord"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
321,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Wailmer",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Take Down"
},
effect: {
en: "Wailord does 20 damage to itself.",
fr: "Wailord s'inflige 20 dégâts.",
de: "Wailord does 20 damage to itself."
},
damage: 50,
},
{
cost: [
"Water",
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
de: "Surf"
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card