1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

69
data-asia/SV/SV9/005.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "パラセクト",
'zh-tw': "派拉斯特",
'zh-cn': "派拉斯特"
},
illustrator: "Tetsu Kayama",
rarity: "Common",
category: "Pokemon",
dexId: [47],
hp: 120,
types: ["Grass"],
description: {
ja: "背中の キノコが 育つほど ばらまかれる キノコの 胞子の 効果は 強力になる。",
'zh-tw': "背上的蘑菇長得越大, 散播出來的蘑菇孢子 效果就越強。",
'zh-cn': "背上的蘑菇長得越大, 散播出來的蘑菇孢子 效果就越強。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "キノコのほうし",
'zh-tw': "蘑菇孢子",
'zh-cn': "蘑菇孢子"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
'zh-cn': "將對手的戰鬥寶可夢【睡眠】。"
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "シザースイング",
'zh-tw': "橫掃剪",
'zh-cn': "橫掃剪"
},
damage: "60+",
effect: {
ja: "コインを2回投げ、オモテの数×30ダメージ追加。",
'zh-tw': "擲2次硬幣增加正面出現的次數×30點傷害。",
'zh-cn': "擲2次硬幣增加正面出現的次數×30點傷害。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card