mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
93 lines
1.5 KiB
TypeScript
93 lines
1.5 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "dp6-89",
|
|
localId: 89,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Corphish",
|
|
fr: "Ecrapince",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 341,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/89/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/89/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/89/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/89/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Sumiyoshi Kizuki",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Knock Off",
|
|
fr: "Sabotage",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, choose 1 card from your opponent's hand without looking and discard it.",
|
|
fr: "Lancez une pièce. Si c'est face, choisissez sans regarder une carte de la main de votre adversaire et défaussez-la.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Irongrip",
|
|
fr: "Poigne de fer",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+10"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Legends Awakened",
|
|
code: "dp6"
|
|
}
|
|
}
|
|
|
|
export default card
|