1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

65
data-asia/SV/SV3/062.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ルガルガン",
'zh-tw': "鬃岩狼人",
th: "ลูกาลูกัน"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
dexId: [745],
hp: 130,
types: ["Fighting"],
description: {
ja: "岩の たてがみで 近づくものを 切りつける。 トレーナーの 指示も 気に入らなければ 従わない。",
'zh-tw': "會用岩石鬃毛斬斷接近者。只要不合自己的意,即使是訓練家下的指示也不會順從。",
th: "ฟันสิ่งที่เข้ามาใกล้ด้วยแผงคอที่เป็นหิน หากไม่พอใจคำสั่งของเทรนเนอร์ก็จะไม่ปฏิบัติตาม"
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
ja: "とどめのキバ",
'zh-tw': "致命之牙",
th: "เขี้ยวปลิดชีพ"
},
damage: 90,
effect: {
ja: "相手のバトルポケモンにダメカンがのっていないなら、このワザは失敗。",
'zh-tw': "若對手的戰鬥寶可夢身上沒有放置傷害指示物,則這個招式失敗。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามไม่มีตัวนับแดเมจวางอยู่ ท่าต่อสู้นี้จะล้มเหลว"
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "スラッシュクロー",
'zh-tw': "利爪揮砍",
th: "สแลชคลอว์"
},
damage: 100
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card