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

57
data-asia/SV/SV10/013.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "卡蒂狗",
'zh-cn': "卡蒂狗",
ja: "ガーディ"
},
illustrator: "ryoma uratsuka",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "能毫不畏懼地去對抗 比自己更強更大的對手。 性格非常勇敢可靠。",
'zh-cn': "能毫不畏懼地去對抗 比自己更強更大的對手。 性格非常勇敢可靠。",
ja: "自分より 強くて 大きな 相手にも 恐れずに 立ち向かう 勇敢で 頼もしい 性格。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "火種",
'zh-cn': "火種",
ja: "ひだね"
},
damage: 10,
cost: ["Fire"]
}, {
name: {
'zh-tw': "豎爪",
'zh-cn': "豎爪",
ja: "ツメをたてる"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
rarity: "Common",
dexId: [58]
}
export default card