mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
69 lines
968 B
TypeScript
69 lines
968 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Sandstorm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lotad",
|
||
fr: "Nenupiot",
|
||
de: "Loturzel"
|
||
},
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
270,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Rain Dish",
|
||
fr: "Cuvette",
|
||
de: "Regengenuss"
|
||
},
|
||
effect: {
|
||
en: "At any time between turns, remove 1 damage counter from Lotad.",
|
||
fr: "N'importe quand entre deux tours, retirez à Nenupiot un marqueur de dégât.",
|
||
de: "Entferne zu einem beliebigen Zeitpunkt zwischen zwei Zügen 1 Schadensmarke von Loturzel."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|