1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

73 lines
877 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 '../Gym Challenge'
const card: Card = {
name: {
en: "Lt. Surge's Raticate",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 60,
types: [
"Colorless",
],
evolveFrom: {
en: "Rattata",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Focus Energy",
},
effect: {
en: "During your next turn, Lt. Surge's Raticate's Double",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Double-edge",
},
effect: {
en: "Lt. Surge's Raticate does 20 damage to itself.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card