mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 12:22:02 +00:00
100
cards/sm/sm1/49.ts
Normal file
100
cards/sm/sm1/49.ts
Normal file
@@ -0,0 +1,100 @@
|
||||
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: "sm1-49",
|
||||
localId: 49,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Chinchou",
|
||||
fr: "Loupio",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 170,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm1/49/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm1/49/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/sm/sm1/49/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/sm/sm1/49/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 6,
|
||||
name: "Ayaka Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Searching Light",
|
||||
fr: "Sonde Lumineuse",
|
||||
},
|
||||
text: {
|
||||
en: "Look at 1 of your face-down Prize cards.",
|
||||
fr: "Regardez l’une de vos cartes Récompense (actuellement face cachée).",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Electro Ball",
|
||||
fr: "Boule Élek",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.METAL,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Sun & Moon",
|
||||
code: "sm1"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user