mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 05:09:53 +00:00
56 lines
830 B
TypeScript
56 lines
830 B
TypeScript
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 |