mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
71 lines
936 B
TypeScript
71 lines
936 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ruby & Sapphire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Skitty",
|
||
fr: "Skitty",
|
||
de: "Eneco"
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
300,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Plus Energy",
|
||
fr: "Énergie plus",
|
||
de: "Bonusenergie"
|
||
},
|
||
effect: {
|
||
en: "Attach a basic Energy card from your hand to 1 of your Pokémon.",
|
||
fr: "Attachez une carte Énergie de base de votre main à un de vos Pokémon.",
|
||
de: "Lege 1 Basis Energiekarte an 1 deiner Pokémon an."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Scratch",
|
||
fr: "Griffe",
|
||
de: "Kratzer"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|