1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

54
data-asia/SV/SV7a/013.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "潤水鴨",
'zh-cn': "潤水鴨",
ja: "クワッス"
},
illustrator: "Saboteri",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "擁有在水流湍急的河川 也能自在游動的腳力。 愛乾淨,個性不知變通。",
'zh-cn': "擁有在水流湍急的河川 也能自在游動的腳力。 愛乾淨,個性不知變通。",
ja: "流れが 急な 川も 自由に 泳ぎまわる 脚力を 持つ。 きれい好きで 思い込みが 強い。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "燕返",
'zh-cn': "燕返",
ja: "つばめがえし"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。",
'zh-cn': "擲1次硬幣若為正面則增加20點傷害。",
ja: "コインを1回投げオモテなら、20ダメージ追加。"
},
damage: "10",
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [912]
}
export default card