1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,83 @@
import { Card } from '../../../interfaces'
import Set from '../Unleashed'
const card: Card = {
name: {
en: "Tyranitar",
fr: "Tyranocif",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 140,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
fr: "Ymphect",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Tail Crush",
fr: "Destruqueue",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.",
},
damage: 40,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser",
},
effect: {
en: "Discard an Energy card attached to the Defending Pokémon.",
fr: "Défaussez une carte Énergie attachée au Pokémon Défenseur.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card