1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

72 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Volbeat",
fr: "Muciole",
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
313,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Acrobatics",
fr: "Acrobatie",
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pester",
fr: "Tarabustage",
},
effect: {
en: "If your opponent's Active Pokémon is affected by a Special Condition, this attack does 30 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est affecté par un État Spécial, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card