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:
76
data/Black & White/Dragons Exalted/26.ts
Normal file
76
data/Black & White/Dragons Exalted/26.ts
Normal 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
|
Reference in New Issue
Block a user