mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
89 lines
1.4 KiB
TypeScript
89 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lotad",
|
||
fr: "Nénupiot",
|
||
es: "Lotad",
|
||
it: "Lotad",
|
||
pt: "Lotad",
|
||
de: "Loturzel"
|
||
},
|
||
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mini Drain",
|
||
fr: "Mini-Assèchement",
|
||
es: "Minidrenaje",
|
||
it: "Miniassorbimento",
|
||
pt: "Minidreno",
|
||
de: "Minisauger"
|
||
},
|
||
effect: {
|
||
en: "Heal 10 damage from this Pokémon.",
|
||
fr: "Soignez 10 dégâts de ce Pokémon.",
|
||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 10 danni.",
|
||
pt: "Cure 10 pontos de dano deste Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Aríete",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 60,
|
||
types: ["Grass"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It searches about for clean water. If it does not drink water for too long, the leaf on its head wilts."
|
||
}
|
||
}
|
||
|
||
export default card
|