1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

99
cards/sm/smp/SM88.ts Normal file
View File

@ -0,0 +1,99 @@
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: "smp-SM88",
localId: "SM88",
// Card informations
name: {
en: "Latios",
fr: "Latios",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 381,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/smp/SM88/low.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM88/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/smp/SM88/high.png",
fr: "https://assets.tcgdex.net/fr/sm/smp/SM88/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Break Through",
fr: "Percée",
},
text: {
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 30 dégâts à lun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 30
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lagoon Flight",
fr: "Survol du Lagon",
},
damage: 70
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "SM Black Star Promos",
code: "smp"
}
}
export default card