1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Felipe Contreras Salinas 5fbcd82457
fix: add missing retreat cost and weakness for some cards (#527)
Co-authored-by: Felipe Contreras Salinas <felipe@bstr.cl>
2024-08-25 02:45:45 +02:00

62 lines
952 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Wizards Black Star Promos'
const card: Card = {
name: {
en: "Pikachu",
},
illustrator: "Keiji Kinebuchi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Growl",
},
effect: {
en: "If the Defending Pokémon attacks Pikachu during your opponent's next turn, any damage done by the attack is reduced by 10 (after applying Weakness and Resistance). (Benching either Pokémon ends this effect.)",
},
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Thundershock",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card