mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
54 lines
812 B
TypeScript
54 lines
812 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Vullaby",
|
||
fr: "Vostourno"
|
||
},
|
||
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Pluck",
|
||
fr: "Picore"
|
||
},
|
||
effect: {
|
||
en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.",
|
||
fr: "Avant d’infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 60,
|
||
types: ["Darkness"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|