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

44
data-asia/SV/SVP1/001.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SVP1"
const card: Card = {
set: Set,
name: {
'zh-tw': "原野水母"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "看起來像瑪瑙水母,其實是 截然不同的種類。雖然腳很細, 但跑起來能達到時速50公里。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "亂踢"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。"
},
damage: "10×",
cost: ["Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card