mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
Updated PL 4 set
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -4,103 +4,132 @@ 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-7",
|
||||
|
||||
localId: 7,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Probopass",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 476,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/7/low",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/7/high",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Nosepass",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
abilities: [{
|
||||
id: 1083,
|
||||
type: AbilityType.POKEBODY,
|
||||
name: {
|
||||
en: "Competitiveness",
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/7/low",
|
||||
},
|
||||
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/7/high",
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Nosepass",
|
||||
},
|
||||
|
||||
dexId: 476,
|
||||
|
||||
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.POKEBODY,
|
||||
|
||||
name: {
|
||||
en: "Competitiveness",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you don't have a Supporter card in play, each of Probopass's attacks does 30 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Top Chop",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "If you don't have a Supporter card in play, each of Probopass's attacks does 30 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
||||
}
|
||||
}],
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tumbling Attack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage.",
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Top Chop",
|
||||
},
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "+20",
|
||||
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tumbling Attack",
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "-20",
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Arceus",
|
||||
code: "pl4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user