1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 08:21:59 +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

59
data-asia/SV/SV3/033.ts Normal file
View File

@@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "シビシラス",
'zh-tw': "麻麻小魚",
th: "ชิบิชิราซึ"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
dexId: [602],
hp: 40,
types: ["Lightning"],
description: {
ja: "1匹の 電力は 小さいが たくさんの シビシラスが つながると 雷と 同じ 威力になる。",
'zh-tw': "1隻的電力雖小,但只要多隻麻麻小魚聚集在一起,威力便可媲美雷電。",
th: "พลังไฟฟ้าต่อ 1 ตัวมีไม่มากนัก แต่ถ้าชิบิชิราซึหลาย ๆ ตัวรวมพลังกัน พลังไฟฟ้าจะรุนแรงเทียบเท่าฟ้าผ่าเลย"
},
stage: "Basic",
attacks: [{
cost: ["Lightning"],
name: {
ja: "バチバチ",
'zh-tw': "劈哩啪啦",
th: "ประกายไฟ"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "プチボルト",
'zh-tw': "小伏特",
th: "โวลต์ต่ำ"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card