mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
77 lines
1.2 KiB
TypeScript
77 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Flashfire'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Butterfree",
|
||
fr: "Papilusion",
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
12,
|
||
],
|
||
hp: 130,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Metapod",
|
||
fr: "Chrysacier",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Quiver Dance",
|
||
fr: "Papillodanse",
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a basic Energy card and attach it to this Pokémon. Shuffle your deck afterward. If you attached Energy in this way, heal 40 damage from this Pokémon.",
|
||
fr: "Cherchez une carte Énergie de base dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck. Si vous avez attaché de l’Énergie de cette façon, soignez 40 dégâts à ce Pokémon.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gust",
|
||
fr: "Tornade",
|
||
},
|
||
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|