mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-10 23:29:54 +00:00
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ซึรุซึคิน <ของแมรี>",
|
||
id: "Scrafty <Marnie>"
|
||
},
|
||
|
||
illustrator: "Kazumasa Yasukuni",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Darkness"],
|
||
|
||
description: {
|
||
th: "รวมกลุ่มกันจัดการใครก็ตามที่เข้ามาในอาณาเขตของมันให้น่วม พ่น ของเหลวกรดในร่างกายออกมาจากปากได้",
|
||
id: "Pokémon ini secara berkelompok memukul habis lawan yang memasuki wilayah teritorialnya. Ia menembakkan cairan tubuh yang asam dari mulutnya."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "เตะกลับหลัง",
|
||
id: "Tendangan Belakang"
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Darkness"]
|
||
}, {
|
||
name: {
|
||
th: "ไวลด์แท็กเกิล",
|
||
id: "Wild Tackle"
|
||
},
|
||
|
||
effect: {
|
||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
|
||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Darkness", "Darkness", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |