mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
97 lines
1.9 KiB
TypeScript
97 lines
1.9 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: "dp4-42",
|
|
localId: 42,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Huntail",
|
|
fr: "Serpang",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 367,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/42/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/42/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/42/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/42/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Clamperl",
|
|
fr: "Coquiperl",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Ken Sugimori",
|
|
|
|
|
|
|
|
attacks: [{
|
|
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.WATER,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Threaten and Drop",
|
|
fr: "Menacer et lâcher",
|
|
},
|
|
text: {
|
|
en: "If Huntail has any Darkness Energy attached to it, this attack does 30 damage plus 20 more damage and discard a Special Energy card, if any, attached to the Defending Pokémon.",
|
|
fr: "Si Serpang possède de l'Énergie Darkness, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires. Défaussez une carte Énergie spéciale attachée au Pokémon Défenseur, s'il en a.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Great Encounters",
|
|
code: "dp4"
|
|
}
|
|
}
|
|
|
|
export default card
|