1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09: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,69 @@
import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Mewtwo",
fr: "Mewtwo",
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 120,
types: [
"Psychic",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Psybarrier",
fr: "Barrage psy",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Mewtwo by your opponent's Pokémon that isn't an Evolved Pokémon.",
fr: "Prévenez tous les effets d'attaques, dégâts inclus, infligés à Mewtwo par un Pokémon de votre adversaire n'étant pas un Pokémon Évolué.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Giga Burn",
fr: "Giga brûlure",
},
effect: {
en: "Discard all Energy attached to Mewtwo.",
fr: "Défaussez toutes les Énergies attachées à Mewtwo.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card