1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

97 lines
1.5 KiB
TypeScript

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: "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.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/89/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/89/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/89/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 7,
name: "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