1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

62
data-asia/SV/SVAM/010.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SVAM"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁",
th: "อิชิเฮนจิน",
id: "Stonjourner"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "在距離牠棲息地很遠的地方,有岩盤和牠 身體的岩石成分一致。",
th: "ส่วนประกอบของหินในร่างกายนั้นตรงกับพื้นหินของแผ่นดินที่อยู่ห่างไกลจากถิ่นที่อยู่",
id: "Komponen batu dari tubuh Stonjourner cocok dengan batuan dasar yang berada di daerah jauh dari habitatnya."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "堅硬身軀",
th: "ร่างแข็งแกร่ง",
id: "Tubuh Keras"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-20」點。",
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-20]",
id: "Kerusakan akibat serangan yang diterima Pokémon ini berkurang sejumlah 20."
}
}],
attacks: [{
name: {
'zh-tw': "百萬噸重踢",
th: "เมกะตันคิก",
id: "Tendangan Megaton"
},
damage: 100,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card