1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/SC1D/094.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙螺蟒"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "蜷縮身體後從鼻孔裡噴射出100公斤的沙子。沒有了沙子就會變得很懦弱。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "砂囊"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "力量壓制"
},
effect: {
'zh-tw': "若身上附有的【鬥】能量比使用這個招式所需的能量多1個則增加70點傷害。"
},
damage: "60+",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card