1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
TCGdex [Bot] e36865e971
editor: fix temporal forces variants (#515)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:57 +02:00

46 lines
661 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
dexId: [318],
set: Set,
name: {
en: "Carvanha",
fr: "Carvanha",
es: "Carvanha",
it: "Carvanha",
pt: "Carvanha",
de: "Kanivanha"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi d'Onda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 30
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card