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

71
data-asia/SV/SV3/008.ts Normal file
View File

@ -0,0 +1,71 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "オーロット",
'zh-tw': "朽木妖",
th: "โอร็อต"
},
illustrator: "Anesaki Dynamic",
rarity: "Uncommon",
category: "Pokemon",
dexId: [709],
hp: 140,
types: ["Grass"],
description: {
ja: "足の 先から 細い 根っこを 伸ばして 森の 木々と 結びつき 自在に 操る 力を もつ。",
'zh-tw': "腳尖伸出來的根鬚能連結森林中的樹木,並且自由自在地加以操縱。",
th: "ยืดรากผอมเรียวออกจากปลายเท้าและผูกติดกับต้นไม้หลาย ๆ ต้นในป่า มีพลังควบคุมได้ตามใจชอบ"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "もりのしょうき",
'zh-tw': "森林瘴氣",
th: "ไอพิษในป่า"
},
effect: {
ja: "このポケモンがバトル場にいるかぎり、ポケモンチェックのたび、相手のバトルポケモンにダメカンを1個のせる。",
'zh-tw': "只要這隻寶可夢在戰鬥場上每次寶可夢檢查時在對手的戰鬥寶可夢身上放置1個傷害指示物。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ ทุกครั้งที่ตรวจสอบโปเกมอน ให้วางตัวนับแดเมจ 1 ตัวบนโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม"
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "とじこめる",
'zh-tw': "禁錮",
th: "ขังไว้"
},
damage: 100,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card