mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
95 lines
1.4 KiB
TypeScript
95 lines
1.4 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: "dp2-36",
|
|
localId: 36,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Toxicroak",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 454,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp2/36/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp2/36/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Croagunk",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 94,
|
|
name: "Daisuke Ito"
|
|
},
|
|
|
|
abilities: [{
|
|
id: 40,
|
|
type: AbilityType.POKEBODY,
|
|
name: {
|
|
en: "Poison Sacs",
|
|
},
|
|
text: {
|
|
en: "Your opponent can't remove the Special Condition Poisoned by evolving or devolving his or her Poisoned Pokémon. (This also includes putting a Pokémon Level-Up card onto the Poisoned Pokémon.)",
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Knuckle Claws",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon is now Poisoned.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Mysterious Treasures",
|
|
code: "dp2"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|