mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 04:42:11 +00:00
92 lines
1.3 KiB
TypeScript
92 lines
1.3 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: "ex8-50",
|
||
localId: 50,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Vigoroth",
|
||
},
|
||
|
||
hp: 80,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 288,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex8/50/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ex/ex8/50/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Slakoth",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 9,
|
||
name: "Mitsuhiro Arita"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 25,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Vigorous Aura",
|
||
},
|
||
text: {
|
||
en: "As long as Vigoroth is your Active Pokémon, attacks by each player's Active Pokémon (both if there are 2) do 10 more damage to any Active Pokémon (before applying Weakness and Resistance).",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Scratch",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Deoxys",
|
||
code: "ex8"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|