1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

70 lines
2.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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