1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 11:09:19 +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,75 @@
import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Ambipom",
fr: "Capidextre",
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
424,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Aipom",
fr: "Capumain",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Astonish",
fr: "Étonnement",
},
effect: {
en: "Choose 2 cards from your opponent's hand without looking. Look at the cards you chose, then have your opponent shuffle those cards into his or her deck.",
fr: "Choisissez au hasard 2 cartes dans la main de votre adversaire. Regardez les cartes que vous avez choisies, puis demandez à votre adversaire de les mélanger avec son deck.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tail Spank",
fr: "Matraqueue",
},
effect: {
en: "Discard 2 cards from your hand. (If you can't discard 2 cards from your hand, this attack does nothing.)",
fr: "Défaussez 2 cartes de votre main. (Si vous ne pouvez pas, cette attaque ne fait rien.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card