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

103 lines
1.8 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: "pl2-58",
localId: 58,
// Card informations
name: {
en: "Carvanha",
fr: "Carvanha Niv. 13",
},
hp: 40,
type: [
Type.DARKNESS,
],
dexId: 318,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/58/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/58/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/58/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/58/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Scary Face",
fr: "Grimace",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon can't attack or retreat during your opponent's next turn.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer ou battre en retraite lors du prochain tour de votre adversaire.",
},
},{
cost: [
Type.DARKNESS
],
name: {
en: "Whirlpool",
fr: "Siphon",
},
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 carte Énergie attachée au Pokémon Défenseur.",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+10"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card