1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 00:11:58 +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

50
data-asia/S/S7R/051.ts Normal file
View File

@@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "豐蜜龍"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 90,
types: ["Dragon"],
description: {
'zh-tw': "身體被甜甜的蜜汁包裹,背部的皮尤其甘甜,過去曾經是小孩的零食。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "緊貼黏液"
},
effect: {
'zh-tw': "造成對手的場上寶可夢身上附加的特殊能量卡的張數×70點傷害。"
},
damage: "70×",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "鬥志衝撞"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢為「寶可夢【V】」則增加80點傷害。"
},
damage: "80+",
cost: ["Grass", "Fire"]
}],
retreat: 3,
regulationMark: "E"
}
export default card