mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "โซโด",
|
||
id: "Cufant"
|
||
},
|
||
|
||
illustrator: "Shinya Mizuno",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
th: "สามารถยกของที่หนัก 5 ตันได้ ในตอนเช้าจะมุ่งหน้าไปยังถ้ำเป็นฝูงเพื่อหาหินแร่ที่เป็นอาหาร",
|
||
id: "Cufant dapat mengangkat barang seberat 5 ton. Saat pagi tiba, Pokémon ini pergi ke gua bersama sesamanya untuk mencari bijih makanannya."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "พุ่งเข้าชน",
|
||
id: "Serudukan"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Metal", "Colorless"]
|
||
}, {
|
||
name: {
|
||
th: "ตั้งใจสู้",
|
||
id: "Menentang"
|
||
},
|
||
|
||
damage: 70,
|
||
cost: ["Metal", "Metal", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |