1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

61 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SVDs"
const card: Card = {
set: Set,
name: {
th: "แอร์มุโด",
id: "Skarmory"
},
illustrator: "Takeshi Nakamura",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
th: "เพราะมีการนำขนที่ร่วงออกมาทำเป็นดาบ จึงได้รับความนิยมสูงในการนำมาทำเป็นแบบของตราประจำตระกูล",
id: "Bulu rontok Skarmory dapat dibuat menjadi pedang, sehingga Pokémon ini populer sebagai desain lambang kebesaran."
},
stage: "Basic",
attacks: [{
name: {
th: "จิก",
id: "Mematuk"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
th: "สตีลสแลช",
id: "Steel Slash"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ [สตีลสแลช] ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan Steel Slash."
},
damage: 120,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card