1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 18:59:17 +00:00
Files
2021-05-26 14:51:02 +02:00

70 lines
786 B
TypeScript
Raw Permalink 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 '../HGSS Black Star Promos'
const card: Card = {
name: {
en: "Plusle",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
311,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Collect",
},
effect: {
en: "Draw 2 cards.",
},
},
{
cost: [
"Lightning",
],
name: {
en: "Thunder Jolt",
},
effect: {
en: "Flip a coin. If tails, this attack does 10 damage to Plusle.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card