1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Lechonk",
fr: "Gourmelet",
es: "Lechonk",
it: "Lechonk",
pt: "Lechonk"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Whimsy Tackle",
fr: "Charge Bizarre",
es: "Placaje Caprichoso",
it: "Capriccioazione",
pt: "Investida Fantástica"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada."
},
damage: 70
}],
retreat: 1,
regulationMark: "G"
}
export default card