1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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/SV4K/020.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アマージョex",
'zh-tw': "甜冷美后ex",
th: "อมาโจex"
},
illustrator: "5ban Graphics",
rarity: "Double rare",
category: "Pokemon",
hp: 310,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Grass"],
name: {
ja: "アイシクルソール",
'zh-tw': "冰柱之踢",
th: "ฝ่าเท้าแท่งน้ำแข็ง"
},
effect: {
ja: "相手のポケモン1匹に、そのポケモンの残りHPが「30」になるように、ダメカンをのせる。",
'zh-tw': "在對手的1隻寶可夢身上放置傷害指示物直到那隻寶可夢的剩餘HP變為「30」為止。",
th: "วางตัวนับแดเมจ บนโปเกมอนฝ่ายตรงข้าม 1 ตัว ให้ HP ของโปเกมอนนั้นเหลือเท่ากับ [30]"
}
}, {
cost: ["Grass", "Grass"],
name: {
ja: "トロピカルキック",
'zh-tw': "熱帶踢",
th: "ทรอปิคัลคิก"
},
damage: 180,
effect: {
ja: "このポケモンのHPを「30」回復し、特殊状態もすべて回復する。",
'zh-tw': "將這隻寶可夢恢復「30」HP特殊狀態也全部恢復。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30] รักษาสภาวะผิดปกติทั้งหมดด้วย"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card