1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 11:29: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,91 +4,114 @@ 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-39",
localId: 39,
// Card informations
name: {
en: "Grovyle",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 253,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/39/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/39/high",
},
},
evolveFrom: {
en: "Treecko",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kouki Saitou",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/39/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/39/high",
},
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Quick Attack",
// Card Pokémon Informations
evolveFrom: {
en: "Treecko",
},
dexId: 253,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Quick Attack",
},
text: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
},
damage: "20+",
},
text: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Cut",
},
damage: 50,
},
damage: 20
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cut",
],
weaknesses: [
{
type: Type.FIRE,
value: "+20",
},
damage: 50
}],
],
weaknesses: [{
type: Type.FIRE,
value: "+20"
}],
resistances: [
{
type: Type.WATER,
resistances: [{
type: Type.WATER,
value: "-20"
}],
value: "-20",
},
],
retreat: 1,
// Card Trainer/Energy informations
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card