1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 10:19:18 +00:00

Updated PL 4 set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-05-04 15:27:22 +02:00
parent 2a42283d1d
commit 6a58422ae6
92 changed files with 6581 additions and 4998 deletions

View File

@ -4,90 +4,108 @@ 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 = {
// ids
// Card Global Informations
id: "pl4-4",
localId: 4,
// Card informations
name: {
en: "Kabutops",
},
hp: 130,
type: [
Type.FIGHTING,
],
dexId: 141,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/4/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/4/high",
},
},
evolveFrom: {
en: "Kabuto",
},
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",
},
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Primal Scythe",
// 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+",
},
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.",
{
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,
},
damage: 20
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rock Slide",
],
weaknesses: [
{
type: Type.GRASS,
value: "+30",
},
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
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card