1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 02:59:18 +00:00

feat: Add SV9a (#672)

This commit is contained in:
2025-05-24 20:35:21 +02:00
committed by GitHub
parent 90d12fc9b6
commit db5863caee
93 changed files with 5333 additions and 0 deletions

55
data-asia/SV/SV9a/010.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "カミッチュ",
'zh-tw': "裹蜜蟲",
'zh-cn': "裹蜜蟲"
},
illustrator: "Shigenori Negishi",
rarity: "Common",
category: "Pokemon",
dexId: [1011],
hp: 90,
types: ["Grass"],
description: {
ja: "ある 地域だけで 栽培される 特別な りんごで 進化した。 2匹で 1匹の ポケモンなのだ。",
'zh-tw': "用只會在某個地區栽培的 特別的蘋果進化而來。 是2隻等於1隻的寶可夢。",
'zh-cn': "用只會在某個地區栽培的 特別的蘋果進化而來。 是2隻等於1隻的寶可夢。"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "エネループ",
'zh-tw': "能量閉環",
'zh-cn': "能量閉環"
},
damage: 50,
effect: {
ja: "このポケモンについているエネルギーを1個選び、手札にもどす。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量放回手牌。",
'zh-cn': "選擇1個這隻寶可夢身上附加的能量放回手牌。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card