1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

54
data-asia/S/S10b/022.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴鯉龍"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 170,
types: ["Water"],
description: {
'zh-tw': "性情非常凶暴。從嘴裡發出的破壞光線能夠將一切燃燒殆盡。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "亂暴"
},
effect: {
'zh-tw': "擲硬幣直到出現反面將對手的牌庫上方與正面出現的次數×2張相同數量的卡丟棄。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "瘋狂飛濺"
},
effect: {
'zh-tw': "將自己的牌庫上方5張卡丟棄。"
},
damage: 230,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card