1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Fates Collide'
const card: Card = {
name: {
en: "Omastar BREAK",
fr: "Amonistar TURBO",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
139,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Omastar",
fr: "Amonistar",
},
stage: "BREAK",
abilities: [
{
type: "Ability",
name: {
en: "Dangerous Tentacle",
fr: "Tentacule Dangereux",
},
effect: {
en: "Once during your turn (before your attack), you may switch 1 of your opponent's Benched Pokémon-EX with his or her Active Pokémon.",
fr: "Une seule fois pendant votre tour(avant votre attaque), vous pouvez échanger l'un des Pokémon-EX de Banc de votre adversaire avec son Pokémon Actif.",
},
},
],
attacks: [
{
name: {
fr: "Règle des Évolutions TURBO",
},
},
],
}
export default card