1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sun & Moon/Sun & Moon/108.ts

82 lines
1.3 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Toucannon",
fr: "Bazoucan",
},
illustrator: "Megumi Mizutani",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
733,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Trumbeak",
fr: "Piclairon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Echoed Voice",
fr: "Écho",
},
effect: {
en: "During your next turn, this Pokémon's Echoed Voice attack does 60 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, lattaque Écho de ce Pokémon inflige 60 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
damage: 60,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Beak Blast",
fr: "Bec-Canon",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Burned.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card