1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

59
data-asia/SV/SV9/015.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "Nのダルマッカ",
'zh-tw': "N的火紅不倒翁",
'zh-cn': "N的火紅不倒翁"
},
illustrator: "Gemi",
rarity: "Common",
category: "Pokemon",
dexId: [554],
hp: 80,
types: ["Fire"],
description: {
ja: "寝ているときは 押しても 引いても けっして 倒れない。 縁起ものの モチーフとして 人気が 高い。",
'zh-tw': "在牠睡覺的時候, 無論是推是拉,牠都不會倒下。 因為象徵著吉利而大受歡迎。",
'zh-cn': "在牠睡覺的時候, 無論是推是拉,牠都不會倒下。 因為象徵著吉利而大受歡迎。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ころがりタックル",
'zh-tw': "滾動衝撞",
'zh-cn': "滾動衝撞"
},
damage: 20
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "ほのお",
'zh-tw': "火焰",
'zh-cn': "火焰"
},
damage: 50
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card