1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,76 @@
import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Wailord",
fr: "Wailord",
},
illustrator: "match",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
321,
],
hp: 200,
types: [
"Water",
],
evolveFrom: {
en: "Wailmer",
fr: "Wailmer",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Cannon",
fr: "Canon à O",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 damage times the amount of Water Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts multipliés par le nombre d'Énergies Water attachées à ce Pokémon.",
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Giant Wave",
fr: "Vague Géante",
},
effect: {
en: "This Pokémon can't use Giant Wave during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Vague Géante pendant votre prochain tour.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
}
export default card