1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

81 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Dodrio",
fr: "Dodrio",
},
illustrator: "Misa Tsutsui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
85,
],
hp: 100,
types: [
"Colorless",
],
evolveFrom: {
en: "Doduo",
fr: "Doduo",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tri Attack",
fr: "Triplattaque",
},
effect: {
en: "Flip 3 coins. This attack does 60 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 60 dégâts pour chaque côté face.",
},
damage: 60,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Accelerating Stab",
fr: "Poignard Accélérateur",
},
effect: {
en: "This Pokémon can't use Accelerating Stab during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Poignard Accélérateur pendant votre prochain tour.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card