1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

52
data-asia/SV/SV1S/046.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "スナヘビ",
'zh-tw': "沙包蛇",
th: "ซึนะเฮบิ",
id: "Silicobra"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [843],
hp: 80,
types: ["Fighting"],
description: {
ja: "風船のように 伸び縮む 首の 袋は 脱皮を 重ねるたびに 伸縮性が 増していく。",
'zh-tw': "頸部的囊袋就像氣球一樣能伸縮自如,而隨著不斷 蛻皮,伸縮性會隨之增加。",
th: "ถุงที่คอยืดหดได้เหมือนลูกโป่ง ยิ่งลอกคราบมากเท่าไหร่ ถุงที่คอก็จะยืดหยุ่นมากขึ้นเท่านั้น",
id: "Kantong di leher Silicobra yang dapat memanjang dan memendek seperti balon akan menjadi makin elastis setiap kali ia berganti kulit."
},
stage: "Basic",
attacks: [{
cost: ["Fighting", "Colorless"],
name: {
ja: "どろかけ",
'zh-tw': "擲泥",
th: "สาดโคลน",
id: "Semprotan Lumpur"
},
damage: 30
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card