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

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

48
data-asia/SV/SV10/002.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "蘑蘑菇",
'zh-cn': "蘑蘑菇",
ja: "キノココ"
},
illustrator: "IKEDA Saki",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "喜歡潮濕的地方,白天會 動也不動地待在森林的樹蔭下。 會從頭上放出毒粉。",
'zh-cn': "喜歡潮濕的地方,白天會 動也不動地待在森林的樹蔭下。 會從頭上放出毒粉。",
ja: "湿った 場所を 好み 昼間は 森の 木陰で じっと している。 頭から 毒の 粉を 出す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "滾動衝撞",
'zh-cn': "滾動衝撞",
ja: "ころがりタックル"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [285]
}
export default card