Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:CharacterInfobox: Difference between revisions

Template page
Created page with "<includeonly> {| class="infobox" style="width: 250px; font-size: 90%; border: 1px solid #aaa; background-color: #f9f9f9;" |- ! colspan="2" style="text-align:center; background-color:#ccc;" | {{{name|<i>İsimsiz</i>}}} |- | colspan="2" style="text-align:center;" | [[File:{{{image|Placeholder.png}}}|200px]] |- ! Gerçek Adı: | {{{realname|Bilinmiyor}}} |- ! Cinsiyet: | {{{gender|Bilinmiyor}}} |- ! Tür: | {{{species|Bilinmiyor}}} |- ! Rol: | {{{role|Bilinmiyor}}} |- ! İl..."
 
No edit summary
 
Line 1: Line 1:
<includeonly>
<table class="tg-infobox">
{| class="infobox" style="width: 250px; font-size: 90%; border: 1px solid #aaa; background-color: #f9f9f9;"
  <tr>
|-
    <td colspan="2" class="tg-infobox-title">{{{name}}}</td>
! colspan="2" style="text-align:center; background-color:#ccc;" | {{{name|<i>İsimsiz</i>}}}
  </tr>
|-
  {{#if:{{{image|}}}|
| colspan="2" style="text-align:center;" | [[File:{{{image|Placeholder.png}}}|200px]]
    {{Infobox image row |image={{{image}}} |caption={{{caption|}}} |imageWidth=300 }}
|-
  }}
! Gerçek Adı:
  {{#if:{{{age|}}}|{{Infobox row |label=Yaş |data={{{age}}}}}}}
| {{{realname|Bilinmiyor}}}
  {{#if:{{{role|}}}|{{Infobox row |label=Rol |data={{{role}}}}}}}
|-
  {{#if:{{{abilities|}}}|{{Infobox row |label=Yetenekler |data={{{abilities}}}}}}}
! Cinsiyet:
  {{#if:{{{affiliation|}}}|{{Infobox row |label=Bağlı Grup |data={{{affiliation}}}}}}}
| {{{gender|Bilinmiyor}}}
</table>
|-
! Tür:
| {{{species|Bilinmiyor}}}
|-
! Rol:
| {{{role|Bilinmiyor}}}
|-
! İlk Görünüm:
| {{{firstappearance|Bilinmiyor}}}
|-
! Seslendiren:
| {{{voicedby|Bilinmiyor}}}
|}
</includeonly>
<noinclude>
Bu şablon, karakter sayfaları için bilgi kutusudur. Kullanım:


```wikitext
<templatedata>
{{CharacterInfobox
{
| name = Karakter Adı
  "description": "Karakter bilgi kutusu. Resim, yaş, yetenek, rol ve bağlı grup gibi temel bilgileri gösterir.",
| image = karakter.jpg
  "params": {
| realname = Gerçek Adı
    "name": {
| gender = Kadın
      "label": "İsim",
| species = İnsan
      "description": "Karakterin adı",
| role = Ana Karakter
      "type": "string",
| firstappearance = Oyun 1
      "required": true
| voicedby = Seslendirmen
    },
}}
    "image": {
      "label": "Resim",
      "description": "Karakterin görsel dosyası (sadece dosya adı, örnek: karakter.png)",
      "type": "string"
    },
    "caption": {
      "label": "Resim altyazısı",
      "description": "Görselin altında yazacak açıklama",
      "type": "string"
    },
    "age": {
      "label": "Yaş",
      "type": "string"
    },
    "role": {
      "label": "Rolü",
      "type": "string"
    },
    "abilities": {
      "label": "Yetenekler",
      "type": "string"
    },
    "affiliation": {
      "label": "Bağlı grup",
      "type": "string"
    }
  }
}
</templatedata>

Latest revision as of 21:11, 12 June 2025

{{{name}}}

<templatedata> {

 "description": "Karakter bilgi kutusu. Resim, yaş, yetenek, rol ve bağlı grup gibi temel bilgileri gösterir.",
 "params": {
   "name": {
     "label": "İsim",
     "description": "Karakterin adı",
     "type": "string",
     "required": true
   },
   "image": {
     "label": "Resim",
     "description": "Karakterin görsel dosyası (sadece dosya adı, örnek: karakter.png)",
     "type": "string"
   },
   "caption": {
     "label": "Resim altyazısı",
     "description": "Görselin altında yazacak açıklama",
     "type": "string"
   },
   "age": {
     "label": "Yaş",
     "type": "string"
   },
   "role": {
     "label": "Rolü",
     "type": "string"
   },
   "abilities": {
     "label": "Yetenekler",
     "type": "string"
   },
   "affiliation": {
     "label": "Bağlı grup",
     "type": "string"
   }
 }

} </templatedata>