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

83 lines
1.4 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 '../Team Up'
const card: Card = {
name: {
en: "Tyranitar",
fr: "Tyranocif",
},
illustrator: "Hasuno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 170,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
fr: "Ymphect",
},
stage: "Stage2",
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Spinning Tail",
fr: "Queue Tournante",
},
effect: {
en: "This attack does 30 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 30 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Bite Off",
fr: "Arrachage",
},
effect: {
en: "If your opponent's Active Pokémon is a Pokémon-GX or a Pokémon-{EX}, this attack does 100 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-GX ou un Pokémon-{EX}, cette attaque inflige 100 dégâts supplémentaires.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card