mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
74
data/Platinum/Supreme Victors/17.ts
Normal file
74
data/Platinum/Supreme Victors/17.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Supreme Victors'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Butterfree FB",
|
||||
fr: "Papilusion ",
|
||||
},
|
||||
illustrator: "Lee HyunJung",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
12,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Compound Eyes",
|
||||
fr: "Oeil composé",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon has any Poké-Bodies, each of Butterfree FB's attacks does 30 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
||||
fr: "Si le Pokémon Actif de votre adversaire possède des Poké-Bodies, chacune des attaques de Papilusion inflige 30 dégâts supplémentaires au Pokémon Actif (avant application de la Faiblesse et de la Résistance).",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Select Powder",
|
||||
fr: "Poudre select",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose either Burned or Poisoned. The Defending Pokémon is now affected by that Special Condition.",
|
||||
fr: "Choisissez Brûlé ou Empoisonné. Le Pokémon Défenseur est maintenant affecté par cet État Spécial.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user