mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
94 lines
1.2 KiB
TypeScript
94 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sword & Shield'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rookidee",
|
||
fr: "Minisange",
|
||
es: "Rookidee",
|
||
it: "Rookidee",
|
||
pt: "Rookidee",
|
||
de: "Meikro"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Flap",
|
||
fr: "Battement",
|
||
es: "Aleteo",
|
||
it: "Alabattito",
|
||
pt: "Asa",
|
||
de: "Flattern"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Glide",
|
||
fr: "Glissement",
|
||
es: "Planeo",
|
||
it: "Aliante",
|
||
pt: "Planeio",
|
||
de: "Gleiten"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
description: {
|
||
en: "It will bravely challenge any opponent, no matter how powerful. This Pokémon benefits from every battle—even a defeat increases its strength a bit."
|
||
},
|
||
|
||
dexId: [821]
|
||
}
|
||
|
||
export default card
|