mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
68 lines
1.2 KiB
TypeScript
68 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
dexId: [594],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Alomomola",
|
|
fr: "Mamanbo",
|
|
es: "Alomomola",
|
|
it: "Alomomola",
|
|
pt: "Alomomola",
|
|
de: "Mamolida"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Surf",
|
|
fr: "Surf",
|
|
es: "Surf",
|
|
it: "Surf",
|
|
pt: "Surfar",
|
|
de: "Surfer"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aqua Slash",
|
|
fr: "Aqua Slash",
|
|
es: "Cuchillada Acuática",
|
|
it: "Idrosquarcio",
|
|
pt: "Aqua Corte",
|
|
de: "Aquaschlag"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |