mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 13:29:55 +00:00
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ไลโวลต์",
|
||
id: "Manectric"
|
||
},
|
||
|
||
illustrator: "Izucch",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
th: "แทบจะไม่ค่อยปรากฏกายให้เห็นต่อหน้าผู้คน ว่ากันว่าบริเวณที่มีฟ้าผ่า คือที่อยู่ของมัน",
|
||
id: "Pokémon ini jarang memperlihatkan dirinya di depan manusia. Kabarnya ada sarang Manectric di tempat yang disambar petir."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ลูกเตะไฟฟ้า",
|
||
id: "Electric Kick"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
th: "แฟลชอิมแพกต์",
|
||
id: "Flash Impact"
|
||
},
|
||
|
||
effect: {
|
||
th: "โปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว ก็จะได้รับแดเมจ 40 ด้วย {โปเกมอนบนเบนช์ จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
|
||
id: "Serangan ini juga memberikan kerusakan sejumlah 40 kepada 1 Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |