1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add SV9s (#746)

This commit is contained in:
2025-05-24 20:57:29 +02:00
committed by GitHub
parent db5863caee
commit 651313ce70
186 changed files with 9356 additions and 0 deletions

43
data-asia/SV/SV9s/110.ts Normal file
View File

@ -0,0 +1,43 @@
import { Card } from "../../../interfaces"
import Set from "../SV9s"
const card: Card = {
set: Set,
name: {
th: "โอทาจิ",
id: "Sentret"
},
illustrator: "Taiga Kayama",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
th: "โปเกมอนที่มีความระแวดระวังสูง หางที่เคลื่อนไหวอย่างอ่อนช้อยนั้น เต็มไปด้วยกล้ามเนื้อ เมื่อสัมผัสจะรู้สึกแข็ง",
id: "Pokémon yang memiliki kewaspadaan tinggi. Ekornya yang bergerak luwes itu berotot dan keras jika disentuh."
},
stage: "Basic",
attacks: [{
name: {
th: "ฝ่ามือตบ",
id: "Tampar"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card