1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SVD/013.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "煤炭龜"
},
illustrator: "Kurata So",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
'zh-tw': "會在甲殼的內側燃燒煤炭。遭受到敵人攻擊時, 會噴灑黑煙然後逃走。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踩"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "集中砲火"
},
effect: {
'zh-tw': "擲與這隻寶可夢身上附加的【火】能量的數量相同次數的硬幣造成正面出現的次數×80點傷害。"
},
damage: "80×",
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card