1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

98
cards/sm/sm3/102.ts Normal file
View File

@ -0,0 +1,98 @@
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: "sm3-102",
localId: 102,
// Card informations
name: {
en: "Persian",
fr: "Persian",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 53,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/102/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/102/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/102/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/102/high.png",
},
},
evolveFrom: {
en: "Meowth",
fr: "Miaouss",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 89,
name: "Sekio"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Screech",
fr: "Grincement",
},
text: {
en: "During your next turn, the Defending Pokémon takes 60 more damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, le Pokémon Défenseur subit 60 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).",
},
},{
cost: [
Type.COLORLESS
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card