mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 05:19:55 +00:00
43 lines
977 B
TypeScript
43 lines
977 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ฮาซึโบ",
|
||
id: "Lotad"
|
||
},
|
||
|
||
illustrator: "Ayako Ozaki",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
th: "ใบไม้บนหัวมีคุณสมบัติกันเปื้อน ถึงจะให้โปเกมอนที่ตัวเต็มไปด้วยโคลน ขึ้นขี่ ใบไม้ก็ยังสะอาดเหมือนเดิม",
|
||
id: "Daun di atas kepalanya bersifat menangkal kotoran. Meskipun ia menaikkan Pokémon yang berlumur lumpur di atasnya, daun tersebut akan tetap bersih."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ปืนฉีดน้ำ",
|
||
id: "Pistol Air"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Water"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |