1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

56
data-asia/S/SC2b/091.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "騎士蝸牛"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "搶走小嘴蝸的殼,將自己全副武裝。在伽勒爾地區,騎士蝸牛非常受到人們喜愛。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "連斬"
},
effect: {
'zh-tw': "擲3次硬幣。若出現1次正面則增加20點傷害。若出現2次正面則增加70點傷害。若全部為正面則增加140點傷害。"
},
damage: "10+",
cost: ["Metal"]
}, {
name: {
'zh-tw': "硬殼攻擊"
},
damage: 60,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card