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

64 lines
1.2 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 '../Deoxys'
const card: Card = {
name: {
en: "Taillow",
fr: "Nirondelle",
de: "Schwalbini"
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
276,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fly",
fr: "Vol",
de: "Fly"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of an attack, including damage, done to Taillow during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet. Si c'est face, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Nirondelle lors du prochain tour de votre adversaire.",
de: "Flip a coin. If tails, this attack does nothing. if heads, prevent all effects of an attack, including damage, done to Taillow during your opponent's next turn."
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card