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

56
data-asia/SV/SV4K/080.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アマージョex",
th: "อมาโจex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 310,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Grass"],
name: {
ja: "アイシクルソール",
th: "ฝ่าเท้าแท่งน้ำแข็ง"
},
effect: {
ja: "相手のポケモン1匹に、そのポケモンの残りHPが「30」になるように、ダメカンをのせる。",
th: "วางตัวนับแดเมจ บนโปเกมอนฝ่ายตรงข้าม 1 ตัว ให้ HP ของโปเกมอนนั้นเหลือเท่ากับ [30]"
}
}, {
cost: ["Grass", "Grass"],
name: {
ja: "トロピカルキック",
th: "ทรอปิคัลคิก"
},
damage: 180,
effect: {
ja: "このポケモンのHPを「30」回復し、特殊状態もすべて回復する。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [30] รักษาสภาวะผิดปกติทั้งหมดด้วย"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card