mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 05:19:55 +00:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "เกียร์ <ของ N>",
|
||
id: "Klink <N>"
|
||
},
|
||
|
||
illustrator: "Saboteri",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
th: "ร่างทั้งสองมีความคล้ายคลึงกันมากกว่าฝาแฝด หากอยู่กับร่างตัวอื่น จะเข้าขากันได้ไม่ค่อยดีนัก",
|
||
id: "Kedua tubuh Pokémon ini lebih dekat daripada saudara kembar sekalipun. Roda gigi dari tubuh Klink lain tidak bisa masuk dengan pas."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ดับเบิลสปิน",
|
||
id: "Double Spin"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10",
|
||
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan."
|
||
},
|
||
|
||
damage: "10×",
|
||
cost: ["Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |