1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

116
cards/sm/sma/SV59.ts Normal file
View File

@ -0,0 +1,116 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sma-SV59",
localId: "SV59",
// Card informations
name: {
en: "Mewtwo-GX",
fr: "Mewtwo-GX",
},
hp: 190,
type: [
Type.PSYCHIC,
],
dexId: 150,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sma/SV59/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV59/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sma/SV59/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sma/SV59/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Full Burst",
fr: "Pleine Puissance",
},
text: {
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre dÉnergies attachées à ce Pokémon.",
},
damage: 30
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Super Absorption",
fr: "Super Absorption",
},
text: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 60
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Psystrike-GX",
fr: "Frappe Psy-GX",
},
text: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Shiny Vault",
code: "sma"
}
}
export default card