mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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
84 lines
1.2 KiB
TypeScript
84 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Woobat",
|
||
fr: "Chovsourir",
|
||
es: "Woobat",
|
||
it: "Woobat",
|
||
pt: "Woobat",
|
||
de: "Fleknoil"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Psychic"],
|
||
stage: "Basic",
|
||
illustrator: "Yuka Morii",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Collect",
|
||
fr: "Collecte",
|
||
es: "Coleccionar",
|
||
it: "Tassa",
|
||
pt: "Collect",
|
||
de: "Sammeln"
|
||
},
|
||
|
||
effect: {
|
||
en: "Draw a card.",
|
||
fr: "Piochez une carte.",
|
||
es: "Roba 1 carta.",
|
||
it: "Pesca una carta.",
|
||
pt: "Draw a card.",
|
||
de: "Ziehe 1 Karte."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Gnaw",
|
||
fr: "Ronge",
|
||
es: "Roer",
|
||
it: "Rosicchiamento",
|
||
pt: "Gnaw",
|
||
de: "Nagen"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "It emits ultrasonic waves as it flutters about, searching for its prey—bug Pokémon."
|
||
},
|
||
|
||
dexId: [527],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |