1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

99 lines
1.8 KiB
TypeScript
Raw Permalink 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Dodrio",
fr: "Dodrio",
de: "Dodri"
},
illustrator: "Miki Tanaka",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
85,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Doduo",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Fast Feet",
fr: "Fugafacile",
de: "Fast Feet"
},
effect: {
en: "Dodrio can retreat even when it is Asleep or Paralyzed.",
fr: "Dodrio peut battre en retraite même s'il est Endormi ou Paralysé.",
de: "Dodrio can retreat even when it is Asleep or Paralyzed."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Retaliate",
fr: "Représailles",
de: "Retaliate"
},
effect: {
en: "Does 10 damage times the number of damage counters on Dodrio.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Dodrio.",
de: "Does 10 damage times the number of damage counters on Dodrio."
},
damage: "10x",
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slashing Strike",
fr: "Coup déchirant",
de: "Slashing Strike"
},
effect: {
en: "Flip a coin. If tails, Dodrio can't use Slashing Strike during your next turn.",
fr: "Lancez une pièce. Si c'est pile, Dodrio ne peut pas utiliser Coup déchirant lors de votre prochain tour.",
de: "Flip a coin. If tails, Dodrio can't use Slashing Strike during your next turn."
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card