1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -3,17 +3,20 @@ import Set from '../POP Series 5'
const card: Card = {
name: {
en: "Umbreon Star",
en: "Umbreon ",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
illustrator: "Masakazu Fukuda",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
197,
],
hp: 70,
types: [
"Darkness",
],
@ -27,10 +30,11 @@ const card: Card = {
en: "Dark Ray",
},
effect: {
en: "Once during your turn, when you put Umbreon * from your hand onto your Bench, you may choose 1 card from your opponent's hand without looking and discard it.",
en: "Once during your turn, when you put Umbreon Star from your hand onto your Bench, you may choose 1 card from your opponents hand without looking and discard it.",
},
},
],
attacks: [
{
cost: [
@ -41,17 +45,18 @@ const card: Card = {
en: "Feint Attack",
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké",
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. This attacks damage isnt affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
type: "Fighting"
},
],
resistances: [
{
type: "Psychic",
@ -59,9 +64,14 @@ const card: Card = {
},
],
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card