1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

56
data-asia/SV/SV5M/060.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "老翁龍",
th: "จิจีลอน"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "住在海拔超過3000公尺的山上。偶爾也會來到城鎮, 與住在那裡的孩子們一起玩耍。",
th: "อาศัยอยู่บนเขาที่มีความสูงเกิน 3000 เมตร นาน ๆ ทีจะเข้ามาในเมืองและเล่นกับเด็ก ๆ"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "重摑",
th: "ตบแรง"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "盛怒炮",
th: "ปืนใหญ่เดือดจัด"
},
effect: {
'zh-tw': "若自己的所有備戰寶可夢身上都放置有傷害指示物則增加120點傷害。",
th: "ถ้าโปเกมอนบนเบนช์ฝ่ายเราทุกตัวมีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
},
damage: "100+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card