mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
100
cards/dp/dp5/65.ts
Normal file
100
cards/dp/dp5/65.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: "dp5-65",
|
||||
localId: 65,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Glameow",
|
||||
fr: "Chaglam",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 431,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp5/65/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp5/65/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp5/65/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp5/65/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 8,
|
||||
name: "Masakazu Fukuda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
fr: "Appel à la famille",
|
||||
},
|
||||
text: {
|
||||
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.",
|
||||
fr: "Choisissez dans votre deck un Pokémon de base et placez-le sur votre Banc. Ensuite, mélangez votre deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rip Claw",
|
||||
fr: "Griffe déchirante",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "+10"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Majestic Dawn",
|
||||
code: "dp5"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user