mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 16:42:10 +00:00
111 lines
1.5 KiB
TypeScript
111 lines
1.5 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'
|
|
import set from '../../../sets/pl/pl4'
|
|
|
|
|
|
const card: Card = {
|
|
// Card Global Informations
|
|
id: "pl4-4",
|
|
|
|
localId: 4,
|
|
|
|
name: {
|
|
en: "Kabutops",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: "Hajime Kusajima",
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set,
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/4/low",
|
|
},
|
|
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl4/4/high",
|
|
},
|
|
|
|
},
|
|
|
|
|
|
// Card Pokémon Informations
|
|
evolveFrom: {
|
|
en: "Kabuto",
|
|
},
|
|
|
|
dexId: 141,
|
|
|
|
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
name: {
|
|
en: "Primal Scythe",
|
|
},
|
|
|
|
text: {
|
|
en: "You may discard Helix Fossil, Dome Fossil, or Old Amber from your hand. If you do, this attack does 20 damage plus 50 more damage.",
|
|
},
|
|
|
|
damage: "20+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
name: {
|
|
en: "Rock Slide",
|
|
},
|
|
|
|
text: {
|
|
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
},
|
|
|
|
damage: 60,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: Type.GRASS,
|
|
|
|
value: "+30",
|
|
|
|
},
|
|
],
|
|
|
|
|
|
retreat: 2,
|
|
|
|
|
|
// Card Trainer/Energy informations
|
|
|
|
}
|
|
|
|
export default card |