mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
72
data/Sun & Moon/Forbidden Light/77.ts
Normal file
72
data/Sun & Moon/Forbidden Light/77.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Forbidden Light'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Buzzwole",
|
||||
fr: "Mouscoto",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
794,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
],
|
||||
name: {
|
||||
en: "Sledgehammer",
|
||||
fr: "Coup de Masse",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has exactly 4 Prize cards remaining, this attack does 90 more damage.",
|
||||
fr: "S’il reste exactement 4 cartes Récompense à votre adversaire, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Swing Around",
|
||||
fr: "Balançoire",
|
||||
},
|
||||
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: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user