1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 13:59:55 +00:00

73 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Basculin",
fr: "Bargantua",
},
illustrator: "match",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
550,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flail",
fr: "Fléau",
},
effect: {
en: "Does 10 damage times the number of damage counters on this Pokémon.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégâts placés sur ce Pokémon.",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Final Gambit",
fr: "Tout ou Rien",
},
effect: {
en: "Flip 2 coins. If both of them are tails, this Pokémon does 80 damage to itself.",
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés pile, ce Pokémon s'inflige 80 dégâts.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card