1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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,65 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Aipom",
fr: "Capumain",
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
190,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Scampering Tail",
fr: "Queue Fuyante",
},
effect: {
en: "Once during your turn (before your attack), you may put the top card of your opponent's deck on the bottom of their deck without looking at it.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez placer la carte du dessus du deck de votre adversaire en dessous de son deck sans la regarder.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tail Smack",
fr: "Coup de Queue",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card