mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
98
cards/dp/dp4/88.ts
Normal file
98
cards/dp/dp4/88.ts
Normal 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: "dp4-88",
|
||||
localId: 88,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Togepi",
|
||||
fr: "Togepi",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 175,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp4/88/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp4/88/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/dp/dp4/88/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/dp/dp4/88/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Yawn",
|
||||
fr: "Baillement",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Find a friend",
|
||||
fr: "Trouver un ami",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||||
fr: "Lancez une pièce. Si c'est face, choisissez un Pokémon dans votre deck, montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "+10"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Great Encounters",
|
||||
code: "dp4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user