mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
102 lines
1.7 KiB
TypeScript
102 lines
1.7 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-35",
|
|
localId: 35,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Poliwrath",
|
|
fr: "Tartard",
|
|
},
|
|
|
|
hp: 130,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 62,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/35/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/35/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp6/35/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp6/35/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Poliwhirl",
|
|
fr: "Quaputzi",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: "Mitsuhiro Arita",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIGHTING
|
|
],
|
|
name: {
|
|
en: "Focus Punch",
|
|
fr: "Mitra-poing",
|
|
},
|
|
text: {
|
|
en: "If Poliwrath was damaged by an attack during your opponent's last turn, this attack does nothing.",
|
|
fr: "Si une attaque a infligé des dégâts à Tartard lors du dernier tour de votre adversaire, cette attaque est sans effet.",
|
|
},
|
|
damage: 60
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Submission",
|
|
fr: "Sacrifice",
|
|
},
|
|
text: {
|
|
en: "Poliwrath does 20 damage to itself.",
|
|
fr: "Tartard s'inflige 20 dégâts.",
|
|
},
|
|
damage: 90
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+30"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Legends Awakened",
|
|
code: "dp6"
|
|
}
|
|
}
|
|
|
|
export default card
|