mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
Updated Cards to use new Ra
rities Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -4,99 +4,128 @@ 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-1",
|
||||
|
||||
localId: 1,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Charizard",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 6,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/1/low",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/1/high",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charmeleon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
|
||||
abilities: [{
|
||||
id: 96,
|
||||
type: AbilityType.POKEBODY,
|
||||
name: {
|
||||
en: "Fire Formation",
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/1/low",
|
||||
},
|
||||
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/1/high",
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Charmeleon",
|
||||
},
|
||||
|
||||
dexId: 6,
|
||||
|
||||
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.POKEBODY,
|
||||
|
||||
name: {
|
||||
en: "Fire Formation",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Each of Charizard's attacks does 10 more damage for each Fire Pokémon on your Bench to your opponent's Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fire Wing",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Each of Charizard's attacks does 10 more damage for each Fire Pokémon on your Bench to your opponent's Active Pokémon (before applying Weakness and Resistance).",
|
||||
}
|
||||
}],
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Burning Tail",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard a Fire Energy attached to Charizard.",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Fire Wing",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Burning Tail",
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.WATER,
|
||||
|
||||
value: "+30",
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Discard a Fire Energy attached to Charizard.",
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-20",
|
||||
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "+30"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Arceus",
|
||||
code: "pl4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user