1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01: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,87 +4,104 @@ 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-29",
localId: 29,
// Card informations
name: {
en: "Raticate",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 20,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/29/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/29/high",
},
},
evolveFrom: {
en: "Rattata",
},
tags: [
Tag.STAGE1,
],
illustrator: "Masakazu Fukuda",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/29/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/29/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Rattata",
},
dexId: 20,
type: [
Type.COLORLESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Recruit",
},
text: {
en: "Look at your opponent's hand, choose a Supporter card you find there, and discard it. Then, use the effect of that card as the effect of this attack.",
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Recruit",
},
text: {
en: "Look at your opponent's hand, choose a Supporter card you find there, and discard it. Then, use the effect of that card as the effect of this attack.",
{
cost: [
Type.COLORLESS,
],
name: {
en: "Extend Fang",
},
text: {
en: "If Raticate has a Pokémon Tool card attached to it, this attack does 20 damage plus 40 more damage.",
},
damage: "20+",
},
},{
cost: [
Type.COLORLESS
],
name: {
en: "Extend Fang",
],
weaknesses: [
{
type: Type.FIGHTING,
value: "+20",
},
text: {
en: "If Raticate has a Pokémon Tool card attached to it, this attack does 20 damage plus 40 more damage.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
],
// Card Trainer/Energy informations
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card