mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
feat: Add Pocket promo cards 74 to 92 (#829)
This commit is contained in:
49
data/Pokémon TCG Pocket/Promos-A/082.ts
Normal file
49
data/Pokémon TCG Pocket/Promos-A/082.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Poipole",
|
||||
es: "Poipole"
|
||||
},
|
||||
|
||||
illustrator: "Megumi Mizutani",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "This Ultra Beast is well enough liked to be\nchosen as first partner in its own world.",
|
||||
es: "En su mundo, este Ultraente se considera tan entrañable\ncomo para ser elegido compañero de viaje."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "2-Step",
|
||||
es: "2-Step"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 20 damage for each heads.",
|
||||
es: "Lanza 2 monedas. Este ataque hace 20 puntos de daño por cada cara."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
boosters: []
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user