1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00

56 lines
830 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 "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Persian"
},
illustrator: "kirisAki",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
evolveFrom: {
en: "Alolan Meowth"
},
description: {
en: "The round face of Alolan Persian is considered to be a symbol of prosperity in the Alola region, so these Pokémon are very well cared for."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
en: "Fur Coat"
},
effect: {
en: "This Pokémon takes 20 damage from attacks."
}
}],
attacks: [{
name: {
en: "Claw Slash"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card