1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

68 lines
1.1 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 '../XY trainer Kit (Noivern)'
const card: Card = {
set: Set,
name: {
en: "Noivern",
fr: "Bruyverne",
es: "Noivern",
it: "Noivern",
pt: "Noivern",
de: "UHaFnir"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
description: {
en: "They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark."
},
stage: "Stage1",
attacks: [{
name: {
en: "Second Bite"
},
damage: "20+",
effect: {
en: "This attack does 10 more damage for each damage counter on your opponents Active Pokémon."
}
}, {
name: {
en: "Sonic Bazooka"
},
damage: "60+",
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage and your opponents Active Pokémon is now Confused."
}
}],
hp: 110,
types: ["Dragon"],
evolveFrom: {
en: "Noibat",
fr: "Sonistrelle",
es: "Noibat",
it: "Noibat",
pt: "Noibat",
de: "eF-eM"
},
retreat: 1,
weaknesses: [{
type: "Fairy",
value: "×2"
}]
}
export default card