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

76
data-asia/SV/SV4M/042.ts Normal file
View File

@ -0,0 +1,76 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "アイアント",
'zh-tw': "鐵蟻",
th: "ไอแอนท์"
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
dexId: [632],
hp: 70,
types: ["Metal"],
description: {
ja: "大きな顎は 岩石をも かみ砕く。 サダイジャから タマゴを 守るため 群れで 戦う。",
'zh-tw': "巨大的顎部能咬碎岩石。為了不讓沙螺蟒把蛋搶走,會和其他同類一起並肩戰鬥。",
th: "กรามใหญ่นี้แม้จะเป็นหินก็กัดบดจนแหลกได้ ต่อสู้กันเป็นฝูงเพื่อปกป้องไข่จากซาไดจา"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "むらがるいかり",
'zh-tw': "憤怒堆積",
th: "กรูกันพิโรธ"
},
damage: "20×",
effect: {
ja: "自分の場の「アイアント」全員にのっているダメカンの数×20ダメージ。",
'zh-tw': "造成自己的場上的所有「鐵蟻」身上放置的傷害指示物數量×20點傷害。",
th: "แดเมจจะเท่ากับจำนวนตัวนับแดเมจที่วางอยู่บน [ไอแอนท์] บนกระดานฝ่ายเราทุกตัว x20"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ハードシザー",
'zh-tw': "堅硬之剪",
th: "ฮาร์ดซิสเซอร์"
},
damage: 80,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-20」される。",
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-20」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-20]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card