1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] eea5c5147b
editor: add rarities for 151 set (#507)
Co-authored-by: Avior <git@avior.me>
2024-07-03 12:38:33 +02:00

46 lines
597 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
dexId: [17],
set: Set,
name: {
fr: "Roucoups",
en: "Pidgeotto",
es: "Pidgeotto",
it: "Pidgeotto",
pt: "Pidgeotto",
de: "Tauboga"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Colorless"],
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Battement",
en: "Flap",
es: "Aleteo",
it: "Alabattito",
pt: "Asa",
de: "Flattern"
},
damage: 20
}],
retreat: 0,
regulationMark: "G",
variants: {
holo: false
}
}
export default card