1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +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

107
cards/sm/sm12/142.ts Normal file
View File

@ -0,0 +1,107 @@
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: "sm12-142",
localId: 142,
// Card informations
name: {
en: "Solgaleo",
fr: "Solgaleo",
},
hp: 170,
type: [
Type.METAL,
],
dexId: 791,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/142/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/142/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/142/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/142/high.png",
},
},
evolveFrom: {
en: "Cosmoem",
fr: "Cosmovum",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 66,
name: "Misa Tsutsui"
},
abilities: [{
id: 1381,
type: AbilityType.TALENT,
name: {
en: "Armor of the Sunne",
fr: "Armure du Halo Solaire",
},
text: {
en: "If you have Lunala in play, your Solgaleo and Lunala take 50 less damage from your opponent's attacks (after applying Weakness and Resistance). You can't apply more than 1 Armor of the Sunne Ability at a time.",
fr: "Si vous avez Lunala en jeu, vos Solgaleo et Lunala subissent 50 dégâts de moins provenant des attaques de votre adversaire (après application de la Faiblesse et de la Résistance). Vous ne pouvez pas utiliser plus dun talent Armure du Halo Solaire à la fois.",
}
}],
attacks: [{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sol Fangs",
fr: "Crocs Solaires",
},
text: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
},
damage: 180
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card