1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

68 lines
956 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 '../Next Destinies'
const card: Card = {
name: {
en: "Basculin",
fr: "Bargantua",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
550,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 10,
},
{
cost: [
"Water",
],
name: {
en: "Bared Fangs",
fr: "Crocs à Vif",
},
effect: {
en: "If, before this Pokémon does damage, the Defending Pokémon has no damage counters on it, this attack does nothing.",
fr: "Si, avant que ce Pokémon inflige des dégâts, le Pokémon Défenseur n'a aucun marqueur de dégâts, cette attaque ne fait rien.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card