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

70
data-asia/SV/SV1S/001.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "サボネア",
'zh-tw': "刺球仙人掌",
th: "ซาโบเนีย",
id: "Cacnea"
},
illustrator: "Tika Matsuno",
rarity: "Common",
category: "Pokemon",
dexId: [331],
hp: 60,
types: ["Grass"],
description: {
ja: "砂漠などの 過酷な 環境を 好む。 体内に 蓄えた 水で 30日間 生きられる。",
'zh-tw': "喜歡沙漠等嚴酷環境。能靠體內儲存的水分 存活30天。",
th: "ชอบอยู่ในสภาพแวดล้อมที่โหดร้าย เช่น ทะเลทราย น้ำที่สะสมในร่างกายสามารถหล่อเลี้ยงชีวิตให้อยู่ได้ 30 วัน",
id: "Cacnea menyukai lingkungan yang keras seperti padang pasir dan lainnya. Pokémon ini dapat hidup selama 30 hari hanya dengan air yang ditampung di dalam tubuhnya."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "はんげきばり",
'zh-tw': "反擊針",
th: "หนามโต้กลับ",
id: "Jarum Serangan Balasan"
},
effect: {
ja: "このポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを3個のせる。",
'zh-tw': "這隻寶可夢在戰鬥場受到對手的寶可夢招式的傷害時在使用招式的寶可夢身上放置3個傷害指示物。",
th: "เมื่อโปเกมอนนี้ อยู่บนตำแหน่งต่อสู้และได้รับแดเมจของท่าต่อสู้จากโปเกมอนฝ่ายตรงข้าม วางตัวนับแดเมจ 3 ตัวบนโปเกมอนที่ใช้ท่าต่อสู้",
id: "Saat Pokémon ini ada di Arena Bertarung dan menerima kerusakan akibat serangan dari Pokémon lawan, letakkan 3 Token Kerusakan pada Pokémon yang telah menggunakan serangan."
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "なぐる",
'zh-tw': "打擊",
th: "ทุบตี",
id: "Memukul"
},
damage: 30
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card