mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Changed folder and the automatics imports changes Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed SM promos missing the correct set Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
74 lines
1.1 KiB
TypeScript
74 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BW Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Genesect",
|
||
fr: "Genesect",
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
649,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hyper Beam",
|
||
fr: "Ultralaser",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Breaker Bazooka",
|
||
fr: "Bazooka Infernal",
|
||
},
|
||
effect: {
|
||
en: "Discard all Grass Energy attached to this Pokémon.",
|
||
fr: "Défaussez toutes les Énergies Grass attachées à ce Pokémon.",
|
||
},
|
||
damage: 100,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|