mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "เดนทูลา",
|
||
id: "Galvantula"
|
||
},
|
||
|
||
illustrator: "mashu",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
th: "โจมตีด้วยการปล่อยขนท้องที่ชาร์จไฟฟ้า ถ้าถูกขนทิ่มทั่วร่างจะชาไปสามวันสามคืน",
|
||
id: "Galvantula melakukan serangan dengan menerbangkan bulu perutnya yang bermuatan listrik. Siapa yang tertusuk bulu tersebut akan kejang-kejang selama tiga hari tiga malam."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
th: "ตารวม",
|
||
id: "Mata Majemuk"
|
||
},
|
||
|
||
effect: {
|
||
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้ ใช้ทำกับโปเกมอนที่มีความสามารถบนตำแหน่งต่อสู้ฝ่ายตรงข้ามจะถูก [+50]",
|
||
id: "Kerusakan akibat serangan yang digunakan oleh Pokémon ini kepada Pokémon yang memiliki Ability di Arena Bertarung lawan bertambah sejumlah 50."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ใยแปล๊บปล๊าบ",
|
||
id: "Jaring Berkejut-kejut"
|
||
},
|
||
|
||
effect: {
|
||
th: "ถ้าโปเกมอนนี้มีพลังงาน[สายฟ้า]ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 80",
|
||
id: "Jika Pokémon ini mengenakan Energi {Listrik}, kerusakan yang diberikan bertambah sejumlah 80."
|
||
},
|
||
|
||
damage: "50+",
|
||
cost: ["Grass", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |